Version bump

pull/14/head 3.7.5
Tim Su 15 years ago
parent 5f7ffb7406
commit 70110e152e

@ -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.7.4" android:versionName="3.7.5"
android:versionCode="178"> android:versionCode="179">
<!-- 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"> -->

@ -36,6 +36,7 @@ import com.todoroo.astrid.utility.AstridPreferences;
public final class UpgradeService { public final class UpgradeService {
public static final int V3_7_5 = 179;
public static final int V3_7_4 = 178; public static final int V3_7_4 = 178;
public static final int V3_7_3 = 175; public static final int V3_7_3 = 175;
public static final int V3_7_2 = 174; public static final int V3_7_2 = 174;
@ -140,7 +141,15 @@ public final class UpgradeService {
}); });
} else { } else {
// current message // current message
if(from < V3_7_4) { if(from < V3_7_5) {
newVersionString(changeLog, "3.7.5 (5/24/11)", new String[] {
"Fix for custom filter not working with tags with apostrophes",
"Fix for crashes when rearranging tasks in a Google list",
"Fix for yellow line drawn when swiping",
"Fix for various crashes",
});
}
if(from >= V3_7_0 && from < V3_7_4) {
newVersionString(changeLog, "3.7.4 (5/19/11)", new String[] { newVersionString(changeLog, "3.7.4 (5/19/11)", new String[] {
"Fix for Galaxy S preference issue duplicating intro tasks", "Fix for Galaxy S preference issue duplicating intro tasks",
"Fix for Producteev note order incorrect", "Fix for Producteev note order incorrect",
@ -152,7 +161,7 @@ public final class UpgradeService {
}); });
Preferences.setBoolean(Eula.PREFERENCE_EULA_ACCEPTED, true); Preferences.setBoolean(Eula.PREFERENCE_EULA_ACCEPTED, true);
} }
if(from < V3_7_3) { if(from >= V3_7_0 && from < V3_7_3) {
newVersionString(changeLog, "3.7.3 (4/26/11)", new String[] { newVersionString(changeLog, "3.7.3 (4/26/11)", new String[] {
"Fixed 'Show Notes' setting not working", "Fixed 'Show Notes' setting not working",
"Added setting for transparent background in Astrid", "Added setting for transparent background in Astrid",

Loading…
Cancel
Save