version bump and upgrade message

pull/14/head 3.8.4.4
Tim Su 14 years ago
parent 0a2ed597d1
commit 8ea8f03767

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

@ -40,6 +40,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { public final class UpgradeService {
public static final int V3_8_4_3 = 198;
public static final int V3_8_4_2 = 197; public static final int V3_8_4_2 = 197;
public static final int V3_8_4_1 = 196; public static final int V3_8_4_1 = 196;
public static final int V3_8_4 = 195; public static final int V3_8_4 = 195;
@ -157,6 +158,14 @@ public final class UpgradeService {
StringBuilder changeLog = new StringBuilder(); StringBuilder changeLog = new StringBuilder();
// current message // current message
if (from >= V3_8_4 && from < V3_8_4_3) {
newVersionString(changeLog, "3.8.4.3 (10/05/11)", new String[] {
"Additional fixes to Google Tasks API, and added better error messages to " +
"help troubleshoot errors some of you are having",
"Fix for Astrid not working on Android 1.6.",
"\"Ring until I dismiss\" type random reminders now ring only once and respect quiet hours",
});
}
if (from >= V3_8_4 && from < V3_8_4_2) { if (from >= V3_8_4 && from < V3_8_4_2) {
newVersionString(changeLog, "3.8.4.2 (10/03/11)", new String[] { newVersionString(changeLog, "3.8.4.2 (10/03/11)", new String[] {
"Updated Google Tasks API libraries to 1.2.2. This may fix some of your Google Task sync issues", "Updated Google Tasks API libraries to 1.2.2. This may fix some of your Google Task sync issues",

Loading…
Cancel
Save