mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 02:10:32 -06:00
bump up version number and update electron dependency
This commit is contained in:
parent
f2251ffd1a
commit
93036ba086
@ -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 () {
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user