Version bump and upgrade message

pull/14/head
Sam Bosley 13 years ago
parent a222e28cd6
commit bddc70bdb4

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid" package="com.timsu.astrid"
android:versionName="4.0.6.2" android:versionName="4.1.0"
android:versionCode="264"> android:versionCode="265">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card --> <!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> --> <!-- android:installLocation="internalOnly"> -->

@ -41,6 +41,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { public final class UpgradeService {
public static final int V4_1_0 = 265;
public static final int V4_0_6_2 = 264; public static final int V4_0_6_2 = 264;
public static final int V4_0_6_1 = 263; public static final int V4_0_6_1 = 263;
public static final int V4_0_6 = 262; public static final int V4_0_6 = 262;
@ -193,12 +194,21 @@ public final class UpgradeService {
if(!(context instanceof Activity) || from == 0) if(!(context instanceof Activity) || from == 0)
return; return;
boolean showTagCaseMigration = Preferences.getBoolean(TagCaseMigrator.PREF_SHOW_MIGRATION_ALERT, false);
Preferences.clear(TagCaseMigrator.PREF_SHOW_MIGRATION_ALERT); Preferences.clear(TagCaseMigrator.PREF_SHOW_MIGRATION_ALERT);
Preferences.clear(AstridPreferences.P_UPGRADE_FROM); Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder(); StringBuilder changeLog = new StringBuilder();
if (from < V4_1_0) {
newVersionString(changeLog, "4.1.0 (4/16/12)", new String[] {
"Swipe between lists! Swipe left and right to move through your lists",
"Assign tasks to friends by choosing from your phone contacts",
"Click on task titles in comments to edit those tasks",
"Astrid.com sync improvements",
"Other minor bugfixes",
});
}
if (from >= V4_0_6 && from < V4_0_6_2) { if (from >= V4_0_6 && from < V4_0_6_2) {
newVersionString(changeLog, "4.0.6.2 (4/03/12)", new String[] { newVersionString(changeLog, "4.0.6.2 (4/03/12)", new String[] {
"Minor fix to backup migration fix to handle deleted tasks as well as completed tasks." "Minor fix to backup migration fix to handle deleted tasks as well as completed tasks."

Loading…
Cancel
Save