diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 9e68ae20f..9a1cca851 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -6,8 +6,8 @@ --> + android:versionName="4.2.5" + android:versionCode="276"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 85c94378d..dac2d6ac5 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -46,6 +46,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V4_2_5 = 276; public static final int V4_2_4 = 275; public static final int V4_2_3 = 274; public static final int V4_2_2_1 = 273; @@ -214,6 +215,18 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V4_2_0 && from < V4_2_5) { + newVersionString(changeLog, "4.2.5 (8/13/12)", new String[] { + "Fixed bugs with task attachment syncing for premium users", + "Minor tablet layout polish", + "Added ability to hide sections from the task edit page", + "Fixed some bugs when adding tasks to calendar", + "Calendar events now start at task due time by default", + "Updated translations for several languages", + "Other minor fixes and polish" + }); + } + if (from >= V4_2_0 && from < V4_2_4) { newVersionString(changeLog, "4.2.4 (7/11/12)", new String[] { "Ability to specify end date on repeating tasks",