Skip to content

Commit

Permalink
Version bump and upgrade message
Browse files Browse the repository at this point in the history
  • Loading branch information
sbosley committed Apr 18, 2013
1 parent 739c987 commit c2619bc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions astrid/AndroidManifest.xml
Expand Up @@ -6,8 +6,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionName="4.6.3"
android:versionCode="304">
android:versionName="4.6.4"
android:versionCode="305">

<!-- widgets, alarms, and services will break if Astrid is installed on SD card -->
<!-- android:installLocation="internalOnly"> -->
Expand Down
10 changes: 9 additions & 1 deletion astrid/src/com/todoroo/astrid/service/UpgradeService.java
Expand Up @@ -49,6 +49,7 @@

public final class UpgradeService {

public static final int V4_6_4 = 305;
public static final int V4_6_3 = 304;
public static final int V4_6_2 = 303;
public static final int V4_6_1 = 302;
Expand Down Expand Up @@ -321,7 +322,14 @@ public void showChangeLog(Context context, int from) {
Preferences.clear(AstridPreferences.P_UPGRADE_FROM);
StringBuilder changeLog = new StringBuilder();

if (from >= V4_6_0 && from < V4_6_3) {
if (from >= V4_6_0 && from < V4_6_4) {
newVersionString(changeLog, "4.6.4 (4/18/13)", new String[] {
"Improvements to monthly repeating tasks scheduled for the end of the month",
"Minor bugfixes"
});
}

if (from < V4_6_3) {
newVersionString(changeLog, "4.6.3 (4/15/13)", new String[] {
"BIG RELEASE!",
"\"Waiting on me\" shows shared tasks assigned to you or where you were mentioned by name",
Expand Down

0 comments on commit c2619bc

Please sign in to comment.