pre-release & release game version [to check]

This commit is contained in:
AMIAY
2026-01-23 17:54:57 +01:00
parent 08c2218cf8
commit 3983fdb1bc
19 changed files with 888 additions and 302 deletions

View File

@@ -11,6 +11,18 @@ class UpdateManager {
}
async checkForUpdates() {
// Disabled: Using electron-updater for automatic updates instead
console.log('Update check skipped - using electron-updater');
console.log(`Current version: ${CURRENT_VERSION}`);
return {
updateAvailable: false,
currentVersion: CURRENT_VERSION,
newVersion: CURRENT_VERSION,
message: 'Using electron-updater for automatic updates'
};
/* kept for reference
try {
console.log('Checking for updates...');
console.log(`Local version: ${CURRENT_VERSION}`);
@@ -54,6 +66,7 @@ class UpdateManager {
currentVersion: CURRENT_VERSION
};
}
*/
}
getDownloadUrl() {