Skip to content

Commit

Permalink
Update version to v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed Sep 4, 2024
1 parent f3793f2 commit 86fbce4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src="preview_assets//inkscape_icon.svg" height=120 style="border-radius: 20px;">

# Kanji Dojo
![Version Badge](https://img.shields.io/badge/version-v2.1.0-blue?style=for-the-badge&labelColor=ffffff&color=ff5555)
![Version Badge](https://img.shields.io/badge/version-v2.1.1-blue?style=for-the-badge&labelColor=ffffff&color=ff5555)

</div>

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/AppVersion.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
object AppVersion {

const val versionCode = 2100
const val versionCode = 2110

const val versionName = "2.1.0"
const val versionName = "2.1.1"

// Requires 3 numbers
const val desktopAppVersion = versionName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ fun VersionChangeDialog(
LazyColumn(
modifier = Modifier.weight(1f).fillMaxWidth()
) {
version("2.1.1", LocalDate(2024, 9, 5)) {
append(
"""
- Added daily streak section to home screen
- Added fancy kana voice button to letter practice
- Upgraded FSRS algorithm to version 5
- Fixed issue with FSRS intervals not decreasing when using Again and Hard buttons
- Fixed issue with redundant filtering of some letters in search
""".trimIndent()
)
}
version("2.1.0", LocalDate(2024, 8, 30)) {
append(
"""
Expand Down
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelog/2110.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Added daily streak section to home screen
- Added fancy kana voice button to letter practice
- Upgraded FSRS algorithm to version 5
- Fixed issue with FSRS intervals not decreasing when using Again and Hard buttons
- Fixed issue with redundant filtering of some letters in search

0 comments on commit 86fbce4

Please sign in to comment.