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
- Now builds with class file format version 1.2 -- may solve some compatibility issues?
- 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
# 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="javase" target="build"/>
</target>
<target name="buildwithoutj2me">
<ant dir="core" target="build"/>
<ant dir="javase" target="build"/>
</target>
<target name="clean">
<ant dir="core" target="clean"/>
@ -37,7 +32,11 @@
<ant dir="javase" target="clean"/>
</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">
<zipfileset dir="." prefix="zxing-${version}">
<include name="COPYING"/>
@ -48,6 +47,8 @@
<include name="core/**"/>
<include name="javame/**"/>
<include name="javase/**"/>
<!-- Only include the build script for now -->
<include name="rim/build.xml"/>
<include name="docs/**"/>
<exclude name="*.iml"/>
</zipfileset>
@ -56,7 +57,7 @@
<target name="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>
<pathelement location="core/src"/>
<pathelement location="javame/src"/>