diff --git a/buildSrc/src/main/kotlin/AppVersion.kt b/buildSrc/src/main/kotlin/AppVersion.kt index fb3cba8c..1e4af36e 100644 --- a/buildSrc/src/main/kotlin/AppVersion.kt +++ b/buildSrc/src/main/kotlin/AppVersion.kt @@ -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 diff --git a/core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/screen/VersionChangeDialog.kt b/core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/screen/VersionChangeDialog.kt index 7b63ccba..df5bad2f 100644 --- a/core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/screen/VersionChangeDialog.kt +++ b/core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/screen/VersionChangeDialog.kt @@ -42,6 +42,18 @@ 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( """ @@ -49,7 +61,7 @@ fun VersionChangeDialog( - 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() ) } diff --git a/fastlane/metadata/android/en-US/changelog/2080.txt b/fastlane/metadata/android/en-US/changelog/2080.txt index 57ae2fe1..ec1c25c4 100644 --- a/fastlane/metadata/android/en-US/changelog/2080.txt +++ b/fastlane/metadata/android/en-US/changelog/2080.txt @@ -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 \ No newline at end of file +- Added MacOS builds to Github Releases \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/changelog/2090.txt b/fastlane/metadata/android/en-US/changelog/2090.txt new file mode 100644 index 00000000..d6ba9d9a --- /dev/null +++ b/fastlane/metadata/android/en-US/changelog/2090.txt @@ -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 \ No newline at end of file