Version bump and upgrade message

pull/14/head
Sam Bosley 13 years ago
parent 0b528c9f08
commit dbf7d8b6ce

@ -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" android:versionName="4.0.6.1"
android:versionCode="262"> android:versionCode="263">
<!-- 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"> -->

@ -43,6 +43,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { public final class UpgradeService {
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;
public static final int V4_0_5_1 = 261; public static final int V4_0_5_1 = 261;
public static final int V4_0_5 = 260; public static final int V4_0_5 = 260;
@ -194,12 +195,22 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM); Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder(); StringBuilder changeLog = new StringBuilder();
newVersionString(changeLog, "4.0.6 (3/29/12)", new String[] { if (from >= V4_0_6 && from < V4_0_6_1) {
newVersionString(changeLog, "4.0.6 (4/03/12)", new String[] {
"Fixed a bug where old tasks could become uncompleted. Sorry to those of you" +
" who were affected by this! To recover, you can try reinstalling and restoring your" +
" tasks from the backup file."
});
}
if (from < V4_0_6) {
newVersionString(changeLog, "4.0.6 (4/02/12)", new String[] {
"Fixes and performance improvements to Astrid.com and Google Tasks sync", "Fixes and performance improvements to Astrid.com and Google Tasks sync",
"Google TV support! (Beta)", "Google TV support! (Beta)",
"Fixed a bug that could put duetimes on tasks when changing timezones", "Fixed a bug that could put duetimes on tasks when changing timezones",
"Fixed a rare crash when starting a task timer" "Fixed a rare crash when starting a task timer"
}); });
}
if (from >= V4_0_5 && from < V4_0_5_1) { if (from >= V4_0_5 && from < V4_0_5_1) {
newVersionString(changeLog, "4.0.5.1 (3/23/12)", new String[] { newVersionString(changeLog, "4.0.5.1 (3/23/12)", new String[] {

Loading…
Cancel
Save