Version bump and upgrade message

pull/14/head 3.2.6
Tim Su 14 years ago
parent 969472bdf9
commit e129443c9d

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionName="3.2.5 (build your own filters, easy sorting, customizable widget, ui improvements)"
android:versionCode="152">
android:versionName="3.2.6 (bug fixes and ui improvements)"
android:versionCode="153">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> -->
@ -54,7 +54,7 @@
<supports-screens />
<application android:icon="@drawable/icon"
android:label="@string/app_name" android:debuggable="true">
android:label="@string/app_name">
<!-- ====================================================== Activities = -->

@ -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 " +
"<a href='http://bit.ly/oldastrid'>clicking here</a>",
});
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",

Loading…
Cancel
Save