closed upgrade cursor, stuff had to be reflected for hidden 2.14.4 release

pull/14/head
Tim Su 14 years ago
parent 42e9c57244
commit 14be974ff6

@ -298,6 +298,7 @@ public class Astrid2To3UpgradeHelper {
}
dao.createNew(container.model);
}
cursor.close();
upgradeDb.close();
}

@ -22,7 +22,7 @@ public final class UpgradeService {
if(from < 1)
return;
if(from < 135)
if(from < 136)
new Astrid2To3UpgradeHelper().upgrade2To3();
// display changelog
@ -63,9 +63,12 @@ public final class UpgradeService {
"Fixed crashes occuring with certain languages (Swedish, Turkish)",
"Fixed other crashes that users have reported",
});
if(from <= 134)
if(from <= 135)
newVersionString(changeLog, "3.0.0 (?/??/10)", new String[] {
"Astrid is brand new inside and out!",
"Astrid is brand new inside and out! In addition to a new " +
"look and feel, a new add-on system allows Astrid to become " +
"more powerful, while other improvements have made it faster " +
"and easier to use. Hope you like it!",
});
if(changeLog.length() == 0)

Loading…
Cancel
Save