diff --git a/public/index.html b/public/index.html
index 18ca109..3b73db7 100644
--- a/public/index.html
+++ b/public/index.html
@@ -658,7 +658,7 @@
-
Transmission RSS Manager v2.0.10
+
Transmission RSS Manager v2.0.10
© 2025 PowerData.dk - All Rights Reserved
Visit PowerData.dk
diff --git a/public/js/system-status.js b/public/js/system-status.js
index fce6125..fe93106 100644
--- a/public/js/system-status.js
+++ b/public/js/system-status.js
@@ -33,8 +33,8 @@ function initSystemStatus() {
}
// Update version in about modal too if it exists
- const aboutVersionElement = document.querySelector('.text-center.mt-4 strong');
- if (aboutVersionElement && aboutVersionElement.textContent.includes('Transmission RSS Manager v')) {
+ const aboutVersionElement = document.getElementById('about-version');
+ if (aboutVersionElement) {
aboutVersionElement.textContent = 'Transmission RSS Manager v' + data.data.version;
}
@@ -55,9 +55,23 @@ function initSystemStatus() {
}
// Track update check status
- let updateAvailable = false;
+ let updateAvailable = localStorage.getItem('updateAvailable') === 'true';
let updateCheckInProgress = false;
+ // If we have stored update info, restore it
+ if (updateAvailable) {
+ const currentVersion = localStorage.getItem('currentVersion');
+ const remoteVersion = localStorage.getItem('remoteVersion');
+
+ if (currentVersion && remoteVersion) {
+ updateStatusElement.innerHTML = '