chore(debug): release v1.2.8 with start/status logs
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
## v1.2.8 (2026-02-16)
|
||||||
|
- **Debug**: Weiteres Logging (Fetch-Status, Start-Log) zur Fehlersuche. 🔎
|
||||||
|
|
||||||
## v1.2.7 (2026-02-16)
|
## v1.2.7 (2026-02-16)
|
||||||
- **Debug**: Verbose Logging für Update-Check eingebaut. 🐞
|
- **Debug**: Verbose Logging für Update-Check eingebaut. 🐞
|
||||||
|
|
||||||
|
|||||||
2
dist/bookmarklet-payload.js
vendored
2
dist/bookmarklet-payload.js
vendored
File diff suppressed because one or more lines are too long
2
dist/bookmarklet.txt
vendored
2
dist/bookmarklet.txt
vendored
File diff suppressed because one or more lines are too long
20
dist/install.html
vendored
20
dist/install.html
vendored
File diff suppressed because one or more lines are too long
13
dist/kantine-standalone.html
vendored
13
dist/kantine-standalone.html
vendored
@@ -1680,7 +1680,7 @@ body {
|
|||||||
<div class="brand">
|
<div class="brand">
|
||||||
<span class="material-icons-round logo-icon">restaurant_menu</span>
|
<span class="material-icons-round logo-icon">restaurant_menu</span>
|
||||||
<div class="header-left">
|
<div class="header-left">
|
||||||
<h1>Kantinen Übersicht <small style="font-size: 0.6em; opacity: 0.7; font-weight: 400;">v1.2.7</small></h1>
|
<h1>Kantinen Übersicht <small style="font-size: 0.6em; opacity: 0.7; font-weight: 400;">v1.2.8</small></h1>
|
||||||
<div id="last-updated-subtitle" class="subtitle"></div>
|
<div id="last-updated-subtitle" class="subtitle"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -3027,13 +3027,20 @@ body {
|
|||||||
|
|
||||||
// === Version Check (periodic, every hour) ===
|
// === Version Check (periodic, every hour) ===
|
||||||
async function checkForUpdates() {
|
async function checkForUpdates() {
|
||||||
const currentVersion = 'v1.2.7';
|
console.log('[Kantine] Starting update check...');
|
||||||
|
const currentVersion = 'v1.2.8';
|
||||||
const versionUrl = 'https://raw.githubusercontent.com/TauNeutrino/kantine-overview/main/version.txt';
|
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';
|
const installerUrl = 'https://htmlpreview.github.io/?https://github.com/TauNeutrino/kantine-overview/blob/main/dist/install.html';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
console.log(`[Kantine] Fetching ${versionUrl}...`);
|
||||||
const resp = await fetch(versionUrl, { cache: 'no-cache' });
|
const resp = await fetch(versionUrl, { cache: 'no-cache' });
|
||||||
if (!resp.ok) return;
|
console.log(`[Kantine] Fetch status: ${resp.status}`);
|
||||||
|
|
||||||
|
if (!resp.ok) {
|
||||||
|
console.warn(`[Kantine] Version Check HTTP Error: ${resp.status}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
const remoteVersion = (await resp.text()).trim();
|
const remoteVersion = (await resp.text()).trim();
|
||||||
|
|
||||||
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
|
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
|
||||||
|
|||||||
@@ -1413,13 +1413,20 @@
|
|||||||
|
|
||||||
// === Version Check (periodic, every hour) ===
|
// === Version Check (periodic, every hour) ===
|
||||||
async function checkForUpdates() {
|
async function checkForUpdates() {
|
||||||
|
console.log('[Kantine] Starting update check...');
|
||||||
const currentVersion = '{{VERSION}}';
|
const currentVersion = '{{VERSION}}';
|
||||||
const versionUrl = 'https://raw.githubusercontent.com/TauNeutrino/kantine-overview/main/version.txt';
|
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';
|
const installerUrl = 'https://htmlpreview.github.io/?https://github.com/TauNeutrino/kantine-overview/blob/main/dist/install.html';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
console.log(`[Kantine] Fetching ${versionUrl}...`);
|
||||||
const resp = await fetch(versionUrl, { cache: 'no-cache' });
|
const resp = await fetch(versionUrl, { cache: 'no-cache' });
|
||||||
if (!resp.ok) return;
|
console.log(`[Kantine] Fetch status: ${resp.status}`);
|
||||||
|
|
||||||
|
if (!resp.ok) {
|
||||||
|
console.warn(`[Kantine] Version Check HTTP Error: ${resp.status}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
const remoteVersion = (await resp.text()).trim();
|
const remoteVersion = (await resp.text()).trim();
|
||||||
|
|
||||||
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
|
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Remote [${remoteVersion}]`);
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
v1.2.7
|
v1.2.8
|
||||||
|
|||||||
Reference in New Issue
Block a user