ELECTRON-874 Change version numbering 1.53.0-3.4.0 (0) (#523)

This commit is contained in:
Kiran Niranjan
2018-10-26 22:21:36 +05:30
committed by Vishwas Shashidhar
parent 41d0889d68
commit 4ebf9603b7
4 changed files with 10 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ const shellPath = require('shell-path');
const urlParser = require('url');
const nodePath = require('path');
const compareSemVersions = require('./utils/compareSemVersions.js');
const { version, clientVersion, buildNumber } = require('../package.json');
// Local Dependencies
const {
@@ -230,6 +231,8 @@ app.on('activate', function () {
// because electron leaves registry traces upon uninstallation
if (isMac) {
app.setAsDefaultProtocolClient('symphony');
// Sets application version info that will be displayed in about app panel
app.setAboutPanelOptions({ applicationVersion: `${clientVersion}-${version}`, version: buildNumber });
}
/**