From ff09d491276d74a1e032217ef4a4ebcebf96f005 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 25 Mar 2026 17:35:15 -0700 Subject: [PATCH] fix: bump service worker cache version to v4 Forces all clients to invalidate cached assets and re-fetch, ensuring mobile zoom button position fix is picked up. Co-Authored-By: Claude Opus 4.6 --- website/sw.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/sw.ts b/website/sw.ts index af4375f..d8e9090 100644 --- a/website/sw.ts +++ b/website/sw.ts @@ -1,7 +1,7 @@ /// declare const self: ServiceWorkerGlobalScope; -const CACHE_VERSION = "rspace-v3"; +const CACHE_VERSION = "rspace-v4"; const STATIC_CACHE = `${CACHE_VERSION}-static`; const HTML_CACHE = `${CACHE_VERSION}-html`; const API_CACHE = `${CACHE_VERSION}-api`;