From 4b647fdd971cf32820fd593e9013886c745546a5 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Wed, 18 Aug 2010 19:28:51 -0700 Subject: [PATCH] Version bump, added upgrade message --- astrid/AndroidManifest.xml | 4 ++-- astrid/src/com/todoroo/astrid/service/UpgradeService.java | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 679198085..ba82cd4e5 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.2.4 (build your own filters, easy sorting, customizable widget, ui improvements)" + android:versionCode="151"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index de20889cd..8ed6300e6 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -15,6 +15,7 @@ import com.todoroo.astrid.activity.TaskListActivity; public final class UpgradeService { + private static final int V3_2_3 = 150; private static final int V3_1_0 = 146; private static final int V3_0_6 = 145; private static final int V3_0_5 = 144; @@ -102,6 +103,11 @@ public final class UpgradeService { "If you liked the old version, you can also go back by " + "clicking here", }); + if(from > V2_14_4 && from <= V3_2_3) + newVersionString(changeLog, "3.2.4 (8/18/10)", new String[] { + "Fix for duplicated tasks created in Producteev", + "Fix for being able to create tasks without title", + }); if(from > V2_14_4 && from <= V3_1_0) newVersionString(changeLog, "3.2.0 (8/16/10)", new String[] { "Build your own custom filters from the Filter page",