From 10f7fed2902bba92f252ca1f30fc4177ca854837 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Mon, 18 Jan 2021 09:18:43 -0500 Subject: [PATCH] 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. --- src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index bc038ff..58b1103 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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],