mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 06:48:09 +02:00
version attempts
This commit is contained in:
parent
e82fa70bb4
commit
973022f0e1
1 changed files with 6 additions and 1 deletions
|
@ -538,7 +538,11 @@ function buildMenuArray(serverState) {
|
||||||
click: function() { shutdown(); }
|
click: function() { shutdown(); }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Current Version: '+buildInfo.buildIdentifier
|
type: 'separator'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Current Version: '+buildInfo.buildIdentifier,
|
||||||
|
enabled: false
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -776,6 +780,7 @@ app.on('ready', function() {
|
||||||
var currentVersion = null;
|
var currentVersion = null;
|
||||||
try {
|
try {
|
||||||
currentVersion = parseInt(buildInfo.buildIdentifier);
|
currentVersion = parseInt(buildInfo.buildIdentifier);
|
||||||
|
console.log('CURRENT VERSION:: ',currentVersion)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue