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",