diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index da96d0286..39e985c03 100755 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -20,8 +20,8 @@ version to be published. The next versionCode will be 7, regardless of whether t versionName is 2.31, 2.4, or 3.0. --> + android:versionName="2.6b1" + android:versionCode="12">

What's new in this version

-

New in version 2.5:

+

New in version 2.6:

    -
  • New options to vibrate and copy contents to the clipboard when a barcode is found.
  • -
  • Better parsing and compatibility with the contents of QR Codes.
  • -
  • Fixed a crash when scanning a QR Code of an SMS message with a question mark in it.
  • -
  • Fixed a crash with QR Codes which encode geo: coordinates.
  • -
  • More robust QR Codes detection and decoding.
  • +
  • Added support for ITF format barcodes.
  • +
  • Fixed a bug where some URLs would be misinterpreted as email addresses.
  • +
  • Added support for uppercase URIs like TEL: and GEO:.
  • +
  • Prevented Barcode Scanner from crashing when launching an unhandled intent.
  • +
  • Added the version to the about box.
\ No newline at end of file diff --git a/android/src/com/google/zxing/client/android/SearchBookContentsActivity.java b/android/src/com/google/zxing/client/android/SearchBookContentsActivity.java index c42205a3e..b3f5a07f4 100644 --- a/android/src/com/google/zxing/client/android/SearchBookContentsActivity.java +++ b/android/src/com/google/zxing/client/android/SearchBookContentsActivity.java @@ -51,7 +51,7 @@ import java.util.List; public final class SearchBookContentsActivity extends Activity { private static final String TAG = "SearchBookContents"; - private static final String USER_AGENT = "ZXing/1.2 (Android)"; + private static final String USER_AGENT = "ZXing/1.3 (Android)"; private NetworkThread mNetworkThread; private String mISBN;