mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Updates for 0.6; set aside a different android-m3-home variable for android-m3 build
git-svn-id: https://zxing.googlecode.com/svn/trunk@321 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
10ce9dde67
commit
352cd6c981
19
CHANGES
19
CHANGES
|
@ -103,3 +103,22 @@
|
||||||
applications.
|
applications.
|
||||||
- "Result" object now returns raw bytes decoded; maybe useful in some cases
|
- "Result" object now returns raw bytes decoded; maybe useful in some cases
|
||||||
- More unit tests for common code, EAN-8, UPC-E
|
- More unit tests for common code, EAN-8, UPC-E
|
||||||
|
|
||||||
|
0.6 (28 Mar 2008)
|
||||||
|
- Updated android client to work on latest M5 SDK; M3-compatiable version
|
||||||
|
preserved in android-m3
|
||||||
|
- Added tel: URL support to clients
|
||||||
|
- Added geo: URL support; only enabled for Android client so far
|
||||||
|
- Added initial support for short NDEF messages, but not yet enabled
|
||||||
|
- Bug fix to corner-case of perspective transformation code
|
||||||
|
- Now attempts to configure camera's exposure controls if available
|
||||||
|
- Fixed rotation transform used in "try harder" mode; result did not
|
||||||
|
contain the whole image
|
||||||
|
- "Try harder" mode tries 2D formats first to avoid false positives
|
||||||
|
in detailed search for 1D codes, in some cases
|
||||||
|
- More aggressive inlining by ProGuard, notable performance boost
|
||||||
|
- Small Reed-Solomon optimizations for 0- and 1-error case
|
||||||
|
- Refactored GridSampler out into common package for use by Data Matrix
|
||||||
|
- GridSampler now smarter about bounds checking and point nudging;
|
||||||
|
should avoid some ArrayIndexOutOfBoundsException issues
|
||||||
|
- More unit tests
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
build.xml file. -->
|
build.xml file. -->
|
||||||
<project name="BarcodeReader" default="package">
|
<project name="BarcodeReader" default="package">
|
||||||
<property file="../build.properties"/>
|
<property file="../build.properties"/>
|
||||||
<property name="sdk-folder" value="${android-home}"/>
|
<property name="sdk-folder" value="${android-m3-home}"/>
|
||||||
<property name="android-tools" value="${sdk-folder}/tools"/>
|
<property name="android-tools" value="${sdk-folder}/tools"/>
|
||||||
|
|
||||||
<!-- The intermediates directory -->
|
<!-- The intermediates directory -->
|
||||||
|
@ -58,10 +58,10 @@
|
||||||
|
|
||||||
<target name="init">
|
<target name="init">
|
||||||
<tstamp/>
|
<tstamp/>
|
||||||
<fail message="Please set 'android-home' in build.properties">
|
<fail message="Please set 'android-m3-home' in build.properties">
|
||||||
<condition>
|
<condition>
|
||||||
<not>
|
<not>
|
||||||
<available file="${android-home}" type="dir"/>
|
<available file="${android-m3-home}" type="dir"/>
|
||||||
</not>
|
</not>
|
||||||
</condition>
|
</condition>
|
||||||
</fail>
|
</fail>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version=0.5.5
|
version=0.6
|
||||||
|
|
||||||
# Set this to a location where Sun's Wireless Toolkit, version 2.5.2 or later, has been installed
|
# Set this to a location where Sun's Wireless Toolkit, version 2.5.2 or later, has been installed
|
||||||
# Location on Linux varies but is typically under /usr/local or /usr/lib
|
# Location on Linux varies but is typically under /usr/local or /usr/lib
|
||||||
|
@ -22,7 +22,10 @@ version=0.5.5
|
||||||
|
|
||||||
# Uncomment and set appropriately
|
# Uncomment and set appropriately
|
||||||
#BB-JDK-home=C:\\Program Files\\Research In Motion\\Blackberry JDE 4.3.0
|
#BB-JDK-home=C:\\Program Files\\Research In Motion\\Blackberry JDE 4.3.0
|
||||||
#BB-JDK-home=bb-home
|
#BB-JDK-home=/usr/local/bb-home
|
||||||
|
|
||||||
# Set this to the location where you installed the Android SDK.
|
# Set this to the location where you installed the Android SDK.
|
||||||
#android-home=/usr/local/android
|
#android-home=/usr/local/android
|
||||||
|
|
||||||
|
# Set this to the location of an M3 Android SDK, if you are building the M3 version
|
||||||
|
#android-m3-home=/usr/local/android
|
Loading…
Reference in a new issue