From bc81b23c8045639ed5f32fea915367432950d603 Mon Sep 17 00:00:00 2001 From: TheFlow Date: Tue, 28 Oct 2025 09:12:22 +1300 Subject: [PATCH] fix: restore cache version 0.1.2 (reverted by a209e4b) The automated cache update in a209e4b accidentally reverted service worker cache version from 0.1.2 back to 0.1.1. Restoring to 0.1.2 to ensure homepage cultural DNA updates are served to visitors. --- public/service-worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/service-worker.js b/public/service-worker.js index e0bde4d3..70943581 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -5,7 +5,7 @@ * - PWA functionality */ -const CACHE_VERSION = '0.1.1'; +const CACHE_VERSION = '0.1.2'; const CACHE_NAME = `tractatus-v${CACHE_VERSION}`; const VERSION_CHECK_INTERVAL = 3600000; // 1 hour in milliseconds