From 5ad69c6ff25a8365c00a737cb4fe2c0976423ef2 Mon Sep 17 00:00:00 2001 From: Hans de Zwart Date: Sun, 16 Aug 2026 11:55:33 +0200 Subject: [PATCH] Release 1.6 versionCode 7. public_html/ changed, so the service worker cache goes to bgclock-v22. Confirmed on device, from a debug APK over the top of 1.5: the settings kept from 1.5 came back on the You row with the switch off; the gear stayed reachable with the two bases set apart, which is the failure that would have had no way out; each side ran on its own delay, including a player set to zero starting on their reserve immediately; and a turn left running well past the delay, force-quit and reopened, came back paused with the split still in force. Co-Authored-By: Claude Opus 5 --- android/app/build.gradle.kts | 4 ++-- fastlane/metadata/android/en-US/changelogs/7.txt | 1 + public_html/sw.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/7.txt diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index c266fc0..9b6f683 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 = 6 - versionName = "1.5" + versionCode = 7 + versionName = "1.6" } compileOptions { diff --git a/fastlane/metadata/android/en-US/changelogs/7.txt b/fastlane/metadata/android/en-US/changelogs/7.txt new file mode 100644 index 0000000..2e88826 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/7.txt @@ -0,0 +1 @@ +Rationalised the settings page and added the option to set a different time and delay per player. diff --git a/public_html/sw.js b/public_html/sw.js index 858d7fe..80f507a 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-v21"; +const CACHE = "bgclock-v22"; const FILES = [ "./", "./index.html",