Evshiron Magicka
Evshiron Magicka
See [/test/nsis-gen/](https://github.com/evshiron/nwjs-builder-phoenix/blob/master/test/nsis-gen.js). You can `require('nwjs-builder-phoenix/dist/lib/nsis-gen')` and use it directly. We use one of `NsisComposer`, `Nsis7Zipper` and `NsisDiffer` to generate scripts, and call `nsisBuild` to create installers.
You should be able to use `appdmg` to generate one in your building pipeline, currently I don't have the time to integrate it and PRs are appreciated. Also, `electron-builder` has...
Will look into it.
Maybe something like this should work, just follow the structure of `Info.plist`. ```json { "build": { "mac": { "plistStrings": { "CFBundleURLTypes": [ { "CFBundleURLName": "XXX", "CFBundleURLSchemes": [ "xxx", "yyy" ]...
https://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx But I think you can do this in your app at run time, rather than `nwjs-builder-phoenix` at build time.
So that "error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory" was because I was trying to launch i386 executables on a x86_64...
Greetings. May I know which has the correct icon? * Executable File * Titlebar * Taskbar Item If the executable doesn't have a correct icon, it might be an issue...
Greetings. Downloaded binaries are stored in `~/.nwjs-download/caches/`, maybe you can provide or replace the archive of a version you want to use at that location, so that `nwjs-builder` will be...
Ouch. That should be something with the `commander` dependency, which is used to parse command line arguments in `nwjs-builder`. Thanks for the issue and I will look into it soon.
Hmm, after reading the code of `commander`, I think removing [this line](https://github.com/evshiron/nwjs-builder/blob/master/src/bin/nwb.js#L29) should do the trick.