From 7130a94b21faf9ebaff32eda4437d78d099f49fe Mon Sep 17 00:00:00 2001 From: Lucas Winther Date: Mon, 17 Aug 2026 18:34:34 +0200 Subject: [PATCH] fix(sw): bump the cache version for the F13 bundle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The shell is served cache-first and CACHE_VERSION had sat at v1 through four commits that changed main.js, so a returning reader kept the old bundle: none of the new UI reached them and the page looked simply unchanged. sw.js says to bump it on any shell change and I did not. Also tells the reader why the game list holds only tracked games when they have none of their own yet — the list is nine games we cover with no hint that a game of theirs has to exist before an event can be filed under it. Co-Authored-By: Claude Opus 5 (1M context) --- src/client/components/CustomForms.tsx | 10 ++++++++++ src/client/sw.js | 6 +++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/client/components/CustomForms.tsx b/src/client/components/CustomForms.tsx index c6b1700..5afc329 100644 --- a/src/client/components/CustomForms.tsx +++ b/src/client/components/CustomForms.tsx @@ -215,6 +215,16 @@ export function EventForm({ + {/* Otherwise the list is nine games we track and no sign of why none of + them is theirs — the reader who came here to add a game we don't cover + has no way of knowing they need to make it first. */} + {Object.keys(customGames).length === 0 && ( +

+ These are the games we track. To file this under a game of your own, + cancel and add the game first. +

+ )} +