From bf3f565dd06dd8f6277b2ad8c999c451d7098070 Mon Sep 17 00:00:00 2001 From: Hans de Zwart Date: Sat, 15 Aug 2026 14:51:14 +0200 Subject: [PATCH] Release 1.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit versionCode 4. public_html/ changed, so the service worker cache goes to bgclock-v19 — without it an installed web user would keep serving the old page from cache indefinitely. The five store screenshots are untouched: the ring only exists while a finger is on the button, and none of them shows that. Co-Authored-By: Claude Opus 5 --- android/app/build.gradle.kts | 4 ++-- fastlane/metadata/android/en-US/changelogs/4.txt | 4 ++++ public_html/sw.js | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/4.txt diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 7d99abe..9d63159 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 = 3 - versionName = "1.2" + versionCode = 4 + versionName = "1.3" } compileOptions { diff --git a/fastlane/metadata/android/en-US/changelogs/4.txt b/fastlane/metadata/android/en-US/changelogs/4.txt new file mode 100644 index 0000000..3dbbc25 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/4.txt @@ -0,0 +1,4 @@ +Resetting the clock is now a press and hold rather than two taps. The ring +around the button fills while you hold it, and springs back if you let go +early, so the button explains itself. A short sound confirms the reset when +sound is on. diff --git a/public_html/sw.js b/public_html/sw.js index 0a373d3..07402d6 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-v18"; +const CACHE = "bgclock-v19"; const FILES = [ "./", "./index.html",