From f5a631ca0d570ab4c38bb69ba9f4bd5eff3e6f87 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Tue, 19 Jul 2011 18:25:50 -0700 Subject: [PATCH] Version bump and update 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 846786fdc..c857b8a27 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.8.0.3" + android:versionCode="189"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 362cede15..3005203fc 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -36,6 +36,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V3_8_0_3 = 189; public static final int V3_8_0_2 = 188; public static final int V3_8_0 = 186; public static final int V3_7_7 = 184; @@ -145,6 +146,14 @@ public final class UpgradeService { }); } else { // current message + if(from >= V3_8_0 && from < V3_8_0_3) { + newVersionString(changeLog, "3.8.0.3 (7/19/11)", new String[] { + "Improved Google Tasks Sync migration process", + "Handle service errors in Google Tasks sync gracefully", + "Fixed Astrid.com sync would sometimes send unchanged tasks", + "Fix for crashes. Keep on reporting them!", + }); + } if(from >= V3_8_0 && from < V3_8_0_2) { newVersionString(changeLog, "3.8.0.2 (7/16/11)", new String[] { "Fix for due time lost during Astrid.com sync",