Skip to content

Commit

Permalink
Create gh-pages branch via GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
dmythro committed Apr 18, 2016
1 parent 4d80236 commit ccb84ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Packdir by annexare</title>
<title>Pack Directory by annexare</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
Expand All @@ -11,8 +11,8 @@
</head>
<body>
<section class="page-header">
<h1 class="project-name">Packdir</h1>
<h2 class="project-tagline">Pack specified directory with native OS command line tools.</h2>
<h1 class="project-name">Pack Directory</h1>
<h2 class="project-tagline">Pack specified directory with native OS command line tools (DMG, ZIP with 7z fallback).</h2>
<a href="https://github.com/annexare/PackDir" class="btn">View on GitHub</a>
<a href="https://github.com/annexare/PackDir/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/annexare/PackDir/tarball/master" class="btn">Download .tar.gz</a>
Expand Down Expand Up @@ -74,7 +74,7 @@ <h2>
All license files are included with it, with respect to the author (Igor Pavlov).</p>

<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/annexare/PackDir">Packdir</a> is maintained by <a href="https://github.com/annexare">annexare</a>.</span>
<span class="site-footer-owner"><a href="https://github.com/annexare/PackDir">Pack Directory</a> is maintained by <a href="https://github.com/annexare">annexare</a>.</span>

<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
Expand Down
4 changes: 2 additions & 2 deletions params.json
@@ -1,6 +1,6 @@
{
"name": "Packdir",
"tagline": "Pack specified directory with native OS command line tools.",
"name": "Pack Directory",
"tagline": "Pack specified directory with native OS command line tools (DMG, ZIP with 7z fallback).",
"body": "# PackDir\r\n\r\nPack specified directory with native current OS command line tools.\r\n\r\nMain purpose was to pack the OS X/Windows Electron app,\r\nso Linux was not tested yet.\r\n<br>\r\nBy default, if specified `path` has a `darwin` in it's name,\r\nthe directory will be packed as DMG under OS X.\r\n\r\n## Usage\r\n\r\nGet the package via NPM: `npm install pack-dir`.\r\n\r\n```js\r\nconst Pack = require('pack-dir');\r\n\r\nlet dir = 'some/test/dir';\r\n\r\n// Set custom DMG RegEx, default is `/darwin/`.\r\nPack.param('dmg', /osx/);\r\n\r\n// Pack the directory\r\nPack.path(dir);\r\n```\r\n\r\n### Parameters\r\n\r\n* `dmg` `boolean|RegEx`, check to pack into DMG instead of ZIP.\r\n* `dmgFormat` `string`, the `hdiutil -format` parameter value ([docs](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/hdiutil.1.html)).\r\n* `isSilent` `boolean`, `false`, will write only Errors to console.\r\n* `isSync` `boolean`, `true`, synchronous packaging.\r\n\r\n## Credits\r\n\r\nCreated by [Annexare Studio](https://annexare.com/).\r\nFeel free to use it as you need in your apps or send updates into [this](https://github.com/annexare/PackDir) public repository.\r\nAll code is under MIT license.\r\n\r\n## 7-Zip\r\n\r\nFor Windows host [7-Zip](http://www.7-zip.org/) standalone console app is used\r\n(~1MB, doesn't require installation).\r\nAll license files are included with it, with respect to the author (Igor Pavlov).\r\n",
"note": "Don't delete this file! It's used internally to help with page regeneration."
}

0 comments on commit ccb84ff

Please sign in to comment.