Misc. small updates for 0.1.4

git-svn-id: https://zxing.googlecode.com/svn/trunk@117 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2007-12-13 22:34:38 +00:00
parent 0eff866ec0
commit 17f54acbdf
3 changed files with 17 additions and 8 deletions

View file

@ -15,3 +15,11 @@
- Added EAN-13 support - Added EAN-13 support
- Now builds with class file format version 1.2 -- may solve some compatibility issues? - Now builds with class file format version 1.2 -- may solve some compatibility issues?
- Fixed obfuscation step bug causing NoClassDefFoundError - Fixed obfuscation step bug causing NoClassDefFoundError
0.1.4 (13 Dec 2007)
- Added Blackberry client build script -- does not yet work
- Big change to handling of content of barcodes:
- com.google.zxing.client.result moved from core-ext to core
- Rewritten for J2ME
- core-ext removed
- J2ME client now uses this code for better parsing/handling of results

View file

@ -1,4 +1,4 @@
version=0.1.3 version=0.1.4
# 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

View file

@ -25,11 +25,6 @@
<ant dir="javame" target="build"/> <ant dir="javame" target="build"/>
<ant dir="javase" target="build"/> <ant dir="javase" target="build"/>
</target> </target>
<target name="buildwithoutj2me">
<ant dir="core" target="build"/>
<ant dir="javase" target="build"/>
</target>
<target name="clean"> <target name="clean">
<ant dir="core" target="clean"/> <ant dir="core" target="clean"/>
@ -37,7 +32,11 @@
<ant dir="javase" target="clean"/> <ant dir="javase" target="clean"/>
</target> </target>
<target name="release" depends="build,clean"> <target name="test">
<ant dir="core" target="test"/>
</target>
<target name="release" depends="build,clean,javadoc">
<zip file="ZXing-${version}.zip" level="9"> <zip file="ZXing-${version}.zip" level="9">
<zipfileset dir="." prefix="zxing-${version}"> <zipfileset dir="." prefix="zxing-${version}">
<include name="COPYING"/> <include name="COPYING"/>
@ -48,6 +47,8 @@
<include name="core/**"/> <include name="core/**"/>
<include name="javame/**"/> <include name="javame/**"/>
<include name="javase/**"/> <include name="javase/**"/>
<!-- Only include the build script for now -->
<include name="rim/build.xml"/>
<include name="docs/**"/> <include name="docs/**"/>
<exclude name="*.iml"/> <exclude name="*.iml"/>
</zipfileset> </zipfileset>
@ -56,7 +57,7 @@
<target name="javadoc"> <target name="javadoc">
<mkdir dir="docs/javadoc"/> <mkdir dir="docs/javadoc"/>
<javadoc destdir="docs/javadoc" footer="&lt;script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;_uacct = &quot;UA-788492-4&quot;; urchinTracker();&lt;/script&gt;"> <javadoc destdir="docs/javadoc" footer="&lt;script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;_uacct = &quot;UA-788492-5&quot;; urchinTracker();&lt;/script&gt;">
<sourcepath> <sourcepath>
<pathelement location="core/src"/> <pathelement location="core/src"/>
<pathelement location="javame/src"/> <pathelement location="javame/src"/>