diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 799ff9220..a7763aff0 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.9.0.2" + android:versionCode="204"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 4f4515a09..60da8a536 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -39,6 +39,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V3_9_0_2 = 204; public static final int V3_9_0_1 = 203; public static final int V3_9 = 202; public static final int V3_8_5_1 = 201; @@ -160,6 +161,15 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V3_9 && from < V3_9_0_2) { + newVersionString(changeLog, "3.9.0.2 (12/21/11)", new String[] { + "UI enhancements, better scrolling performance, and themed task edit dialogs", + "Clickable links in task notes", + "Fixed fields that were getting hidden under the keyboard", + "Other small UI improvements and bug fixes" + }); + } + if (from >= V3_9 && from < V3_9_0_1) { newVersionString(changeLog, "3.9.0.1 (12/09/11)", new String[] { "Fix for a bug when adding premium widgets for Google Tasks lists",