Upgrade message and version bump

pull/14/head
Sam Bosley 13 years ago
parent 9785b7226b
commit 626c7f5c65

@ -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.0.1"
android:versionCode="203">
android:versionName="3.9.0.2"
android:versionCode="204">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> -->

@ -39,6 +39,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService {
public static final int V3_9_0_2 = 204;
public static final int V3_9_0_1 = 203;
public static final int V3_9 = 202;
public static final int V3_8_5_1 = 201;
@ -160,6 +161,15 @@ public final class UpgradeService {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();
if (from >= V3_9 && from < V3_9_0_2) {
newVersionString(changeLog, "3.9.0.2 (12/21/11)", new String[] {
"UI enhancements, better scrolling performance, and themed task edit dialogs",
"Clickable links in task notes",
"Fixed fields that were getting hidden under the keyboard",
"Other small UI improvements and bug fixes"
});
}
if (from >= V3_9 && from < V3_9_0_1) {
newVersionString(changeLog, "3.9.0.1 (12/09/11)", new String[] {
"Fix for a bug when adding premium widgets for Google Tasks lists",

Loading…
Cancel
Save