From c2619bc8e5d578db653173377bf55b68fbab0006 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 18 Apr 2013 12:01:13 -0700 Subject: [PATCH] Version bump and upgrade message --- astrid/AndroidManifest.xml | 4 ++-- .../src/com/todoroo/astrid/service/UpgradeService.java | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 56c25419a..d31015da1 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -6,8 +6,8 @@ --> + android:versionName="4.6.4" + android:versionCode="305"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index caf22357a..8fd689eef 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -49,6 +49,7 @@ import com.todoroo.astrid.utility.Constants; public final class UpgradeService { + public static final int V4_6_4 = 305; public static final int V4_6_3 = 304; public static final int V4_6_2 = 303; public static final int V4_6_1 = 302; @@ -321,7 +322,14 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); - if (from >= V4_6_0 && from < V4_6_3) { + if (from >= V4_6_0 && from < V4_6_4) { + newVersionString(changeLog, "4.6.4 (4/18/13)", new String[] { + "Improvements to monthly repeating tasks scheduled for the end of the month", + "Minor bugfixes" + }); + } + + if (from < V4_6_3) { newVersionString(changeLog, "4.6.3 (4/15/13)", new String[] { "BIG RELEASE!", "\"Waiting on me\" shows shared tasks assigned to you or where you were mentioned by name",