2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-22 09:39:02 +00:00

Update readme and usage.txt with command-line version-string examples

Resolves #89; further documents #63.
This commit is contained in:
rameshv 2015-07-01 20:52:43 -04:00 committed by Kenneth G. Franqueiro
parent dcf1da5d1a
commit 189fd022d7
2 changed files with 17 additions and 2 deletions

View File

@ -44,7 +44,10 @@ prune runs `npm prune --production` on the app
overwrite if output directory for a platform already exists, replaces it rather than skipping it overwrite if output directory for a platform already exists, replaces it rather than skipping it
asar packages the source code within your app into an archive asar packages the source code within your app into an archive
sign should contain the identity to be used when running `codesign` (OS X only) sign should contain the identity to be used when running `codesign` (OS X only)
version-string should contain a hash of the application metadata to be embedded into the executable (Windows only). Keys supported version-string should contain a hash of the application metadata to be embedded into the executable (Windows only).
These can be specified on the command line via dot notation,
e.g. --version-string.CompanyName="Company Inc." --version-string.ProductName="Product"
Keys supported:
- CompanyName - CompanyName
- LegalCopyright - LegalCopyright
- FileDescription - FileDescription

View File

@ -20,4 +20,16 @@ ignore do not copy files into App whose filenames regex .match this
prune runs `npm prune --production` on the app prune runs `npm prune --production` on the app
overwrite if output directory for a platform already exists, replaces it rather than skipping it overwrite if output directory for a platform already exists, replaces it rather than skipping it
asar packages the source code within your app into an archive asar packages the source code within your app into an archive
sign should contain the identity to be used when running `codesign` (OS X only) sign should contain the identity to be used when running `codesign` (OS X only)
version-string should contain a hash of the application metadata to be embedded into the executable (Windows only).
These can be specified on the command line via dot notation,
e.g. --version-string.CompanyName="Company Inc." --version-string.ProductName="Product"
Keys supported:
- CompanyName
- LegalCopyright
- FileDescription
- OriginalFilename
- FileVersion
- ProductVersion
- ProductName
- InternalName