Skip to content

Commit

Permalink
Update version to 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed Jul 15, 2024
1 parent d0a4a0f commit 0c13437
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 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 = 2070
const val versionCode = 2080

const val versionName = "2.0.7"
const val versionName = "2.0.8"

// Requires 3 numbers
const val desktopAppVersion = versionName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ fun VersionChangeDialog(
LazyColumn(
modifier = Modifier.weight(1f).fillMaxWidth()
) {
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
""".trimIndent()
)
}
version("2.0.7", LocalDate(2024, 6, 27)) {
append(
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fun LetterDashboardListItem(

Column(
modifier = Modifier.weight(1f)
.padding(start = 20.dp)
.padding(start = 16.dp)
.padding(vertical = 10.dp),
) {

Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelog/2080.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- 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

0 comments on commit 0c13437

Please sign in to comment.