Skip to content

Commit 487f62d

Browse files
committed
5.2.0 Release changes (initial)
1 parent 1b9a264 commit 487f62d

File tree

5 files changed

+29
-10
lines changed

5 files changed

+29
-10
lines changed

AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
44
package="com.eleybourn.bookcatalogue"
55
android:installLocation="auto"
6-
android:versionCode="169"
7-
android:versionName="5.1.2" >
6+
android:versionCode="171"
7+
android:versionName="5.2.0" >
88

99
<uses-sdk
1010
android:minSdkVersion="7"

README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ Features include;
4141
case. e.g. "The murder on the links" becomes "Murder on the Links, The"
4242
* Using ISBN or Barcode scanning will also download a thumbnail (if available)
4343

44+
new in 5.2.0
45+
* Greek translation (Dimitris Klisiaris)
46+
* Locale-specific capitalization (de, fr)
47+
* User-selectable locale
48+
* Improvements to search
49+
* Bug fixes to date display
50+
4451
new in 5.1.0
4552
* Italian translation (Eugenio Davolio)
4653
* Spanish translation (Jos� M. Galdo)

res/values/strings.xml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -993,9 +993,6 @@ and you can edit the book via the options menu using the menu button or overflow
993993
<!-- Heading in 'about' dialog -->
994994
<string name="special_thanks_label">Special Thanks</string>
995995

996-
<!-- Credits in the 'about' dialog -->
997-
<string name="translators_blurb">BookCatalogue is the product of the efforts of many people, and would not have such wide use without the generous help of our volunteer translators: Eugenio Davolio, José M. Galdo, Imkal, Gideon van Melle, Emir Sarı, Nick Silin, and Robert Wetzlmayr (if we have forgotten someone, please tell us).</string>
998-
999996
<!-- End: Added/Updated in 5.1.0 -->
1000997

1001998
<!-- Begin: Added/Updated in 5.1.1 -->
@@ -1051,7 +1048,7 @@ and you can edit the book via the options menu using the menu button or overflow
10511048

10521049
<!-- End: Added/Updated in 5.1.2 -->
10531050

1054-
<!-- Begin: Added/Updated in 5.1.3 -->
1051+
<!-- Begin: Added/Updated in 5.2.0 -->
10551052

10561053
<!-- Preference name (fairly short) for preferred language -->
10571054
<string name="preferred_interface_language">Preferred Interface Language</string>
@@ -1062,12 +1059,26 @@ and you can edit the book via the options menu using the menu button or overflow
10621059
<string name="install_scan">To scan your books via the ISBN barcode, you must install one of the Zxing or pic2shop barcode scanner applications.</string>
10631060

10641061
<string name="system_locale">System Locale</string>
1065-
1066-
<!-- WILL PROBABLY BE MORE! -->
10671062

1068-
<!-- End: Added/Updated in 5.1.3 -->
1063+
<!-- Credits in the 'about' dialog -->
1064+
<string name="translators_blurb">BookCatalogue is the product of the efforts of many people, and would not have such wide use without the generous help of our volunteer translators: Eugenio Davolio, José M. Galdo, Imkal, Dimitris Klisiari, Gideon van Melle, Emir Sarı, Nick Silin, and Robert Wetzlmayr (if we have forgotten someone, please tell us).</string>
1065+
1066+
<string name="new_in_520">
1067+
<![CDATA[
1068+
<p><b>New in 5.2.0</b>\n\n
1069+
* User-delectable locale in Preferences\n\n
1070+
* Greek translation (Dimitris Klisiaris)\n\n
1071+
* Locale-specific capitalization (de, fr)\n\n
1072+
* Improvements to search\n\n
1073+
* Bug fixes\n\n
1074+
</p>
1075+
]]>
1076+
</string>
1077+
1078+
<!-- End: Added/Updated in 5.2.0 -->
10691079

10701080
<!-- Begin: Added/Updated in [Next Version] DO NOT TRANSLATE YET! MAY CHANGE OR BE DELETED! -->
1081+
10711082
<!-- End: Added/Updated in [Next Version] -->
10721083

10731084
</resources>

src/com/eleybourn/bookcatalogue/utils/StorageUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public static void sendDebugInfo(Context context, CatalogueDBAdapter dbHelper) {
294294
for(String scanner: scanners) {
295295
message += "Scanner [" + scanner + "]:\n";
296296
final Intent mainIntent = new Intent(scanner, null);
297-
final List<ResolveInfo> resolved = context.getPackageManager().queryIntentActivities( mainIntent, 0);
297+
final List<ResolveInfo> resolved = context.getPackageManager().queryIntentActivities( mainIntent, 0);
298298
if (resolved.size() > 0) {
299299
for(ResolveInfo r: resolved) {
300300
message += " ";

src/com/eleybourn/bookcatalogue/utils/UpgradeMessageManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public class UpgradeMessageManager {
6161
.add(154, R.string.new_in_509)
6262
.add(162, R.string.new_in_510)
6363
.add(166, R.string.new_in_511)
64+
.add(171, R.string.new_in_520)
6465
;
6566

6667

0 commit comments

Comments
 (0)