UX: Panorama-Hinweis bleibt 4s sichtbar (erste 2x), Text + Querformat, SW by-v1034
This commit is contained in:
parent
a65e5a2723
commit
a736d66c47
4 changed files with 18 additions and 5 deletions
|
|
@ -410,7 +410,7 @@ async def serve_media(path: str, request: _Request):
|
||||||
raise _HE(404, "Nicht gefunden.")
|
raise _HE(404, "Nicht gefunden.")
|
||||||
return _media_response(filepath)
|
return _media_response(filepath)
|
||||||
|
|
||||||
APP_VER = "1033" # muss mit APP_VER in app.js übereinstimmen
|
APP_VER = "1034" # muss mit APP_VER in app.js übereinstimmen
|
||||||
|
|
||||||
@app.get("/.well-known/assetlinks.json")
|
@app.get("/.well-known/assetlinks.json")
|
||||||
async def assetlinks():
|
async def assetlinks():
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
Router, State-Management, Navigation, Initialisierung.
|
Router, State-Management, Navigation, Initialisierung.
|
||||||
============================================================ */
|
============================================================ */
|
||||||
|
|
||||||
const APP_VER = '1033'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
const APP_VER = '1034'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||||
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
|
const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt
|
||||||
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
||||||
// Cache-Bust-Parameter nach Update-Reload sofort entfernen
|
// Cache-Bust-Parameter nach Update-Reload sofort entfernen
|
||||||
|
|
|
||||||
|
|
@ -1034,7 +1034,20 @@ window.Worlds = (() => {
|
||||||
_hasBgPhoto = true;
|
_hasBgPhoto = true;
|
||||||
_bgUrl = url;
|
_bgUrl = url;
|
||||||
_applyBgOrientation();
|
_applyBgOrientation();
|
||||||
document.getElementById('wh-photo-hint')?.remove();
|
const hint = document.getElementById('wh-photo-hint');
|
||||||
|
if (hint) {
|
||||||
|
const seen = parseInt(localStorage.getItem('banyaro_wh_hint_seen') || '0');
|
||||||
|
if (seen < 2) {
|
||||||
|
localStorage.setItem('banyaro_wh_hint_seen', String(seen + 1));
|
||||||
|
setTimeout(() => {
|
||||||
|
hint.style.transition = 'opacity 0.6s';
|
||||||
|
hint.style.opacity = '0';
|
||||||
|
setTimeout(() => hint.remove(), 650);
|
||||||
|
}, 4000);
|
||||||
|
} else {
|
||||||
|
hint.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
toLoad.onerror = () => _applyBgImage(null);
|
toLoad.onerror = () => _applyBgImage(null);
|
||||||
toLoad.src = url;
|
toLoad.src = url;
|
||||||
|
|
@ -1551,7 +1564,7 @@ window.Worlds = (() => {
|
||||||
Hintergrund-Foto hinzufügen
|
Hintergrund-Foto hinzufügen
|
||||||
</div>
|
</div>
|
||||||
<div style="font-size:10px;color:rgba(255,255,255,0.45);margin-top:1px">
|
<div style="font-size:10px;color:rgba(255,255,255,0.45);margin-top:1px">
|
||||||
Tagebuchfotos erscheinen hier als Panorama
|
Tagebuchfotos im Querformat erscheinen hier als Panorama
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
Offline-Cache + Push Notifications + Tile-Cache
|
Offline-Cache + Push Notifications + Tile-Cache
|
||||||
============================================================ */
|
============================================================ */
|
||||||
|
|
||||||
const CACHE_VERSION = 'by-v1033';
|
const CACHE_VERSION = 'by-v1034';
|
||||||
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
||||||
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
|
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
|
||||||
const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache
|
const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue