diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 725321711..481c5ab15 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="4.0.4.1" + android:versionCode="257"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index a074ffe88..fde01e73c 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -40,6 +40,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V4_0_4_1 = 257; public static final int V4_0_4 = 256; public static final int V4_0_3 = 255; public static final int V4_0_2_1 = 254; @@ -180,6 +181,14 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V4_0_4 && from < V4_0_4_1) { + newVersionString(changeLog, "4.0.4.1 (3/15/12)", new String[] { + "Updated 2x2 widget to look better and conform to new style", + "Fixed crashes related to catching exceptions", + "Added Search to Menu and moved some items to settings" + }); + } + if (from >= V4_0_0 && from < V4_0_4) { newVersionString(changeLog, "4.0.4 (3/7/12)", new String[] { "Fixed crashes related to error reporting",