diff --git a/electron/main.js b/electron/main.js index f8fbbd7..e1b02e7 100644 --- a/electron/main.js +++ b/electron/main.js @@ -68,7 +68,7 @@ var menu = Menu.buildFromTemplate([ }, }, { - label: "Check for Updates", + label: `Check for Updates (currently ${app.getVersion()})`, click() { autoUpdater.checkForUpdatesAndNotify(); }, @@ -98,7 +98,7 @@ function createWindow() { mainWindow = new BrowserWindow({ width: 800, height: 600, - title: "ImEX RPS", + title: `ImEX RPS ${app.getVersion()}`, icon: path.join(__dirname, "../src/assets/logo192.png"), webPreferences: { nodeIntegration: false,