diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index effd0aae9..5fdab1ed1 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.2.6 (bug fixes and ui improvements)" + android:versionCode="153"> @@ -54,7 +54,7 @@ + android:label="@string/app_name"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index 10103bb00..87895c0c7 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -16,6 +16,7 @@ import com.todoroo.astrid.dao.Database; public final class UpgradeService { + private static final int V3_2_5 = 152; private static final int V3_2_4 = 151; private static final int V3_2_3 = 150; private static final int V3_1_0 = 146; @@ -109,11 +110,18 @@ 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_4) + if(from > V3_1_0 && from <= V3_2_5) + newVersionString(changeLog, "3.2.6 (8/24/10)", new String[] { + "RTM: fix for login popping up randomly, not syncing priority", + "Sync: added a 'Sync Now!' button to the menu, moved options to Settings", + "Improvements to notification code to remind you of missed notifications", + "Smoother scrolling of task list once details are loaded", + }); + if(from > V3_1_0 && from <= V3_2_4) newVersionString(changeLog, "3.2.5 (8/18/10)", new String[] { "Fix for duplicated tasks created in RTM", }); - if(from > V2_14_4 && from <= V3_2_3) + if(from > V3_1_0 && from <= V3_2_3) newVersionString(changeLog, "3.2.5 (8/18/10)", new String[] { "Fix for duplicated tasks created in Producteev", "Fix for being able to create tasks without title",