Private
Public Access
1
0

Initialize Redis-backed RoomRegistry for room-to-pod assignment and add Pod-specific game.join handling logic with NATS subscriptions. Update cache-busting version for client assets.
All checks were successful
Dynamic Branch Deploy / build-and-deploy (push) Successful in 2m30s

This commit is contained in:
Sebastian Unterschütz
2026-01-04 20:38:18 +01:00
parent 1417d3ceb2
commit f121fa5ced
4 changed files with 172 additions and 6 deletions

View File

@@ -234,7 +234,7 @@ window.onWasmReady = function() {
};
// Cache Management - Version wird bei jedem Build aktualisiert
const CACHE_VERSION = 1767553871926; // Wird durch Build-Prozess ersetzt
const CACHE_VERSION = 1767555402485; // Wird durch Build-Prozess ersetzt
// Fetch mit Cache-Busting
async function fetchWithCache(url) {

View File

@@ -291,7 +291,7 @@
<!-- WASM Execution -->
<script>
// Cache-Busting für JavaScript-Dateien (wird beim Build aktualisiert)
const BUILD_VERSION = 1767553871926;
const BUILD_VERSION = 1767555402485;
document.write('<script src="wasm_exec.js?v=' + BUILD_VERSION + '"><\/script>');
document.write('<script src="game.js?v=' + BUILD_VERSION + '"><\/script>');
</script>