From 8ea8f03767f4b55bc4e37b6be668d64d32e8d534 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Wed, 5 Oct 2011 20:59:38 -0700 Subject: [PATCH] version bump and upgrade message --- astrid/AndroidManifest.xml | 4 ++-- .../src/com/todoroo/astrid/service/UpgradeService.java | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index fa854c919..df649b261 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.8.4.4" + android:versionCode="199"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index d872fe11b..6ab3a139e 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -40,6 +40,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V3_8_4_3 = 198; public static final int V3_8_4_2 = 197; public static final int V3_8_4_1 = 196; public static final int V3_8_4 = 195; @@ -157,6 +158,14 @@ public final class UpgradeService { StringBuilder changeLog = new StringBuilder(); // current message + if (from >= V3_8_4 && from < V3_8_4_3) { + newVersionString(changeLog, "3.8.4.3 (10/05/11)", new String[] { + "Additional fixes to Google Tasks API, and added better error messages to " + + "help troubleshoot errors some of you are having", + "Fix for Astrid not working on Android 1.6.", + "\"Ring until I dismiss\" type random reminders now ring only once and respect quiet hours", + }); + } if (from >= V3_8_4 && from < V3_8_4_2) { newVersionString(changeLog, "3.8.4.2 (10/03/11)", new String[] { "Updated Google Tasks API libraries to 1.2.2. This may fix some of your Google Task sync issues",