Skip to content

Commit e71f2c2

Browse files
committed
bump version to 2.2.5
1 parent d48067b commit e71f2c2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-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 'com.example.trigger'
77
minSdkVersion 21
88
targetSdkVersion 27
9-
versionCode 224
10-
versionName "2.2.4"
9+
versionCode 225
10+
versionName "2.2.5"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

app/src/main/java/com/example/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").contains(db_version)) {
221-
Log.i("Settings", "Update database format from " + db_version + " to 2.2.4");
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");
222222
// nothing to change
223223
setups = new ArrayList();
224-
sharedPreferences.edit().putString("db_version", "2.2.4").commit();
225-
db_version = "2.2.4";
224+
sharedPreferences.edit().putString("db_version", "2.2.5").commit();
225+
db_version = "2.2.5";
226226
}
227227
}
228228

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* add option to allow https/ssh/mqtt to be used over the Internet

0 commit comments

Comments
 (0)