Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cullub committed Jan 15, 2021
1 parent c857355 commit 1ac7b60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ android {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionCode 2003
versionName "2.0.1"
versionCode 2010
versionName "2.1.0"
vectorDrawables.useSupportLibrary true
}
buildTypes {
Expand Down
12 changes: 0 additions & 12 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,6 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.VIEW" />-->

<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- <category android:name="android.intent.category.BROWSABLE" />-->

<!-- <data android:host="*.tabslite.com" />-->
<!-- <data android:pathPrefix="/tab/" />-->
<!-- <data android:scheme="http" />-->
<!-- <data android:scheme="https" />-->
<!-- </intent-filter>-->

</activity>
</application>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/gbros/tabslite/data/AppDatabase.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ abstract class AppDatabase : RoomDatabase() {
private val MIGRATION_6_7 = object : Migration(6, 7) {
// add the playlist functionality / data
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL("CREATE TABLE IF NOT EXISTS playlist (id INTEGER NOT NULL, user_created INTEGER NOT NULL, title TEXT NOT NULL, date_created LONG NOT NULL, date_modified LONG NOT NULL, description TEXT NOT NULL, PRIMARY KEY(id))")
database.execSQL("CREATE TABLE IF NOT EXISTS playlist_entry (id INTEGER NOT NULL, playlist_id INTEGER NOT NULL, tab_id INTEGER NOT NULL, next_entry_id INTEGER, prev_entry_id INTEGER, date_added LONG NOT NULL, transpose INT NOT NULL, PRIMARY KEY(id))")
database.execSQL("CREATE TABLE IF NOT EXISTS playlist (id INTEGER NOT NULL, user_created INTEGER NOT NULL, title TEXT NOT NULL, date_created INTEGER NOT NULL, date_modified LONG NOT NULL, description TEXT NOT NULL, PRIMARY KEY(id))")
database.execSQL("CREATE TABLE IF NOT EXISTS playlist_entry (id INTEGER NOT NULL, playlist_id INTEGER NOT NULL, tab_id INTEGER NOT NULL, next_entry_id INTEGER, prev_entry_id INTEGER, date_added INTEGER NOT NULL, transpose INTEGER NOT NULL, PRIMARY KEY(id))")
}
}

Expand Down

0 comments on commit 1ac7b60

Please sign in to comment.