diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 3fdc76eff..f2d95df3e 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.9.2.3" + android:versionCode="210"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 8f30baa9f..457c22a42 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 V3_9_2_3 = 210; public static final int V3_9_2_2 = 209; public static final int V3_9_2_1 = 208; public static final int V3_9_2 = 207; @@ -173,6 +174,14 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V3_9_2 && from < V3_9_2_3) { + newVersionString(changeLog, "3.9.2.3 (1/20/12)", new String[] { + "Fixed a bug with displaying update messages", + "Fixed an occasional crash in Gtasks Sync", + "Other minor bugfixes" + }); + } + if (from >= V3_9_2 && from < V3_9_2_2) { newVersionString(changeLog, "3.9.2.2 (1/19/12)", new String[] { "Astrid now recognizes words like 'tomorrow', 'monday', '!!!' and '2 pm' to set date and importance",