|
|
|
@ -41,6 +41,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
|
|
|
|
|
|
|
|
|
|
public final class UpgradeService {
|
|
|
|
|
|
|
|
|
|
public static final int V4_2_2_1 = 273;
|
|
|
|
|
public static final int V4_2_2 = 272;
|
|
|
|
|
public static final int V4_2_1 = 271;
|
|
|
|
|
public static final int V4_2_0 = 270;
|
|
|
|
@ -206,6 +207,12 @@ public final class UpgradeService {
|
|
|
|
|
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
|
|
|
|
|
StringBuilder changeLog = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
if (from >= V4_2_0 && from < V4_2_2_1) {
|
|
|
|
|
newVersionString(changeLog, "4.2.2.1 (6/13/12)", new String[] {
|
|
|
|
|
"Fixed a crash affecting the Nook"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (from >= V4_2_0 && from < V4_2_2) {
|
|
|
|
|
newVersionString(changeLog, "4.2.2 (6/12/12)", new String[] {
|
|
|
|
|
"Fix for people views displaying the wrong list of tasks",
|
|
|
|
|