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. -->
|
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"/>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue