Skip to content

Commit

Permalink
Updates for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Grunthos committed Jun 11, 2012
1 parent 412e51b commit 00bbddf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AndroidManifest.xml
Expand Up @@ -2,7 +2,7 @@
<!-- android:installLocation="preferExternal" when building with API > 4 --> <!-- android:installLocation="preferExternal" when building with API > 4 -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eleybourn.bookcatalogue" package="com.eleybourn.bookcatalogue"
android:installLocation="preferExternal" android:versionName="4.0.4" android:versionCode="83"> android:installLocation="preferExternal" android:versionName="4.0.4" android:versionCode="84">
<application android:name=".BookCatalogueApp" android:label="@string/app_name" android:icon="@drawable/ic_launcher2" > <application android:name=".BookCatalogueApp" android:label="@string/app_name" android:icon="@drawable/ic_launcher2" >
<provider android:name=".SearchSuggestionProvider" android:authorities="com.eleybourn.bookcatalogue.SearchSuggestionProvider" /> <provider android:name=".SearchSuggestionProvider" android:authorities="com.eleybourn.bookcatalogue.SearchSuggestionProvider" />
<service android:enabled="true" android:name=".BcQueueManager" /> <service android:enabled="true" android:name=".BcQueueManager" />
Expand Down
2 changes: 2 additions & 0 deletions README
Expand Up @@ -43,6 +43,8 @@ Features include;


new in 4.0.4 new in 4.0.4
* search now searches series and anthology data * search now searches series and anthology data
* allows non-numeric data entry in series position
* better sorting of leading numerics in series position
* various esoteric bugs fixed * various esoteric bugs fixed
new in 4.0.3 new in 4.0.3
* ISBNs are now validated when searching or scanning (new beep sound and related preference) * ISBNs are now validated when searching or scanning (new beep sound and related preference)
Expand Down
2 changes: 2 additions & 0 deletions src/com/eleybourn/bookcatalogue/CatalogueDBAdapter.java
Expand Up @@ -1486,6 +1486,8 @@ public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
StartupActivity.scheduleFtsRebuild(); StartupActivity.scheduleFtsRebuild();
message += "New in v4.0.4\n\n"; message += "New in v4.0.4\n\n";
message += "* Search now searches series and anthology data\n\n"; message += "* Search now searches series and anthology data\n\n";
message += "* Allows non-numeric data entry in series position\n\n";
message += "* Better sorting of leading numerics in series position\n\n";
message += "* Several bug fixes\n\n"; message += "* Several bug fixes\n\n";
} }


Expand Down

0 comments on commit 00bbddf

Please sign in to comment.