-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added and modified tons of things for the beta release.
- Loading branch information
1 parent
be51ac2
commit 04342b9
Showing
60 changed files
with
1,056 additions
and
273 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
var electronInstaller = require('electron-winstaller'); | ||
|
||
// In this case, we can use relative paths | ||
var settings = { | ||
// Specify the folder where the built app is located | ||
appDirectory: './release-builds/VITask-win32-ia32', | ||
// Specify the existing folder where | ||
outputDirectory: './installer', | ||
// The name of the Author of the app (the name of your company) | ||
authors: 'VITask', | ||
// The name of the executable of your built | ||
exe: './VITask.exe' | ||
}; | ||
|
||
resultPromise = electronInstaller.createWindowsInstaller(settings); | ||
|
||
resultPromise.then(() => { | ||
console.log("The installers of your application were succesfully created !"); | ||
}, (e) => { | ||
console.log(`Well, sometimes you are not so lucky: ${e.message}`) | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.