From e34ec96cafab7f41d65550300196f6882fa03190 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 6 Jan 2012 13:48:43 -0800 Subject: [PATCH] Upgrade message and version bump --- astrid/AndroidManifest.xml | 4 ++-- .../src/com/todoroo/astrid/service/UpgradeService.java | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index a5d17e418..53900b207 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.9.1.1" + android:versionCode="206"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index f8a4d30ae..069e6a404 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_1_1 = 206; public static final int V3_9_1 = 205; public static final int V3_9_0_2 = 204; public static final int V3_9_0_1 = 203; @@ -162,6 +163,15 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V3_9_1 && from < V3_9_1_1) { + newVersionString(changeLog, "3.9.1.1 (01/06/12)", new String[] { + "Fixed few bugs:", + " Crash when selecting certain lists", + " Some lists not displayed", + " Wrong text color when assigning tasks in Night theme" + }); + } + if (from < V3_9_1) { newVersionString(changeLog, "3.9.1 (01/04/12)", new String[] { "Improvements to new user experience",