From 3ea787ed82a2c4250f3d5012b4185a0558e33603 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 1 Mar 2026 00:52:18 +0000 Subject: [PATCH] fix: add cache-busting version params to module script tags Browsers were serving stale JS from cache. Added ?v=3 to all four updated module component scripts. Co-Authored-By: Claude Opus 4.6 --- modules/cal/mod.ts | 2 +- modules/maps/mod.ts | 4 ++-- modules/network/mod.ts | 2 +- modules/work/mod.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/cal/mod.ts b/modules/cal/mod.ts index 2980747..c974db6 100644 --- a/modules/cal/mod.ts +++ b/modules/cal/mod.ts @@ -383,7 +383,7 @@ routes.get("/", (c) => { modules: getModuleInfoList(), theme: "dark", body: ``, - scripts: ``, + scripts: ``, styles: ``, })); }); diff --git a/modules/maps/mod.ts b/modules/maps/mod.ts index 757f820..0edf89f 100644 --- a/modules/maps/mod.ts +++ b/modules/maps/mod.ts @@ -141,7 +141,7 @@ routes.get("/", (c) => { modules: getModuleInfoList(), theme: "dark", body: ``, - scripts: ``, + scripts: ``, styles: ``, })); }); @@ -158,7 +158,7 @@ routes.get("/:room", (c) => { theme: "dark", styles: ``, body: ``, - scripts: ``, + scripts: ``, })); }); diff --git a/modules/network/mod.ts b/modules/network/mod.ts index 39be73d..dfa50bf 100644 --- a/modules/network/mod.ts +++ b/modules/network/mod.ts @@ -239,7 +239,7 @@ routes.get("/", (c) => { theme: "dark", body: ` `, - scripts: ``, + scripts: ``, styles: ``, })); }); diff --git a/modules/work/mod.ts b/modules/work/mod.ts index c8ecefe..fa46f0b 100644 --- a/modules/work/mod.ts +++ b/modules/work/mod.ts @@ -225,7 +225,7 @@ routes.get("/", (c) => { modules: getModuleInfoList(), theme: "dark", body: ``, - scripts: ``, + scripts: ``, styles: ``, })); });