Atlas: Deploy-Buendel vor Staustufen-Sprint

- Logistik: Musik-Player Playlist-Modus (5 Gruppen, 20 Tracks)
- Heli: End-Screen auf .ggs-endscreen, Mission-Bilder, Voice-Lines, Briefing-Audio
- Logistik: Layout-Tausch Auftraege+Fahrzeuge links, Karte rechts
- Logistik: Tier-1-Staedte ausgebaut, Auto-Timescale-Badge
- Logistik: Roadnet/Railnet Dijkstra-Routing, Balance-Updates
- Atlas: 5 Atlas-Inbox-Nachrichten (Cards-Pattern, DALL-E-Key, Musik-Playlists)
- Status-Updates Heli + Logistik

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-26 01:05:13 +02:00
parent f811437a35
commit 79ac9dad84
773 changed files with 17482 additions and 541 deletions
+8
View File
@@ -1160,6 +1160,14 @@ function showEventUI(ev) {
n.addEventListener('click', () => openInfoOverlay(infoKey));
}
vp.appendChild(n);
// Stapel-Obergrenze: maximal 6 sichtbare Toasts. Kommt ein siebter, fliegt
// der älteste sofort raus, damit die Canvas-Szene nicht zugedeckt wird.
const MAX_TOASTS = 6;
while (vp.childElementCount > MAX_TOASTS) {
const oldest = vp.firstElementChild;
if (!oldest) break;
oldest.remove();
}
setTimeout(() => n.remove(), 11400);
}