bump up version number and update electron dependency

This commit is contained in:
Vishwas Shashidhar 2018-11-13 15:31:40 +05:30
parent f2251ffd1a
commit 93036ba086
2 changed files with 7 additions and 2 deletions

View File

@ -9,6 +9,7 @@ const logLevels = require('../enums/logLevels.js');
const { version, clientVersion, buildNumber } = require('../../package.json');
const { initCrashReporterMain, initCrashReporterRenderer } = require('../crashReporter.js');
const i18n = require('../translation/i18n');
const { isMac } = require('../utils/misc');
let aboutWindow;
@ -88,6 +89,10 @@ function openAboutWindow(windowName) {
initCrashReporterMain({ process: 'about app window' });
initCrashReporterRenderer(aboutWindow, { process: 'render | about app window' });
aboutWindow.webContents.send('versionInfo', { version, clientVersion, buildNumber });
if (!isMac) {
// prevents from displaying menu items when "alt" key is pressed
aboutWindow.setMenu(null);
}
});
aboutWindow.webContents.on('crashed', function () {

View File

@ -1,7 +1,7 @@
{
"name": "Symphony",
"productName": "Symphony",
"version": "3.4.0",
"version": "3.5.0",
"clientVersion": "1.53",
"buildNumber": "0",
"description": "Symphony desktop app (Foundation ODP)",
@ -86,7 +86,7 @@
"browserify": "16.2.3",
"chromedriver": "2.42.0",
"cross-env": "5.2.0",
"electron": "3.0.5",
"electron": "3.0.9",
"electron-builder": "20.28.4",
"electron-builder-squirrel-windows": "12.3.0",
"electron-chromedriver": "3.0.0-beta.1",