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

Fix #547 - Default to Electron 2.0.0 and review deprecations (PR #587)

This commit is contained in:
David Kramer 2018-05-01 16:29:03 -07:00 committed by Ronan Jouchet
parent ac99c6424d
commit be25eab45d
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ if (appArgs.crashReporter) {
companyName: appArgs.companyName || '', companyName: appArgs.companyName || '',
productName: appArgs.name, productName: appArgs.name,
submitURL: appArgs.crashReporter, submitURL: appArgs.crashReporter,
autoSubmit: true, uploadToServer: true,
}); });
}); });
} }

View File

@ -1,5 +1,5 @@
import path from 'path'; import path from 'path';
export const DEFAULT_APP_NAME = 'APP'; export const DEFAULT_APP_NAME = 'APP';
export const ELECTRON_VERSION = '1.8.6'; export const ELECTRON_VERSION = '2.0.0';
export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app'); export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app');