diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index e49a8cc69..e31c4665d 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.6.3" + android:versionCode="169"> diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index ad7627257..f0e1b2c4d 100644 --- a/astrid/src/com/todoroo/astrid/service/UpgradeService.java +++ b/astrid/src/com/todoroo/astrid/service/UpgradeService.java @@ -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. " +