Skip to content

Commit 5f30a80

Browse files
committed
bump version to 3.0.0
1 parent d6da67c commit 5f30a80

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId 'app.trigger'
77
minSdkVersion 21
88
targetSdkVersion 28
9-
versionCode 225
10-
versionName "2.2.5"
9+
versionCode 300
10+
versionName "3.0.0"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
resConfigs "en"
1313
}

app/src/main/java/app/trigger/Settings.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,12 @@ private static void upgradeDB() {
217217

218218
// multiple consecutive version with no database change
219219
if (Arrays.asList("1.9.2", "2.0.0", "2.0.1", "2.0.2", "2.0.3", "2.0.4", "2.0.5",
220-
"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)) {
221-
Log.i("Settings", "Update database format from " + db_version + " to 2.2.5");
220+
"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)) {
221+
Log.i("Settings", "Update database format from " + db_version + " to 3.0.0");
222222
// nothing to change
223223
setups = new ArrayList();
224-
sharedPreferences.edit().putString("db_version", "2.2.5").commit();
225-
db_version = "2.2.5";
224+
sharedPreferences.edit().putString("db_version", "3.0.0").commit();
225+
db_version = "3.0.0";
226226
}
227227
}
228228

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* add option to disable https certificate expiration
2+
* change app id to please the google play app store

0 commit comments

Comments
 (0)