ELECTRON-505: add dev tools administration control (#435)

* ELECTRON-505: enable / disable dev tools

implement logic to disable / enable dev tools with installer and configuration file

* ELECTRON-505: fix mac installer issues

* ELECTRON-505: add dev tools option to the windows installers

* ELECTRON-505: enable signing in the installers

* ELECTRON-505: update mac installer dev tools label text

* ELECTRON-505: remove dev tools from configuration windows
This commit is contained in:
Vishwas Shashidhar
2018-07-20 16:23:08 +05:30
committed by GitHub
parent 205c08977d
commit 1898c36508
20 changed files with 229 additions and 129 deletions

View File

@@ -26,7 +26,8 @@ let windowConfig = {
webPreferences: {
preload: path.join(__dirname, 'renderer.js'),
sandbox: true,
nodeIntegration: false
nodeIntegration: false,
devTools: false
}
};