Final changes for Barcode Scanner 3.22.

git-svn-id: https://zxing.googlecode.com/svn/trunk@1263 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin 2010-03-29 17:40:53 +00:00
parent dc81d74e9f
commit 73063a9f20
4 changed files with 12 additions and 6 deletions

View file

@ -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. --> versionName is 2.31, 2.4, or 3.0. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.zxing.client.android" package="com.google.zxing.client.android"
android:versionName="3.21" android:versionName="3.22"
android:versionCode="47"> android:versionCode="48">
<!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. --> <!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. -->
<uses-sdk android:minSdkVersion="3" <uses-sdk android:minSdkVersion="3"
android:targetSdkVersion="4"/> android:targetSdkVersion="4"/>

View file

@ -3,8 +3,14 @@
<body> <body>
<link rel="StyleSheet" href="style.css" type="text/css"> <link rel="StyleSheet" href="style.css" type="text/css">
<h3><center>What's new in this version</center></h3> <h3><center>What's new in this version</center></h3>
<p>New in version 3.22:</p>
<ul>
<li>Turned off the flashlight by default and added an option to enable it.</li>
<li>Added Hungarian translation.</li>
</ul>
<p>New in version 3.21:</p> <p>New in version 3.21:</p>
<ul> <ul>
<li>Turned on the flashlight on some devices to help low-light scanning.</li>
<li>Fixed a bug with detecting camera resolutions on some devices.</li> <li>Fixed a bug with detecting camera resolutions on some devices.</li>
</ul> </ul>
<p>New in version 3.2:</p> <p>New in version 3.2:</p>

View file

@ -64,7 +64,7 @@
<string name="msg_default_mms_subject">Hi</string> <string name="msg_default_mms_subject">Hi</string>
<string name="msg_default_status">Place a barcode inside the viewfinder rectangle to scan it.</string> <string name="msg_default_status">Place a barcode inside the viewfinder rectangle to scan it.</string>
<string name="msg_default_type">Type</string> <string name="msg_default_type">Type</string>
<string name="msg_default_time">Time</string> <string name="msg_default_time">Time</string>
<string name="msg_encode_barcode_failed">Could not generate the requested barcode.</string> <string name="msg_encode_barcode_failed">Could not generate the requested barcode.</string>
<string name="msg_encode_contents_failed">Could not encode a barcode from the data provided.</string> <string name="msg_encode_contents_failed">Could not encode a barcode from the data provided.</string>
<string name="msg_encode_in_progress">Generating a barcode\u2026</string> <string name="msg_encode_in_progress">Generating a barcode\u2026</string>
@ -90,8 +90,8 @@
<string name="preferences_name">Settings</string> <string name="preferences_name">Settings</string>
<string name="preferences_play_beep_title">Beep</string> <string name="preferences_play_beep_title">Beep</string>
<string name="preferences_vibrate_title">Vibrate</string> <string name="preferences_vibrate_title">Vibrate</string>
<string name="preferences_front_light_title">Front light</string> <string name="preferences_front_light_title">Use front light</string>
<string name="preferences_front_light_summary">Enable front light, if available</string> <string name="preferences_front_light_summary">Improves scanning in low light on some phones, but may cause glare</string>
<string name="preferences_result_title">Result settings</string> <string name="preferences_result_title">Result settings</string>
<string name="preferences_custom_product_search_title">Custom search URL</string> <string name="preferences_custom_product_search_title">Custom search URL</string>
<string name="preferences_custom_product_search_summary">Use %s as a placeholder for the product ID</string> <string name="preferences_custom_product_search_summary">Use %s as a placeholder for the product ID</string>

View file

@ -26,7 +26,7 @@
android:title="@string/preferences_decode_QR_title"/> android:title="@string/preferences_decode_QR_title"/>
<CheckBoxPreference <CheckBoxPreference
android:key="preferences_front_light" android:key="preferences_front_light"
android:defaultValue="true" android:defaultValue="false"
android:title="@string/preferences_front_light_title" android:title="@string/preferences_front_light_title"
android:summary="@string/preferences_front_light_summary"/> android:summary="@string/preferences_front_light_summary"/>
</PreferenceCategory> </PreferenceCategory>