diff --git a/astrid/src/com/todoroo/astrid/service/UpgradeService.java b/astrid/src/com/todoroo/astrid/service/UpgradeService.java index f0e1b2c4d..53ddffa0b 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_4 = 170; public static final int V3_6_3 = 169; public static final int V3_6_2 = 168; public static final int V3_6_0 = 166; @@ -112,21 +113,24 @@ public final class UpgradeService { }); } else { // current message + if(from >= V3_6_0 && from < V3_6_4) { + newVersionString(changeLog, "3.6.4 (12/28/10)", new String[] { + "Fix crash occuring when using timers", + }); + } + + // old messages 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", "Fix for Producteev crash sometimes during sync", }); - upgrade3To3_6(context); } if(from >= V3_0_0 && from < V3_6_0) { newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] {