Fix: Nach Login ohne Hund → Onboarding mit Skip-Option statt direkt zu dog-profile (SW by-v748)
This commit is contained in:
parent
fd87c9af7b
commit
81bc0f50a0
6 changed files with 11 additions and 8 deletions
|
|
@ -578,7 +578,7 @@
|
|||
<script src="/js/api.js?v=94"></script>
|
||||
<script src="/js/ui.js?v=94"></script>
|
||||
<script src="/js/app.js?v=94"></script>
|
||||
<script src="/js/worlds.js?v=747"></script>
|
||||
<script src="/js/worlds.js?v=748"></script>
|
||||
|
||||
<!-- Feature-Seiten werden lazy geladen -->
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '747'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '748'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VERSION = '1.5.0'; // ← semantische Version, wird bei make release gesetzt
|
||||
const IS_STAGING = location.hostname === 'staging.banyaro.app';
|
||||
|
||||
|
|
|
|||
|
|
@ -440,9 +440,12 @@ window.Page_onboarding = (() => {
|
|||
function _finish() {
|
||||
localStorage.setItem('by_onboarding_done', '1');
|
||||
if (_appState.dogs.length > 0) {
|
||||
App.navigate('diary');
|
||||
if (window.Worlds) window.Worlds.init(_appState);
|
||||
else App.navigate('diary');
|
||||
} else {
|
||||
App.navigate('map');
|
||||
// Ohne Hund: Welten zeigen (HUND-Tab mit "Jetzt anlegen"-Karte)
|
||||
if (window.Worlds) window.Worlds.init(_appState);
|
||||
else App.navigate('welcome');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1689,11 +1689,11 @@ window.Page_settings = (() => {
|
|||
_offerPushNotifications();
|
||||
}
|
||||
|
||||
// Nach Login: Welten initialisieren (mit User-State) oder Profil anlegen
|
||||
// Nach Login: Welten initialisieren oder Onboarding (mit Skip-Option)
|
||||
if (_appState.activeDog) {
|
||||
window.Worlds?.init(_appState);
|
||||
} else {
|
||||
App.navigate('dog-profile');
|
||||
App.navigate('onboarding');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Offline-Cache + Push Notifications + Tile-Cache
|
||||
============================================================ */
|
||||
|
||||
const CACHE_VERSION = 'by-v747';
|
||||
const CACHE_VERSION = 'by-v748';
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue