Skip to content

Commit

Permalink
Bump to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bingzheung committed Aug 28, 2024
1 parent 50b51aa commit 7e91488
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "org.jyutping.jyutping"
minSdk = 29
targetSdk = 34
versionCode = 14
versionName = "0.14.0"
versionCode = 15
versionName = "0.15.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ import java.io.OutputStream
object DatabasePreparer {
private const val SOURCE_DATABASE_NAME = "appdb.sqlite3"
private val oldDatabaseNames: List<String> = listOf(
"tmpdb.sqlite3",
"tmpdb.sqlite3-journal",
"appdb-v0.2.0-tmp.sqlite3",
"appdb-v0.2.0-tmp.sqlite3-journal",
"appdb-v0.3.0-tmp.sqlite3",
"appdb-v0.3.0-tmp.sqlite3-journal",
"appdb-v0.4.0-tmp.sqlite3",
"appdb-v0.4.0-tmp.sqlite3-journal",
"appdb-v0.5.0-tmp.sqlite3",
"appdb-v0.5.0-tmp.sqlite3-journal",
"appdb-v0.6.0-tmp.sqlite3",
Expand All @@ -37,6 +29,8 @@ object DatabasePreparer {
"appdb-v0.12.0-tmp.sqlite3-journal",
"appdb-v0.13.0-tmp.sqlite3",
"appdb-v0.13.0-tmp.sqlite3-journal",
"appdb-v0.14.0-tmp.sqlite3",
"appdb-v0.14.0-tmp.sqlite3-journal",
)
val databaseName: String = run {
val version = BuildConfig.VERSION_NAME
Expand Down

0 comments on commit 7e91488

Please sign in to comment.