From e3400622e06827329f512073180d0423b7c16f2f Mon Sep 17 00:00:00 2001 From: SYtor Date: Wed, 26 Jun 2024 17:26:43 +0300 Subject: [PATCH] Update app version to 2.0.7 --- buildSrc/src/main/kotlin/AppVersion.kt | 4 ++-- .../kanji/presentation/screen/VersionChangeDialog.kt | 10 ++++++++++ fastlane/metadata/android/en-US/changelog/2070.txt | 4 ++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelog/2070.txt diff --git a/buildSrc/src/main/kotlin/AppVersion.kt b/buildSrc/src/main/kotlin/AppVersion.kt index 55693654..cc802d81 100644 --- a/buildSrc/src/main/kotlin/AppVersion.kt +++ b/buildSrc/src/main/kotlin/AppVersion.kt @@ -1,8 +1,8 @@ object AppVersion { - const val versionCode = 2061 + const val versionCode = 2070 - const val versionName = "2.0.6" + const val versionName = "2.0.7" // 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 9f577cfd..6b0153b8 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,16 @@ fun VersionChangeDialog( LazyColumn( modifier = Modifier.weight(1f).fillMaxWidth() ) { + version("2.0.7", LocalDate(2024, 6, 27)) { + append( + """ + - Added more vocab practice modes + - Small redesigns of home screen in landscape mode and bottom sheets + - Fixed crash with multiple click on leave confirmation dialog + - Added a sponsor screen and the option to financially support the app in the Google Play version + """.trimIndent() + ) + } version("2.0.6", LocalDate(2024, 6, 14)) { append( """ diff --git a/fastlane/metadata/android/en-US/changelog/2070.txt b/fastlane/metadata/android/en-US/changelog/2070.txt new file mode 100644 index 00000000..49de92b0 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelog/2070.txt @@ -0,0 +1,4 @@ +- Added more vocab practice modes +- Small redesigns of home screen in landscape mode and bottom sheets +- Fixed crash with multiple click on leave confirmation dialog +- Added a sponsor screen and the option to financially support the app in the Google Play version \ No newline at end of file