From f1f3a8ce24b238b285be70a92433c79cb505eba1 Mon Sep 17 00:00:00 2001 From: Anirudh Sevugan Date: Sat, 16 Aug 2025 11:36:04 -0500 Subject: [PATCH] fix bugs Fix update system bug (2.0.4.3 instead of 2.0.4.4 as internal version number) and use Electron 37.3.0 for ARM64 Linux builds as well --- simpliplay/main-es.js | 2 +- simpliplay/main.js | 2 +- simpliplay/package-arm64-linux.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/simpliplay/main-es.js b/simpliplay/main-es.js index 17941ea..09c634b 100644 --- a/simpliplay/main-es.js +++ b/simpliplay/main-es.js @@ -6,7 +6,7 @@ const { pathToFileURL } = require("url"); const { checkForUpdate } = require('./updateChecker'); let gpuAccel = ""; let didRegisterShortcuts = false; -let version = "2.0.4.3" +let version = "2.0.4.4" if (process.platform === 'darwin') { if (process.argv.includes('--use-gl')) { diff --git a/simpliplay/main.js b/simpliplay/main.js index 888b59f..27ddcdc 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.4.3" +let version = "2.0.4.4" if (process.platform === 'darwin') { if (process.argv.includes('--use-gl')) { diff --git a/simpliplay/package-arm64-linux.json b/simpliplay/package-arm64-linux.json index 912ad98..6a18b50 100644 --- a/simpliplay/package-arm64-linux.json +++ b/simpliplay/package-arm64-linux.json @@ -113,7 +113,7 @@ "allowToChangeInstallationDirectory": true }, "devDependencies": { - "electron": "^37.2.5", + "electron": "^37.3.0", "electron-builder": "^26.0.12" } }