Skip to content

Commit

Permalink
bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed May 19, 2020
1 parent d6da67c commit 5f30a80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId 'app.trigger'
minSdkVersion 21
targetSdkVersion 28
versionCode 225
versionName "2.2.5"
versionCode 300
versionName "3.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
resConfigs "en"
}
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/java/app/trigger/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ private static void upgradeDB() {

// multiple consecutive version with no database change
if (Arrays.asList("1.9.2", "2.0.0", "2.0.1", "2.0.2", "2.0.3", "2.0.4", "2.0.5",
"2.0.6", "2.1.0", "2.1.1", "2.2.0", "2.2.1", "2.2.2", "2.2.3", "2.2.4").contains(db_version)) {
Log.i("Settings", "Update database format from " + db_version + " to 2.2.5");
"2.0.6", "2.1.0", "2.1.1", "2.2.0", "2.2.1", "2.2.2", "2.2.3", "2.2.4", "2.2.5").contains(db_version)) {
Log.i("Settings", "Update database format from " + db_version + " to 3.0.0");
// nothing to change
setups = new ArrayList();
sharedPreferences.edit().putString("db_version", "2.2.5").commit();
db_version = "2.2.5";
sharedPreferences.edit().putString("db_version", "3.0.0").commit();
db_version = "3.0.0";
}
}

Expand Down
2 changes: 2 additions & 0 deletions metadata/android/en-US/changelogs/300.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* add option to disable https certificate expiration
* change app id to please the google play app store

0 comments on commit 5f30a80

Please sign in to comment.