Updated upgrade message

pull/14/head
Tim Su 15 years ago
parent b92256303e
commit 06f5a1b179

@ -19,6 +19,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { 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_3 = 169;
public static final int V3_6_2 = 168; public static final int V3_6_2 = 168;
public static final int V3_6_0 = 166; public static final int V3_6_0 = 166;
@ -112,21 +113,24 @@ public final class UpgradeService {
}); });
} else { } else {
// current message // 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) { if(from >= V3_6_0 && from < V3_6_3) {
newVersionString(changeLog, "3.6.3 (12/18/10)", new String[] { newVersionString(changeLog, "3.6.3 (12/18/10)", new String[] {
"Added support for Producteev repeating tasks", "Added support for Producteev repeating tasks",
"Fix for Producteev sync duplicate task issues", "Fix for Producteev sync duplicate task issues",
}); });
upgrade3To3_6(context);
} }
// old messages
if(from >= V3_6_0 && from < V3_6_2) { if(from >= V3_6_0 && from < V3_6_2) {
newVersionString(changeLog, "3.6.2 (12/11/10)", new String[] { newVersionString(changeLog, "3.6.2 (12/11/10)", new String[] {
"Fix for Google Tasks crash on view list", "Fix for Google Tasks crash on view list",
"Fix for Producteev crash sometimes during sync", "Fix for Producteev crash sometimes during sync",
}); });
upgrade3To3_6(context);
} }
if(from >= V3_0_0 && from < V3_6_0) { if(from >= V3_0_0 && from < V3_6_0) {
newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] { newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] {

Loading…
Cancel
Save