Upgrade message

pull/14/head
Tim Su 15 years ago
parent 91509d0642
commit 0625a34582

@ -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.6.2"
android:versionCode="168">
android:versionName="3.6.3"
android:versionCode="169">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> -->

@ -19,6 +19,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService {
public static final int V3_6_3 = 169;
public static final int V3_6_2 = 168;
public static final int V3_6_0 = 166;
public static final int V3_5_0 = 165;
@ -111,6 +112,15 @@ public final class UpgradeService {
});
} else {
// current message
if(from >= V3_6_0 && from < V3_6_3) {
newVersionString(changeLog, "3.6.3 (12/18/10)", new String[] {
"Added support for Producteev repeating tasks",
"Fix for Producteev sync duplicate task issues",
});
upgrade3To3_6(context);
}
// old messages
if(from >= V3_6_0 && from < V3_6_2) {
newVersionString(changeLog, "3.6.2 (12/11/10)", new String[] {
"Fix for Google Tasks crash on view list",
@ -118,8 +128,6 @@ public final class UpgradeService {
});
upgrade3To3_6(context);
}
// old messages
if(from >= V3_0_0 && from < V3_6_0) {
newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] {
"Astrid Power Pack is now launched to the Android Market. " +

Loading…
Cancel
Save