Skip to content

Commit

Permalink
Update version to 2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed Jul 25, 2024
1 parent 6c71d28 commit 8b54aa8
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
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 = 2080
const val versionCode = 2090

const val versionName = "2.0.8"
const val versionName = "2.0.9"

// Requires 3 numbers
const val desktopAppVersion = versionName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,26 @@ fun VersionChangeDialog(
LazyColumn(
modifier = Modifier.weight(1f).fillMaxWidth()
) {
version("2.0.9", LocalDate(2024, 7, 26)) {
append(
"""
- Added option to animate character strokes after character is drawn
- Added finish confirmation dialog on back click during vocab practice
- Not completed words will show up in summary when finishing vocab practice
- SRS review adjustments
- Small UI updates
- Bug fixes and improvements
""".trimIndent()
)
}
version("2.0.8", LocalDate(2024, 7, 16)) {
append(
"""
- Implemented FSRS support for vocab practice
- Added text field in addition to slider for items selection when configuring practice
- Added more info about radicals on kanji info screen
- UI updates
- Added macOs builds to Github Releases
- Added MacOS builds to Github Releases
""".trimIndent()
)
}
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/changelog/2080.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
- Added text field in addition to slider for items selection when configuring practice
- Added more info about radicals on kanji info screen
- UI updates
- Added macOs builds to Github Releases
- Added MacOS builds to Github Releases
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelog/2090.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- Added option to animate character strokes after character is drawn
- Added finish confirmation dialog on back click during vocab practice
- Not completed words will show up in summary when finishing vocab practice
- SRS review adjustments
- Small UI updates
- Bug fixes and improvements

0 comments on commit 8b54aa8

Please sign in to comment.