From 6653541bb94729a0615a955f2688136ffe9def03 Mon Sep 17 00:00:00 2001 From: Hans de Zwart Date: Sun, 16 Aug 2026 12:47:49 +0200 Subject: [PATCH] Release 1.7 versionCode 8. public_html/ changed, so the service worker cache goes to bgclock-v23. Confirmed on device from a debug APK: the tally reads as a tally in the bar at arm's length, and from the far side of the board. Co-Authored-By: Claude Opus 5 --- android/app/build.gradle.kts | 4 ++-- fastlane/metadata/android/en-US/changelogs/8.txt | 1 + public_html/sw.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/8.txt diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 9b6f683..d9dcb06 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 = 7 - versionName = "1.6" + versionCode = 8 + versionName = "1.7" } compileOptions { diff --git a/fastlane/metadata/android/en-US/changelogs/8.txt b/fastlane/metadata/android/en-US/changelogs/8.txt new file mode 100644 index 0000000..84d81cb --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/8.txt @@ -0,0 +1 @@ +Change the score icon to a tally. diff --git a/public_html/sw.js b/public_html/sw.js index 80f507a..b5905bc 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-v22"; +const CACHE = "bgclock-v23"; const FILES = [ "./", "./index.html",