Revert default Electron back to 11.1.1 (Chrome 87.0.4280.88) (fix #1101)

Not doing anything more complicated (adding macOS-specific code
or adding code always passing an icon), let's instead wait for
Electron to fix the issue.
This commit is contained in:
Ronan Jouchet 2021-01-18 09:18:43 -05:00
parent f4a7266783
commit 10f7fed290
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import * as path from 'path';
export const DEFAULT_APP_NAME = 'APP';
// Update both together
export const DEFAULT_ELECTRON_VERSION = '11.2.0';
export const DEFAULT_CHROME_VERSION = '87.0.4280.141';
export const DEFAULT_ELECTRON_VERSION = '11.1.1';
export const DEFAULT_CHROME_VERSION = '87.0.4280.88';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],