Version bump and upgrade message

pull/14/head
Sam Bosley 13 years ago
parent 22544e4fb6
commit a41e94756d

@ -6,8 +6,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.4.4" android:versionName="4.4.4.1"
android:versionCode="289"> android:versionCode="290">
<!-- 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"> -->

@ -49,6 +49,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { public final class UpgradeService {
public static final int V4_4_4_1 = 290;
public static final int V4_4_4 = 289; public static final int V4_4_4 = 289;
public static final int V4_4_3 = 288; public static final int V4_4_3 = 288;
public static final int V4_4_2 = 287; public static final int V4_4_2 = 287;
@ -266,6 +267,12 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM); Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder(); StringBuilder changeLog = new StringBuilder();
if (from >= V4_4_4 && from < V4_4_4_1) {
newVersionString(changeLog, "4.4.4.1 (12/13/12)", new String[] {
"Crash fixes"
});
}
if (from >= V4_4 && from < V4_4_4) { if (from >= V4_4 && from < V4_4_4) {
newVersionString(changeLog, "4.4.4 (12/12/12)", new String[] { newVersionString(changeLog, "4.4.4 (12/12/12)", new String[] {
"Manual ordering and subtasks for 'Active Tasks' and 'Today' filters now sync with Astrid.com", "Manual ordering and subtasks for 'Active Tasks' and 'Today' filters now sync with Astrid.com",

Loading…
Cancel
Save