From c96bbac226bfdece5f4bf6651196e264839e23b0 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Thu, 22 Dec 2011 23:43:03 -0800 Subject: [PATCH] Version bump now 3.9.1 --- astrid/AndroidManifest.xml | 2 +- astrid/src/com/todoroo/astrid/service/UpgradeService.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index a7763aff0..0972d38ed 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,7 +1,7 @@ diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 60da8a536..edaa8c973 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -39,7 +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_1 = 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; @@ -161,12 +161,12 @@ 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[] { + if (from >= V3_9 && from < V3_9_1) { + newVersionString(changeLog, "3.9.1 (12/23/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" + "Minor UI improvements and bug fixes" }); }