From cc0c04bee8830f712552ea94ef12add73c71bc0b Mon Sep 17 00:00:00 2001 From: dswitkin Date: Mon, 9 Mar 2009 20:06:14 +0000 Subject: [PATCH] Changes to create Barcode Scanner 2.6 beta 1. git-svn-id: http://zxing.googlecode.com/svn/trunk@882 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- android/AndroidManifest.xml | 4 ++-- android/assets/html/whatsnew.html | 12 ++++++------ .../client/android/SearchBookContentsActivity.java | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index da96d028..39e985c0 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 c42205a3..b3f5a07f 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; -- 2.20.1