diff --git a/app/main/menus.js b/app/main/menus.js index f1006be2b..50e35f714 100644 --- a/app/main/menus.js +++ b/app/main/menus.js @@ -1,4 +1,4 @@ -import { app, shell } from 'electron'; +import { app, shell, dialog } from 'electron'; import { createNewSessionWindow } from './appium'; import { checkNewUpdates } from './auto-updater'; @@ -163,7 +163,10 @@ function otherMenuFile (mainWindow) { }, { label: '&About Appium', click () { - checkNewUpdates(true); + dialog.showMessageBox({ + title: 'Appium Desktop', + message: `Version ${app.getVersion()}`, + }); } }, { type: 'separator' diff --git a/package.json b/package.json index 6fc1dcdde..06c929f96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "appium-desktop", - "version": "1.3.10", + "version": "1.4.0", "description": "Graphical interface for the Appium server, and an app inspector", "repository": { "type": "git", @@ -75,9 +75,8 @@ "package.json" ], "win": { - "target": [ - "nsis" - ] + "target": "squirrel", + "icon": "build/icon.ico" }, "linux": { "target": [ @@ -159,6 +158,7 @@ "dir-compare": "^1.4.0", "electron": "1.7.11", "electron-builder": "^19.53.4", + "electron-builder-squirrel-windows": "^20.3.1", "electron-devtools-installer": "^2.2.3", "eslint": "3.x", "eslint-config-appium": "1.x",