NEWS updated.

replaced a bash specific construct in acinclude.m4


git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1194 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
jochen 25 years ago
parent 8fc12f679e
commit b2783d0d69
  1. 25
      jode/NEWS
  2. 3
      jode/acinclude.m4

@ -1,9 +1,24 @@
1.0.90 is a prerelease..
* First version using configure. Jode can now be almost automatically
New in 1.0.93
* anonymous and inner class decompilation reworked.
* replaced a bash specific construct in acinclude.m4
- better memory usage in decompiler
- fixed a bug in ConstantAnalyzer (produced wrong code)
- swingui also uses getopt.
- web pages updated.
- javadoc api added.
New in 1.0.92
* option --pretty works again
* web pages updated
* swingui can show class hierarchie
* KeywordRenamer added to obfuscator.
New in 1.0.91:
* first version using configure. Jode can now be almost automatically
build, see INSTALL for instructions.
* The decompiler can handler inner and anoymous classes.
* You now need the gnu getopt package.
* You need JDK 1.2 or alternatively the swing and collection packages
* the decompiler can handler inner and anoymous classes.
* you now need the gnu getopt package.
* you need JDK 1.2 or alternatively the swing and collection packages
for 1.1

@ -25,14 +25,13 @@ AC_DEFUN(JODE_CHECK_CLASS,
[
if (IFS=":"
clazz=`echo $1 | sed -e 's/\./\//g' -e 's/\(.*\)/\1.class/'`
jode_found=0
myclasspath=$2;
for path in $myclasspath; do
if test -d $path; then
if test -e $path/$clazz; then
exit 0
fi
elif $UNZIP -v -C `$SUBSTCP $path` $clazz &>/dev/null ; then
elif $UNZIP -v -C `$SUBSTCP $path` $clazz >/dev/null 2>&1 ; then
exit 0
fi
done;

Loading…
Cancel
Save