Version bump and upgrade message

pull/14/head 4.5.3
Sam Bosley 12 years ago
parent a191063395
commit d488f11e7d

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

@ -50,6 +50,7 @@ import com.todoroo.astrid.utility.Constants;
public final class UpgradeService {
public static final int V4_5_3 = 294;
public static final int V4_5_2 = 293;
public static final int V4_5_1 = 292;
public static final int V4_5_0 = 291;
@ -284,6 +285,13 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V4_5_0 && from < V4_5_3) {
newVersionString(changeLog, "4.5.3 (2/04/13)", new String[] {
"Performance improvements when scrolling in lists",
"Some crash fixes"
});
}
if (from >= V4_5_0 && from < V4_5_2) {
newVersionString(changeLog, "4.5.2 (1/17/13)", new String[] {
"Fixed a crash that could affect some Google Tasks users",

Loading…
Cancel
Save