Changes to create Barcode Scanner 2.6 beta 1.
authordswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 9 Mar 2009 20:06:14 +0000 (20:06 +0000)
committerdswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Mon, 9 Mar 2009 20:06:14 +0000 (20:06 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@882 59b500cc-1b3d-0410-9834-0bbf25fbcc57

android/AndroidManifest.xml
android/assets/html/whatsnew.html
android/src/com/google/zxing/client/android/SearchBookContentsActivity.java

index da96d02..39e985c 100755 (executable)
@@ -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"
index f9f8c83..36fcae3 100644 (file)
@@ -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>
\ No newline at end of file
index c42205a..b3f5a07 100644 (file)
@@ -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;