dist files for v1.4.5 built
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
## v1.4.5 (2026-02-24)
|
||||||
|
- **Fix**: Doppelten Scrollbalken in der Versionen-Liste entfernt.
|
||||||
|
|
||||||
## v1.4.4 (2026-02-24)
|
## v1.4.4 (2026-02-24)
|
||||||
- **Feature**: Das Versionsmenü enthält nun direkte Links zu GitHub, um Fehler zu melden oder neue Features vorzuschlagen.
|
- **Feature**: Das Versionsmenü enthält nun direkte Links zu GitHub, um Fehler zu melden oder neue Features vorzuschlagen.
|
||||||
|
|
||||||
|
|||||||
4
dist/bookmarklet-payload.js
vendored
4
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
14
dist/install.html
vendored
14
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
@@ -203,6 +203,7 @@ body {
|
|||||||
border-color: #f59e0b;
|
border-color: #f59e0b;
|
||||||
color: var(--accent-color);
|
color: var(--accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-btn.new-week-available.active {
|
.nav-btn.new-week-available.active {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
@@ -211,9 +212,11 @@ body {
|
|||||||
0% {
|
0% {
|
||||||
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
|
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
70% {
|
70% {
|
||||||
box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
|
box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
|
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
|
||||||
}
|
}
|
||||||
@@ -1629,8 +1632,6 @@ body {
|
|||||||
.version-list {
|
.version-list {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-height: 350px;
|
|
||||||
overflow-y: auto;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2020,7 +2021,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 class="version-tag" style="font-size: 0.6em; opacity: 0.7; font-weight: 400; cursor: pointer;" title="Klick für Versionsmenü">v1.4.4</small></h1>
|
<h1>Kantinen Übersicht <small class="version-tag" style="font-size: 0.6em; opacity: 0.7; font-weight: 400; cursor: pointer;" title="Klick für Versionsmenü">v1.4.5</small></h1>
|
||||||
<div id="last-updated-subtitle" class="subtitle"></div>
|
<div id="last-updated-subtitle" class="subtitle"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="nav-group" style="margin-left: 1rem;">
|
<div class="nav-group" style="margin-left: 1rem;">
|
||||||
@@ -2162,7 +2163,7 @@ body {
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div style="margin-bottom: 1rem;">
|
<div style="margin-bottom: 1rem;">
|
||||||
<strong>Aktuell:</strong> <span id="version-current">v1.4.4</span>
|
<strong>Aktuell:</strong> <span id="version-current">v1.4.5</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="dev-toggle">
|
<div class="dev-toggle">
|
||||||
<label style="display:flex;align-items:center;gap:8px;cursor:pointer;">
|
<label style="display:flex;align-items:center;gap:8px;cursor:pointer;">
|
||||||
@@ -3833,7 +3834,7 @@ body {
|
|||||||
|
|
||||||
// Periodic update check (runs on init + every hour)
|
// Periodic update check (runs on init + every hour)
|
||||||
async function checkForUpdates() {
|
async function checkForUpdates() {
|
||||||
const currentVersion = 'v1.4.4';
|
const currentVersion = 'v1.4.5';
|
||||||
const devMode = localStorage.getItem('kantine_dev_mode') === 'true';
|
const devMode = localStorage.getItem('kantine_dev_mode') === 'true';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -3874,7 +3875,7 @@ body {
|
|||||||
const modal = document.getElementById('version-modal');
|
const modal = document.getElementById('version-modal');
|
||||||
const container = document.getElementById('version-list-container');
|
const container = document.getElementById('version-list-container');
|
||||||
const devToggle = document.getElementById('dev-mode-toggle');
|
const devToggle = document.getElementById('dev-mode-toggle');
|
||||||
const currentVersion = 'v1.4.4';
|
const currentVersion = 'v1.4.5';
|
||||||
|
|
||||||
if (!modal) return;
|
if (!modal) return;
|
||||||
modal.classList.remove('hidden');
|
modal.classList.remove('hidden');
|
||||||
|
|||||||
@@ -192,6 +192,7 @@ body {
|
|||||||
border-color: #f59e0b;
|
border-color: #f59e0b;
|
||||||
color: var(--accent-color);
|
color: var(--accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-btn.new-week-available.active {
|
.nav-btn.new-week-available.active {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
@@ -200,9 +201,11 @@ body {
|
|||||||
0% {
|
0% {
|
||||||
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
|
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
70% {
|
70% {
|
||||||
box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
|
box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
|
box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
|
||||||
}
|
}
|
||||||
@@ -1618,8 +1621,6 @@ body {
|
|||||||
.version-list {
|
.version-list {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-height: 350px;
|
|
||||||
overflow-y: auto;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
v1.4.4
|
v1.4.5
|
||||||
|
|||||||
Reference in New Issue
Block a user