From 641d9a19e9eeea60a71f34964ac3e79e3506b900 Mon Sep 17 00:00:00 2001 From: Jeffrey Johnson Date: Sat, 6 Jun 2026 18:56:52 -0700 Subject: [PATCH] fix: declare live_data:true so platform default cache doesn't freeze the clock FiestaBoard is changing PluginBase.get_data() to default to a 300s cache when manifest declares no refresh_seconds. Visual-clock needs fresh datetime.now() on every poll, so explicitly opt out via the new live_data:true manifest flag. Co-Authored-By: Claude Opus 4.7 (1M context) --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 9d7b0f1..a66777f 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,9 @@ { "id": "visual_clock", "name": "Visual Clock", - "version": "1.1.0", + "version": "1.1.1", "description": "Displays a full-screen clock with large pixel-art style digits.", + "live_data": true, "author": "FiestaBoard", "icon": "clock", "category": "art",