Skip to content

Commit

Permalink
Tag release v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeso committed Mar 24, 2024
1 parent 9e3c4d8 commit fa52adf
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<a href="https://f-droid.org/packages/net.leodesouza.blitz/">
<img src="https://img.shields.io/f-droid/v/net.leodesouza.blitz?logo=F-Droid&label=F-Droid" alt="F-Droid" /></a>
<a href="https://play.google.com/store/apps/details?id=net.leodesouza.blitz">
<img src="https://img.shields.io/badge/Play%20Store-v1.6.0-blue?logo=Google-Play" alt="Play Store" /></a>
<img src="https://img.shields.io/badge/Play%20Store-v1.6.1-blue?logo=Google-Play" alt="Play Store" /></a>
</p>

A minimalist [Fischer chess clock](https://en.wikipedia.org/wiki/Fischer_clock) for Android.
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/161.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit fa52adf

Please sign in to comment.