diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 8b9314b85..8ec065159 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -6,8 +6,8 @@ --> + android:versionName="4.6.1" + android:versionCode="302"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 039edf467..081996de8 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -44,6 +44,7 @@ import com.todoroo.astrid.utility.Constants; public final class UpgradeService { + public static final int V4_6_1 = 302; public static final int V4_6_0 = 301; public static final int V4_6_0_BETA = 300; public static final int V4_5_3 = 294; @@ -295,6 +296,14 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V4_6_0 && from < V4_6_1) { + newVersionString(changeLog, "4.6.1 (4/04/13)", new String[] { + "Improved design for the task edit page", + "Fixed issues with Facebook login", + "Several crash fixes" + }); + } + if (from < V4_6_0) { newVersionString(changeLog, "4.6.0 (4/02/13)", new String[] { "4.6 is a big step towards FLAWLESS sync with Astrid.com! This update also includes numerous bug fixes and UI improvements. " +