Version bump now 3.9.1

pull/14/head
Tim Su 13 years ago
parent 012649ae72
commit c96bbac226

@ -1,7 +1,7 @@
<?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.2"
android:versionName="3.9.1"
android:versionCode="204">
<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->

@ -39,7 +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_1 = 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;
@ -161,12 +161,12 @@ 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[] {
if (from >= V3_9 && from < V3_9_1) {
newVersionString(changeLog, "3.9.1 (12/23/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"
"Minor UI improvements and bug fixes"
});
}

Loading…
Cancel
Save