Merge branch 'master' of github.com:eleybourn/Book-Catalogue

master
Evan Leybourn 2010-12-02 18:26:47 +11:00
commit 8c214a188b
4 changed files with 4 additions and 7 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:versionCode="37" android:versionName="3.0.1">
android:versionName="3.1" android:versionCode="38">
<application android:label="@string/app_name" android:icon="@drawable/logo_bc">
<activity android:name=".BookCatalogue"
android:label="@string/app_name">

4
README
View File

@ -49,10 +49,6 @@ New in v3.1
* Searching for a single space will clear the search results page
* The Date Picker will now appear in a popup in order to save space on the screen (Requested by several people)
* To improve speed when sorting by title, the titles will be broken up by the first character. Remember prefixes such as "the" and "a" are listed after the title, e.g. "The Trigger" becomes "Trigger, The"
* TODO: Add Date Loaned, Date Bought, Language (+ update)
* TODO: Help on every page
* TODO: Add by Author+Title
* TODO: Search/Update by Author+Title
New in v3.0.1
* Export bug fixed

View File

@ -619,6 +619,9 @@ public class CatalogueDBAdapter {
message += "* When adding books the current bookshelf will be selected as the default bookshelf\n\n";
message += "* Genre/Subject and Description fields have been added (Requested by Tosh) and will automatically populate based on Google Books and Amazon information\n\n";
message += "* The save button will always be visible on the edit book screen\n\n";
message += "* Searching for a single space will clear the search results page\n\n";
message += "* The Date Picker will now appear in a popup in order to save space on the screen (Requested by several people)\n\n";
message += "* To improve speed when sorting by title, the titles will be broken up by the first character. Remember prefixes such as 'the' and 'a' are listed after the title, e.g. 'The Trigger' becomes 'Trigger, The'\n\n";
}
if (curVersion == 48) {
curVersion++;

View File

@ -28,8 +28,6 @@ import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TextView;
/**