diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index b4b1d272d..830d9b8c4 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="4.2.2" + android:versionCode="272"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index dd53fd628..868feb770 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -41,6 +41,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V4_2_2 = 272; public static final int V4_2_1 = 271; public static final int V4_2_0 = 270; public static final int V4_1_3_1 = 269; @@ -205,6 +206,14 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V4_2_0 && from < V4_2_2) { + newVersionString(changeLog, "4.2.2 (6/12/12)", new String[] { + "Fix for people views displaying the wrong list of tasks", + "Fixed a bug with Astrid Smart Sort", + "Fixed a bug when adding photo comments" + }); + } + if (from >= V4_2_0 && from < V4_2_1) { newVersionString(changeLog, "4.2.1 (6/08/12)", new String[] { "Fix for MyTouch 4G Lists",