|
|
|
|
@ -41,6 +41,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
|
|
|
|
|
|
|
|
|
|
public final class UpgradeService {
|
|
|
|
|
|
|
|
|
|
public static final int V4_2_4 = 275;
|
|
|
|
|
public static final int V4_2_3 = 274;
|
|
|
|
|
public static final int V4_2_2_1 = 273;
|
|
|
|
|
public static final int V4_2_2 = 272;
|
|
|
|
|
@ -208,6 +209,14 @@ public final class UpgradeService {
|
|
|
|
|
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
|
|
|
|
|
StringBuilder changeLog = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
if (from >= V4_2_0 && from < V4_2_4) {
|
|
|
|
|
newVersionString(changeLog, "4.2.4 (7/11/12)", new String[] {
|
|
|
|
|
"Added ability to specify end date for repeating tasks",
|
|
|
|
|
"Improved sync of comments made while offline",
|
|
|
|
|
"Several crash fixes"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (from >= V4_2_0 && from < V4_2_3) {
|
|
|
|
|
newVersionString(changeLog, "4.2.3 (6/25/12)", new String[] {
|
|
|
|
|
"Fixes for Google Tasks and Astrid.com sync",
|
|
|
|
|
|