Changed version number for the next release, updated upgrade message

pull/14/head
Sam Bosley 12 years ago
parent 851240f1db
commit 358acdb8f9

@ -6,7 +6,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionName="4.5.1.1"
android:versionName="4.5.2"
android:versionCode="293">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->

@ -50,7 +50,7 @@ import com.todoroo.astrid.utility.Constants;
public final class UpgradeService {
public static final int V4_5_1_1 = 293;
public static final int V4_5_2 = 293;
public static final int V4_5_1 = 292;
public static final int V4_5_0 = 291;
public static final int V4_4_4_1 = 290;
@ -265,7 +265,7 @@ public final class UpgradeService {
}
}
if (from < V4_5_1_1) {
if (from < V4_5_2) {
Preferences.setBoolean(R.string.p_simple_input_boxes, true);
}
}
@ -288,9 +288,10 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V4_5_1 && from < V4_5_1_1) {
if (from >= V4_5_0 && from < V4_5_2) {
newVersionString(changeLog, "4.5.1.1 (1/17/13)", new String[] {
"Fixed a crash that could affect some Google Tasks users"
"Fixed a crash that could affect some Google Tasks users",
"UI polish"
});
}

Loading…
Cancel
Save