From 1215c3d5c542816d74e9a69589e9c77625f20288 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 18 May 2012 12:55:51 -0700 Subject: [PATCH] Version bump and upgrade message --- astrid/AndroidManifest.xml | 4 ++-- astrid/src/com/todoroo/astrid/service/UpgradeService.java | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index b2bad7a81..f727e0a4f 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="4.1.3.1" + android:versionCode="269"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 1912d5800..45bc9240d 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -41,6 +41,7 @@ import com.todoroo.astrid.utility.AstridPreferences; public final class UpgradeService { + public static final int V4_1_3_1 = 269; public static final int V4_1_3 = 268; public static final int V4_1_2 = 267; public static final int V4_1_1 = 266; @@ -202,6 +203,12 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); + if (from >= V4_1_3 && from < V4_1_3_1) { + newVersionString(changeLog, "4.1.3.1 (5/18/12)", new String[] { + "Fixed reminders for ICS" + }); + } + if (from >= V4_1_2 && from < V4_1_3) { newVersionString(changeLog, "4.1.3 (5/17/12)", new String[] { "Added ability to see shared tasks sorted by friend! Enable or disable " +