Upgrade service to 3.6 only if pre 3.6

pull/14/head
Tim Su 14 years ago
parent c44a99d8c4
commit 72e15a7ddd

@ -110,15 +110,17 @@ public final class UpgradeService {
}); });
} else { } else {
// current message // current message
newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] { if(from < V3_6_0) {
"Astrid Power Pack is now launched to the Android Market. " + newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] {
"New Power Pack features include 4x2 and 4x4 widgets and voice " + "Astrid Power Pack is now launched to the Android Market. " +
"task reminders and creation. Go to the add-ons page to find out more!", "New Power Pack features include 4x2 and 4x4 widgets and voice " +
"Fix for Google Tasks: due times got lost on sync, repeating tasks not repeated", "task reminders and creation. Go to the add-ons page to find out more!",
"Fix for task alarms not always firing if multiple set", "Fix for Google Tasks: due times got lost on sync, repeating tasks not repeated",
"Fix for various force closes", "Fix for task alarms not always firing if multiple set",
}); "Fix for various force closes",
upgrade3To3_6(context); });
upgrade3To3_6(context);
}
// old messages // old messages
if(from >= V3_0_0 && from < V3_5_0) if(from >= V3_0_0 && from < V3_5_0)

Loading…
Cancel
Save