From fa52adf9431424b3ca51bb5bcfdabc2c4543c0a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20de=20Souza?= Date: Sun, 24 Mar 2024 08:28:53 +0100 Subject: [PATCH] Tag release v1.6.1 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- app/build.gradle.kts | 4 ++-- metadata/en-US/changelogs/161.txt | 2 ++ 4 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 metadata/en-US/changelogs/161.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 6670733..d37bdc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Changelog +### [1.6.1] - 2024-03-11 + +This release fixes two bugs introduced in version [1.6.0] that were triggered by predictive back gestures and the clock reaching zero. + +#### Bug Fixes + +- Fix bug where wrong animation was shown if time ended during back gesture +- Fix bug where time would not change color when reaching zero + ### [1.6.0] - 2024-03-24 This release introduces predictive back gestures within the app and drastically reduces the number of recompositions by hoisting state the closest to where it is consumed. @@ -453,6 +462,7 @@ This release fixes a bug where the time could still be incremented after reachin Initial release. +[1.6.1]: https://github.com/ldeso/blitz/releases/tag/v1.6.1 [1.6.0]: https://github.com/ldeso/blitz/releases/tag/v1.6.0 [1.5.8]: https://github.com/ldeso/blitz/releases/tag/v1.5.8 [1.5.7]: https://github.com/ldeso/blitz/releases/tag/v1.5.7 diff --git a/README.md b/README.md index 07a3e8e..6169e46 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ F-Droid - Play Store + Play Store

A minimalist [Fischer chess clock](https://en.wikipedia.org/wiki/Fischer_clock) for Android. diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 8b027b4..7d686b2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,8 +11,8 @@ android { applicationId = "net.leodesouza.blitz" minSdk = 21 targetSdk = 34 - versionCode = 160 - versionName = "1.6.0" + versionCode = 161 + versionName = "1.6.1" base.archivesName = "${applicationId}_$versionCode" } diff --git a/metadata/en-US/changelogs/161.txt b/metadata/en-US/changelogs/161.txt new file mode 100644 index 0000000..866187f --- /dev/null +++ b/metadata/en-US/changelogs/161.txt @@ -0,0 +1,2 @@ +• Fix bug where wrong animation was shown if time ended during back gesture +• Fix bug where time would not change color when reaching zero