Version bump to 3.7.2

pull/14/head
Tim Su 14 years ago
parent 8dd10dfe24
commit f5e297fc0d

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

@ -34,6 +34,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService {
public static final int V3_7_2 = 174;
public static final int V3_7_1 = 173;
public static final int V3_7_0 = 172;
public static final int V3_6_4 = 170;
@ -133,15 +134,24 @@ public final class UpgradeService {
});
} else {
// current message
if(from < V3_7_1) {
newVersionString(changeLog, "3.7.1 (2/17/10)", new String[] {
if(from < V3_7_2) {
newVersionString(changeLog, "3.7.2 (3/04/11)", new String[] {
"Added a 'Ring 5 times' setting to task reminders",
"Added 'Copy Task' to the long-press menu",
"Fixed crash for Motorola Xoom / Android Honeycomb users",
"Fixed some Producteev-related errors and duplicated task issues.",
"Fixed issue with importing repeating tasks from XML",
});
}
if(from >= V3_7_0 && from < V3_7_1) {
newVersionString(changeLog, "3.7.1 (2/17/11)", new String[] {
"Fixed due date reminders not being displayed",
"Added an 'About' screen for displaying current version.",
"Fixed several user-reported crashes! Keep 'em coming :)",
});
}
if(from >= V3_0_0 && from < V3_7_0) {
newVersionString(changeLog, "3.7.0 (2/7/10)", new String[] {
newVersionString(changeLog, "3.7.0 (2/7/11)", new String[] {
"Improved UI for displaying task actions. Tap a task to " +
"bring up actions, tap again to dismiss.",
"Task notes can be viewed by tapping the note icon to " +

Loading…
Cancel
Save