From ca2b378f884785f0660cc2f5211a9d6e31c69f0a Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Mon, 19 Nov 2012 12:08:02 -0800 Subject: [PATCH] Version name and upgrade message --- astrid/AndroidManifest.xml | 2 +- .../src/com/todoroo/astrid/service/UpgradeService.java | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 7d540f6b7..279dc54c9 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -6,7 +6,7 @@ --> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 0787ce85e..d35c8cdd6 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -254,6 +254,15 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from < V4_4_2) { + newVersionString(changeLog, "4.4.2 (11/19/12)", new String[] { + "Manual order and subtasks for lists now sync with your Astrid.com account!", + "Significant performance improvements to manual ordering and subtasks", + "Show assigned user images in the premium widgets", + "Minor bug and crash fixes" + }); + } + if (from >= V4_4 && from < V4_4_1) { newVersionString(changeLog, "4.4.1 (10/30/12)", new String[] { "Fixed an issue where the calendar assistant could remind you about the wrong events",