Version bump and upgrade message

pull/14/head
Sam Bosley 12 years ago
parent 22776b7928
commit f864e082d6

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

@ -40,6 +40,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService {
public static final int V4_0_4_3 = 259;
public static final int V4_0_4_2 = 258;
public static final int V4_0_4_1 = 257;
public static final int V4_0_4 = 256;
@ -182,8 +183,15 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V4_0_4 && from < V4_0_4_3) {
newVersionString(changeLog, "4.0.4.3 (3/17/12)", new String[] {
"Added option to configure widget theme from Settings, including a legacy-style option",
"Fixed a bug where tasks added with quickadd on tablets weren't always saved correctly",
});
}
if (from >= V4_0_4 && from < V4_0_4_2) {
newVersionString(changeLog, "4.0.4.2 (3/16/15)", new String[] {
newVersionString(changeLog, "4.0.4.2 (3/16/12)", new String[] {
"Fixed a crash that would occur during Google Tasks background sync.",
"Fixed infinite loop bug that would happen sometimes with dragging in Google Tasks.",
"Fixed other crashes that users have been experiencing."

Loading…
Cancel
Save