Version bump and upgrade message

pull/14/head
Sam Bosley 14 years ago
parent e30263b04e
commit dd7daff539

@ -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="3.9.2.2"
android:versionCode="209">
android:versionName="3.9.2.3"
android:versionCode="210">
<!-- 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 V3_9_2_3 = 210;
public static final int V3_9_2_2 = 209;
public static final int V3_9_2_1 = 208;
public static final int V3_9_2 = 207;
@ -173,6 +174,14 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V3_9_2 && from < V3_9_2_3) {
newVersionString(changeLog, "3.9.2.3 (1/20/12)", new String[] {
"Fixed a bug with displaying update messages",
"Fixed an occasional crash in Gtasks Sync",
"Other minor bugfixes"
});
}
if (from >= V3_9_2 && from < V3_9_2_2) {
newVersionString(changeLog, "3.9.2.2 (1/19/12)", new String[] {
"Astrid now recognizes words like 'tomorrow', 'monday', '!!!' and '2 pm' to set date and importance",

Loading…
Cancel
Save