release changes

master
Evan Leybourn 2010-07-11 21:46:06 +10:00
parent 80fe47b75b
commit b0c5a68204
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eleybourn.bookcatalogue"
android:versionName="2.3a" android:versionCode="23">
android:versionName="2.4" android:versionCode="24">
<application android:label="@string/app_name" android:icon="@drawable/logo_bc">
<activity android:name=".BookCatalogue"
android:label="@string/app_name">

View File

@ -126,7 +126,7 @@ public class CatalogueDBAdapter {
;
private final Context mCtx;
private static final int DATABASE_VERSION = 29;
private static final int DATABASE_VERSION = 30;
/**
* This is a specific version of the SQLiteOpenHelper class. It handles onCreate and onUpgrade events
@ -284,6 +284,13 @@ public class CatalogueDBAdapter {
//do nothing
}
}
if (curVersion == 29) {
//do nothing
curVersion++;
message += "* Adding books will now (finally) search Amazon\n\n";
message += "* A field for list price has been included (Requested by Brenda)\n\n";
message += "* You can bulk update the thumbnails for all books with ISBN's from the Admin page\n\n";
}
}
}