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",