add version number

This commit is contained in:
James B. Pollack 2016-03-11 16:26:14 -08:00
parent 973022f0e1
commit 23fd2e93b5

View file

@ -493,6 +493,10 @@ function buildMenuArray(serverState) {
label: 'Server - Stopped', label: 'Server - Stopped',
enabled: false enabled: false
}, },
{
label: 'Version - '+buildInfo.buildIdentifier,
enabled: false
},
{ {
type: 'separator' type: 'separator'
}, },
@ -536,14 +540,7 @@ function buildMenuArray(serverState) {
label: 'Quit', label: 'Quit',
accelerator: 'Command+Q', accelerator: 'Command+Q',
click: function() { shutdown(); } click: function() { shutdown(); }
}, }
{
type: 'separator'
},
{
label: 'Current Version: '+buildInfo.buildIdentifier,
enabled: false
}
]; ];
var foundStackManagerContent = isStackManagerContentPresent(); var foundStackManagerContent = isStackManagerContentPresent();