mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Changes to create Barcode Scanner 2.6 beta 1.
git-svn-id: https://zxing.googlecode.com/svn/trunk@882 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
5b5c7945bb
commit
824121f0de
|
@ -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. -->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.zxing.client.android"
|
||||
android:versionName="2.5"
|
||||
android:versionCode="11">
|
||||
android:versionName="2.6b1"
|
||||
android:versionCode="12">
|
||||
<application android:icon="@drawable/launcher_icon"
|
||||
android:label="@string/app_name">
|
||||
<activity android:name=".CaptureActivity"
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
<body>
|
||||
<link rel="StyleSheet" href="style.css" type="text/css">
|
||||
<h3><center>What's new in this version</center></h3>
|
||||
<p>New in version 2.5:</p>
|
||||
<p>New in version 2.6:</p>
|
||||
<ul>
|
||||
<li>New options to vibrate and copy contents to the clipboard when a barcode is found.</li>
|
||||
<li>Better parsing and compatibility with the contents of QR Codes.</li>
|
||||
<li>Fixed a crash when scanning a QR Code of an SMS message with a question mark in it.</li>
|
||||
<li>Fixed a crash with QR Codes which encode geo: coordinates.</li>
|
||||
<li>More robust QR Codes detection and decoding.</li>
|
||||
<li>Added support for ITF format barcodes.</li>
|
||||
<li>Fixed a bug where some URLs would be misinterpreted as email addresses.</li>
|
||||
<li>Added support for uppercase URIs like TEL: and GEO:.</li>
|
||||
<li>Prevented Barcode Scanner from crashing when launching an unhandled intent.</li>
|
||||
<li>Added the version to the about box.</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue