diff --git a/backend/main.py b/backend/main.py index 45826e0..cdfc0c3 100644 --- a/backend/main.py +++ b/backend/main.py @@ -406,7 +406,7 @@ async def serve_media(path: str, request: _Request): raise _HE(404, "Nicht gefunden.") return _media_response(filepath) -APP_VER = "883" # muss mit APP_VER in app.js übereinstimmen +APP_VER = "884" # 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 325fc8b..0a6c754 100644 --- a/backend/static/css/components.css +++ b/backend/static/css/components.css @@ -3563,7 +3563,7 @@ html.modal-open { padding-top: 52px; position: relative; } - /* Liste: feste Breite links, scrollbar */ + /* Liste: feste Breite links, scrollbar unsichtbar */ #walks-list-view { display: block !important; width: 380px; @@ -3571,6 +3571,10 @@ html.modal-open { flex-shrink: 0; border-right: 1px solid var(--c-border); overflow-y: auto; + scrollbar-width: none; /* Firefox */ + } + #walks-list-view::-webkit-scrollbar { + display: none; /* Chrome / Safari / macOS */ } /* Karte: Rest des Platzes, sticky */ #walks-map-view { diff --git a/backend/static/index.html b/backend/static/index.html index 6413439..4752806 100644 --- a/backend/static/index.html +++ b/backend/static/index.html @@ -101,9 +101,9 @@ - - - + + +
@@ -583,10 +583,10 @@ - - - - + + + + diff --git a/backend/static/js/app.js b/backend/static/js/app.js index 95691e8..1d1a348 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 = '883'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '884'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VERSION = '1.5.1'; // ← semantische Version, wird bei make release gesetzt const IS_STAGING = location.hostname === 'staging.banyaro.app'; // Cache-Bust-Parameter nach Update-Reload sofort entfernen diff --git a/backend/static/sw.js b/backend/static/sw.js index c6d2171..020e457 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -3,7 +3,7 @@ Offline-Cache + Push Notifications + Tile-Cache ============================================================ */ -const CACHE_VERSION = 'by-v883'; +const CACHE_VERSION = 'by-v884'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache