Version bump and upgrade message

pull/14/head
Sam Bosley 13 years ago
parent 40c7d1bf10
commit 8eab520fc8

@ -6,8 +6,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionName="4.5.1"
android:versionCode="292">
android:versionName="4.5.1.1"
android:versionCode="293">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> -->

@ -50,6 +50,7 @@ import com.todoroo.astrid.utility.Constants;
public final class UpgradeService {
public static final int V4_5_1_1 = 293;
public static final int V4_5_1 = 292;
public static final int V4_5_0 = 291;
public static final int V4_4_4_1 = 290;
@ -283,6 +284,12 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V4_5_1 && from < V4_5_1_1) {
newVersionString(changeLog, "4.5.1.1 (1/17/13)", new String[] {
"Fixed a crash that could affect some Google Tasks users"
});
}
if (from >= V4_5_0 && from < V4_5_1) {
newVersionString(changeLog, "4.5.1 (1/16/13)", new String[] {
"New 'Titles only' style option for task lists (Settings > Appearance > Task row appearance)",

Loading…
Cancel
Save