Skip to content
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.

Commit

Permalink
appVersion: 1.5.0
Browse files Browse the repository at this point in the history
codeVersion: 71
small fixes
  • Loading branch information
markusressel committed Mar 6, 2016
1 parent 911a7ac commit 2145982
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Shared/src/main/res/values/strings_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<resources>

<string name="app_version">1.4.1</string>
<string name="app_version">1.5.0</string>

<!-- application information -->
<string name="app_description_html">
Expand Down
2 changes: 1 addition & 1 deletion Smartphone/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="eu.power_switch"
android:versionCode="70"
android:versionCode="71"
android:versionName="@string/app_version">

<!-- Smartphone ONLY Permissions -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,11 @@ public static void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
case 7:
db.execSQL("ALTER TABLE " + TABLE_NAME + " ADD COLUMN " + COLUMN_LAST_ACTIVATED_BUTTON_ID + " int;");
case 8:

// insert data from old timer_action table into ActionTable and TimerActionTable
case 9:
case 10:
case 11:
case 12:
// update receiver classpath
String[] columns = {COLUMN_ID, COLUMN_CLASSNAME, COLUMN_TYPE};
Cursor cursor = db.query(TABLE_NAME, columns,
null, null, null, null, null);
Expand Down Expand Up @@ -104,7 +107,6 @@ public static void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
}

cursor.close();
break;
}
}
}

0 comments on commit 2145982

Please sign in to comment.