Version bump, added upgrade message

pull/14/head
Tim Su 16 years ago
parent ade52edd67
commit 4b647fdd97

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid" package="com.timsu.astrid"
android:versionName="3.2.3 (build your own filters, easy sorting, customizable widget, ui improvements)" android:versionName="3.2.4 (build your own filters, easy sorting, customizable widget, ui improvements)"
android:versionCode="150"> android:versionCode="151">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card --> <!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> --> <!-- android:installLocation="internalOnly"> -->

@ -15,6 +15,7 @@ import com.todoroo.astrid.activity.TaskListActivity;
public final class UpgradeService { 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_1_0 = 146;
private static final int V3_0_6 = 145; private static final int V3_0_6 = 145;
private static final int V3_0_5 = 144; 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 " + "If you liked the old version, you can also go back by " +
"<a href='http://bit.ly/oldastrid'>clicking here</a>", "<a href='http://bit.ly/oldastrid'>clicking here</a>",
}); });
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) if(from > V2_14_4 && from <= V3_1_0)
newVersionString(changeLog, "3.2.0 (8/16/10)", new String[] { newVersionString(changeLog, "3.2.0 (8/16/10)", new String[] {
"Build your own custom filters from the Filter page", "Build your own custom filters from the Filter page",

Loading…
Cancel
Save