Skip to content

Commit

Permalink
Update app version to 2.0.4 and database version to 9
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed May 3, 2024
1 parent 9231e68 commit 45a93c9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 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 = 2030
const val versionCode = 2040

const val versionName = "2.0.3"
const val versionName = "2.0.4"

// Requires 3 numbers
const val desktopAppVersion = versionName
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/PrepareKanjiDojoAssetsTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ data class KanjiDojoAssetLocation(
open class PrepareKanjiDojoAssetsTask : DefaultTask() {

companion object {
const val AppDataAssetFileName = "kanji-dojo-data-base-v8.sql"
const val AppDataDatabaseVersion = 8
const val AppDataDatabaseVersion = 9
const val AppDataAssetFileName = "kanji-dojo-data-base-v$AppDataDatabaseVersion.sql"
const val KanaVoice1AndroidFileName = "ja-JP-Neural2-B.opus"
const val KanaVoice1JvmFileName = "ja-JP-Neural2-B.wav"

Expand All @@ -26,7 +26,7 @@ open class PrepareKanjiDojoAssetsTask : DefaultTask() {
expectedAssets = listOf(
Asset(
fileName = AppDataAssetFileName,
url = "https://github.com/syt0r/Kanji-Dojo-Data/releases/download/v8.0/kanji-dojo-data-base-v8.sql"
url = "https://github.com/syt0r/Kanji-Dojo-Data/releases/download/v9.0/kanji-dojo-data-base-v9.sql"
)
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ fun VersionChangeDialog(
LazyColumn(
modifier = Modifier.weight(1f).fillMaxWidth()
) {
version("2.0.4", LocalDate(2024, 5, 3)) {
append(
"""
- Added Input Mode configuration for writing practice, allowing to write characters instead of strokes
- Removed practice type dialog on practice details screen, now it's togglable button
- Small improvements in ranking of expressions and translations
""".trimIndent()
)
}
version("2.0.3", LocalDate(2024, 3, 28)) {
append(
"""
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelog/2040.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Added Input Mode configuration for writing practice, allowing to write characters instead of strokes
- Removed practice type dialog on practice details screen, now it's togglable button
- Small improvements in ranking of expressions and translations

0 comments on commit 45a93c9

Please sign in to comment.