diff --git a/backend/main.py b/backend/main.py index f673f25..8378aee 100644 --- a/backend/main.py +++ b/backend/main.py @@ -410,7 +410,7 @@ async def serve_media(path: str, request: _Request): raise _HE(404, "Nicht gefunden.") return _media_response(filepath) -APP_VER = "1089" # muss mit APP_VER in app.js übereinstimmen +APP_VER = "1090" # muss mit APP_VER in app.js übereinstimmen @app.get("/.well-known/assetlinks.json") async def assetlinks(): diff --git a/backend/static/css/components.css b/backend/static/css/components.css index 45c313a..4ec2cef 100644 --- a/backend/static/css/components.css +++ b/backend/static/css/components.css @@ -8876,7 +8876,7 @@ svg.empty-state-icon { transition: stroke 0.4s ease; } #worlds-fab .offline-paw .paw-elem.filled { - color: #16a34a; /* nur Linie grün, kein Ausfüllen */ + color: #5C3517; /* dunkles Ban Yaro Braun — klar auf orangem FAB */ } .offline-status-row { diff --git a/backend/static/index.html b/backend/static/index.html index d3fad77..37c7fee 100644 --- a/backend/static/index.html +++ b/backend/static/index.html @@ -101,9 +101,9 @@ - - - + + +
@@ -625,11 +625,11 @@ - - - - - + + + + + diff --git a/backend/static/js/app.js b/backend/static/js/app.js index d52f442..16cdbbe 100644 --- a/backend/static/js/app.js +++ b/backend/static/js/app.js @@ -3,7 +3,7 @@ Router, State-Management, Navigation, Initialisierung. ============================================================ */ -const APP_VER = '1089'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '1090'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt window.APP_VER = APP_VER; // global verfügbar für andere Module (z.B. offline-indicator) window.APP_VERSION = APP_VERSION; diff --git a/backend/static/sw.js b/backend/static/sw.js index d651ae7..6fce525 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -4,7 +4,7 @@ ============================================================ */ // ← EINZIGE Stelle für die Version — STATIC_ASSETS und CACHE_VERSION leiten sich ab -const VER = '1089'; +const VER = '1090'; const CACHE_VERSION = `by-v${VER}`; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten