From 9b4d2acc5d395c79268f4b3bab15f0c23633dae4 Mon Sep 17 00:00:00 2001 From: TheFlow Date: Fri, 24 Oct 2025 12:25:40 +1300 Subject: [PATCH] fix(cache): increment service worker version to force mobile cache refresh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated service worker cache version from 0.1.1 to 0.1.2 to force mobile browsers to invalidate old cached assets. This ensures users see the latest calendar.js with enhanced error handling. Also updated version.json to match with relevant changelog entries for mobile calendar fixes and DeepL integration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- public/service-worker.js | 2 +- public/version.json | 18 +++++++----------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/public/service-worker.js b/public/service-worker.js index 5d2f2390..36b97481 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 diff --git a/public/version.json b/public/version.json index c003fff3..bad75138 100644 --- a/public/version.json +++ b/public/version.json @@ -1,16 +1,12 @@ { - "version": "0.1.1", - "buildDate": "2025-10-23T23:17:36.828Z", + "version": "0.1.2", + "buildDate": "2025-10-24T00:00:00.000Z", "changelog": [ - "Blog Validation: ✨ ENHANCED! World-class submission modal with tabbed interface", - "Blog Validation: Overview tab with article preview and progress tracking", - "Blog Validation: Documents tab with live word counts and auto-save", - "Blog Validation: Validation tab with publication-specific rules and export", - "Blog Validation: CSP-compliant architecture with event delegation", - "API: New endpoints - by-blog-post lookup, update submission, export package", - "Backend: Multilingual document versioning support", - "Cache: Service worker v1.8.5 - FORCE REFRESH for new modal" + "Mobile: Fixed calendar page loading issues with enhanced error handling", + "Cache: Service worker v0.1.2 - FORCE REFRESH for mobile cache fix", + "Admin: Improved API error reporting for calendar stats and tasks", + "Backend: DeepL translation API integrated for multilingual submissions" ], "forceUpdate": true, - "minVersion": "1.8.0" + "minVersion": "0.1.2" }