mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
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:
parent
dc81d74e9f
commit
73063a9f20
|
@ -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="3.21"
|
||||
android:versionCode="47">
|
||||
android:versionName="3.22"
|
||||
android:versionCode="48">
|
||||
<!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. -->
|
||||
<uses-sdk android:minSdkVersion="3"
|
||||
android:targetSdkVersion="4"/>
|
||||
|
|
|
@ -3,8 +3,14 @@
|
|||
<body>
|
||||
<link rel="StyleSheet" href="style.css" type="text/css">
|
||||
<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>
|
||||
<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>
|
||||
</ul>
|
||||
<p>New in version 3.2:</p>
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<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_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_contents_failed">Could not encode a barcode from the data provided.</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_play_beep_title">Beep</string>
|
||||
<string name="preferences_vibrate_title">Vibrate</string>
|
||||
<string name="preferences_front_light_title">Front light</string>
|
||||
<string name="preferences_front_light_summary">Enable front light, if available</string>
|
||||
<string name="preferences_front_light_title">Use front light</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_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>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
android:title="@string/preferences_decode_QR_title"/>
|
||||
<CheckBoxPreference
|
||||
android:key="preferences_front_light"
|
||||
android:defaultValue="true"
|
||||
android:defaultValue="false"
|
||||
android:title="@string/preferences_front_light_title"
|
||||
android:summary="@string/preferences_front_light_summary"/>
|
||||
</PreferenceCategory>
|
||||
|
|
Loading…
Reference in a new issue