Skip to content

Commit e87133c

Browse files
committed
Update version to 2000
1 parent 458fe78 commit e87133c

3 files changed

Lines changed: 27 additions & 4 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
object AppVersion {
22

3-
const val versionCode = 19
3+
const val versionCode = 2000
44

5-
const val versionName = "1.9"
5+
const val versionName = "2.0.0"
66

77
// Requires 3 numbers
8-
const val desktopAppVersion = "$versionName.0"
8+
const val desktopAppVersion = versionName
99

1010
}

core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/screen/VersionChangeDialog.kt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,27 @@ fun VersionChangeDialog(
3434
verticalArrangement = Arrangement.spacedBy(8.dp)
3535
) {
3636

37-
Text(resolveString { about.versionChangesTitle }, style = MaterialTheme.typography.titleLarge)
37+
Text(
38+
resolveString { about.versionChangesTitle },
39+
style = MaterialTheme.typography.titleLarge
40+
)
3841

3942
LazyColumn(
4043
modifier = Modifier.weight(1f).fillMaxWidth()
4144
) {
45+
version("2.0.0", LocalDate(2024, 3, 3)) {
46+
append(
47+
"""
48+
- Added kana voice sounds to practice
49+
- Added option to see romaji for kana practice
50+
- Now labels next to practice progress chart are clickable, making it possible to quickly start practice from there
51+
- Added kanji variants information to writing practice
52+
- Fixed chinese character versions showing up in the labels across the app
53+
- Updated Japanese translations, thanks to AttractLight
54+
- Updated alternative stroke evaluator, thanks to sl08154711
55+
""".trimIndent()
56+
)
57+
}
4258
version("1.9", LocalDate(2024, 1, 28)) {
4359
append(
4460
"""
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- Added kana voice sounds to practice
2+
- Added option to see romaji for kana practice
3+
- Now labels next to practice progress chart are clickable, making it possible to quickly start practice from there
4+
- Added kanji variants information to writing practice
5+
- Fixed chinese character versions showing up in the labels across the app
6+
- Updated Japanese translations, thanks to AttractLight
7+
- Updated alternative stroke evaluator, thanks to sl08154711

0 commit comments

Comments
 (0)