From c745fa92e0ffd5a7ed5f9dca3957ffc8671d8076 Mon Sep 17 00:00:00 2001 From: Anirudh Sevugan Date: Sun, 6 Jul 2025 19:49:21 -0500 Subject: [PATCH] Update main.js --- simpliplay/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simpliplay/main.js b/simpliplay/main.js index 0467e8b..e949484 100644 --- a/simpliplay/main.js +++ b/simpliplay/main.js @@ -6,7 +6,7 @@ const { pathToFileURL } = require("url"); const { checkForUpdate } = require('./updateChecker'); let gpuAccel = ""; let didRegisterShortcuts = false; -let version = "2.0.0.0" +let version = "2.0.0.1" if (process.platform === 'darwin') { if (process.argv.includes('--use-gl')) { @@ -164,6 +164,7 @@ if (appMenu && !appMenu.submenu.items.some(item => item.label === 'Check for Upd const updateMenuItem = new MenuItem({ label: 'Check for Updates', + accelerator: 'CommandOrControl+Shift+U', click: () => checkForUpdate(version) });