From e207478e79e865a7bc59241a6445a745d24ee5a9 Mon Sep 17 00:00:00 2001 From: Hans de Zwart Date: Sun, 16 Aug 2026 10:42:35 +0200 Subject: [PATCH] Release 1.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit versionCode 6. public_html/ changed, so the service worker cache goes to bgclock-v21. Not confirmed on device: the force-quit-and-reopen check from RELEASING.md step 4 has not been run for this build. Nothing in it touches storage, timing or the state machine — the change is a label, an inherited colour and a lit button, all written from render() — but the check is still owed. Co-Authored-By: Claude Opus 5 --- android/app/build.gradle.kts | 4 ++-- fastlane/metadata/android/en-US/changelogs/6.txt | 1 + public_html/sw.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/6.txt diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 29ec844..c266fc0 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -12,8 +12,8 @@ android { applicationId = "nl.hansdezwart.bgclock" minSdk = 26 targetSdk = 36 - versionCode = 5 - versionName = "1.4" + versionCode = 6 + versionName = "1.5" } compileOptions { diff --git a/fastlane/metadata/android/en-US/changelogs/6.txt b/fastlane/metadata/android/en-US/changelogs/6.txt new file mode 100644 index 0000000..552a959 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/6.txt @@ -0,0 +1 @@ +Added a 'Paused' indicator when the clock is paused. diff --git a/public_html/sw.js b/public_html/sw.js index ba50aaa..858d7fe 100644 --- a/public_html/sw.js +++ b/public_html/sw.js @@ -1,5 +1,5 @@ /* Cache-first: once installed the clock never touches the network again. */ -const CACHE = "bgclock-v20"; +const CACHE = "bgclock-v21"; const FILES = [ "./", "./index.html",