|
|
|
|
@ -49,6 +49,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
|
|
|
|
|
|
|
|
|
|
public final class UpgradeService {
|
|
|
|
|
|
|
|
|
|
public static final int V4_4_4 = 289;
|
|
|
|
|
public static final int V4_4_3 = 288;
|
|
|
|
|
public static final int V4_4_2 = 287;
|
|
|
|
|
public static final int V4_4_1 = 286;
|
|
|
|
|
@ -265,6 +266,13 @@ public final class UpgradeService {
|
|
|
|
|
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
|
|
|
|
|
StringBuilder changeLog = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
if (from >= V4_4 && from < V4_4_4) {
|
|
|
|
|
newVersionString(changeLog, "4.4.4 (12/12/12)", new String[] {
|
|
|
|
|
"Sync manual ordering and subtasks for 'Active Tasks' and 'Today' filters",
|
|
|
|
|
"Minor polish and bug fixes"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (from >= V4_4 && from < V4_4_3) {
|
|
|
|
|
newVersionString(changeLog, "4.4.3 (11/28/12)", new String[] {
|
|
|
|
|
"Minor bug fixes"
|
|
|
|
|
|