Compare commits

..

1 Commits

Author SHA1 Message Date
1f8ebff9fe chore(debug): release v1.2.7 with verbose update logging 2026-02-16 23:12:18 +01:00
7 changed files with 21 additions and 12 deletions

View File

@@ -1,3 +1,6 @@
## v1.2.7 (2026-02-16)
- **Debug**: Verbose Logging für Update-Check eingebaut. 🐞
## v1.2.6 (2026-02-16)
- **Test**: Version Bump zum Testen der Live-Update-Erkennung. 🧪

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

10
dist/install.html vendored

File diff suppressed because one or more lines are too long

View File

@@ -1680,7 +1680,7 @@ body {
<div class="brand">
<span class="material-icons-round logo-icon">restaurant_menu</span>
<div class="header-left">
<h1>Kantinen Übersicht <small style="font-size: 0.6em; opacity: 0.7; font-weight: 400;">v1.2.6</small></h1>
<h1>Kantinen Übersicht <small style="font-size: 0.6em; opacity: 0.7; font-weight: 400;">v1.2.7</small></h1>
<div id="last-updated-subtitle" class="subtitle"></div>
</div>
</div>
@@ -3027,7 +3027,7 @@ body {
// === Version Check (periodic, every hour) ===
async function checkForUpdates() {
const currentVersion = 'v1.2.6';
const currentVersion = 'v1.2.7';
const versionUrl = 'https://raw.githubusercontent.com/TauNeutrino/kantine-overview/main/version.txt';
const installerUrl = 'https://htmlpreview.github.io/?https://github.com/TauNeutrino/kantine-overview/blob/main/dist/install.html';
@@ -3035,9 +3035,12 @@ body {
const resp = await fetch(versionUrl, { cache: 'no-cache' });
if (!resp.ok) return;
const remoteVersion = (await resp.text()).trim();
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
if (!remoteVersion || remoteVersion === currentVersion) return;
console.log(`[Kantine] Update verfügbar: ${remoteVersion} (aktuell: ${currentVersion})`);
console.log(`[Kantine] Update verfügbar: ${remoteVersion}`);
// Show 🆕 icon in header (only once)
const headerTitle = document.querySelector('.header-left h1');

View File

@@ -1421,9 +1421,12 @@
const resp = await fetch(versionUrl, { cache: 'no-cache' });
if (!resp.ok) return;
const remoteVersion = (await resp.text()).trim();
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
if (!remoteVersion || remoteVersion === currentVersion) return;
console.log(`[Kantine] Update verfügbar: ${remoteVersion} (aktuell: ${currentVersion})`);
console.log(`[Kantine] Update verfügbar: ${remoteVersion}`);
// Show 🆕 icon in header (only once)
const headerTitle = document.querySelector('.header-left h1');

View File

@@ -1 +1 @@
v1.2.6
v1.2.7