From ab4ffa2e5adc41a92095550f0d8aa2d0b44b0ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Bene=C5=A1?= Date: Wed, 5 Aug 2026 12:23:33 +0200 Subject: [PATCH] Bump the version, because the service worker is keyed on it The worker caches static assets stale-while-revalidate and names its cache after the version in `/sw.js?v=`, deleting every cache that is not the current one. So without a bump the first reload after a release serves the previous app.js and chat.css and only the second gets the new ones -- which for this release is a transcript that does not refresh itself and a jobs panel that still runs into its own border, i.e. exactly the symptoms it fixes, on the reload somebody makes to check. Co-Authored-By: Claude Opus 5 (1M context) --- src/lembas/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lembas/__init__.py b/src/lembas/__init__.py index 8495fa4..ab34838 100644 --- a/src/lembas/__init__.py +++ b/src/lembas/__init__.py @@ -1,3 +1,3 @@ """LLeMbas - a Middle-earth themed web UI for OpenAI-compatible LLM endpoints.""" -__version__ = "0.6.3" +__version__ = "0.6.4"