Version bump Astrid 3.7.1

pull/14/head 3.7.1
Tim Su 14 years ago
parent 08265c0f38
commit c00e69c4cb

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

@ -140,7 +140,7 @@ public class Notifications extends BroadcastReceiver {
// task due date was changed, but alarm wasn't rescheduled
if((type == ReminderService.TYPE_DUE || type == ReminderService.TYPE_OVERDUE) &&
(!task.hasDueDate() || task.getValue(Task.DUE_DATE) > DateUtilities.now())) // test
(!task.hasDueDate() || task.getValue(Task.DUE_DATE) > DateUtilities.now()))
return true;
// read properties

@ -34,6 +34,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService {
public static final int V3_7_1 = 173;
public static final int V3_7_0 = 172;
public static final int V3_6_4 = 170;
public static final int V3_6_3 = 169;
@ -132,7 +133,14 @@ public final class UpgradeService {
});
} else {
// current message
if(from < V3_7_0) {
if(from < V3_7_1) {
newVersionString(changeLog, "3.7.1 (2/17/10)", 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[] {
"Improved UI for displaying task actions. Tap a task to " +
"bring up actions, tap again to dismiss.",

Loading…
Cancel
Save