From 358acdb8f9129cb7e00ab5aa4ef07d828f947d3e Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 17 Jan 2013 15:31:35 -0800 Subject: [PATCH] Changed version number for the next release, updated upgrade message --- astrid/AndroidManifest.xml | 2 +- .../src/com/todoroo/astrid/service/UpgradeService.java | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 541e16bde..2646c2f0a 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -6,7 +6,7 @@ --> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 33326a116..55bcf71ba 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -50,7 +50,7 @@ import com.todoroo.astrid.utility.Constants; public final class UpgradeService { - public static final int V4_5_1_1 = 293; + public static final int V4_5_2 = 293; public static final int V4_5_1 = 292; public static final int V4_5_0 = 291; public static final int V4_4_4_1 = 290; @@ -265,7 +265,7 @@ public final class UpgradeService { } } - if (from < V4_5_1_1) { + if (from < V4_5_2) { Preferences.setBoolean(R.string.p_simple_input_boxes, true); } } @@ -288,9 +288,10 @@ public final class UpgradeService { Preferences.clear(AstridPreferences.P_UPGRADE_FROM); StringBuilder changeLog = new StringBuilder(); - if (from >= V4_5_1 && from < V4_5_1_1) { + if (from >= V4_5_0 && from < V4_5_2) { newVersionString(changeLog, "4.5.1.1 (1/17/13)", new String[] { - "Fixed a crash that could affect some Google Tasks users" + "Fixed a crash that could affect some Google Tasks users", + "UI polish" }); }