Home | History | Annotate | Download | only in docs
      1 
      2 <!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
      3 <html>
      4 <head>
      5 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
      6 <meta http-equiv="content-style-type" content="text/css">
      7 <link rel="stylesheet" type="text/css" href="style.css">
      8 <title>ProGuard Downloads</title>
      9 <script type="text/javascript" language="JavaScript">
     10 <!--
     11 if (window.self==window.top)
     12   window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
     13 else {
     14   var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
     15   if (window.top.location.hash!=hash)
     16     window.top.location.hash=hash;
     17 }
     18 //-->
     19 </script>
     20 </head>
     21 <body>
     22 
     23 <h2>Downloads</h2>
     24 
     25 <b>ProGuard</b> is distributed under the terms of the GNU General Public
     26 License. Please consult the <a href="license.html">license page</a> for more
     27 details.
     28 <p>
     29 <b>ProGuard</b> is written in Java, so it requires a Java Runtime Environment
     30    (JRE 1.4 or higher).
     31 <p>
     32 You can download the latest release (containing the program jar, the
     33 documentation you're reading now, examples, and the source code) from this
     34 location:
     35 <p>
     36 <center><a href="http://sourceforge.net/project/showfiles.php?group_id=54750"
     37 target="other">Download section</a> (at <a
     38 href="http://sourceforge.net/projects/proguard/"
     39 target="other">SourceForge</a>)</center>
     40 <p>
     41 
     42 If you're still working with an older version of <b>ProGuard</b>, check out
     43 the summary of changes below, to see if you're missing something essential.
     44 Better look at the up-to-date <a
     45 href="http://proguard.sourceforge.net/downloads.html">on-line version</a> if
     46 you're reading a local copy of this page.
     47 <p>
     48 The download section may also contain updates with sub-minor version numbers.
     49 These versions are typically released shortly after their parent versions, for
     50 applying emergency fixes. Please make sure to look at those if you are
     51 encountering any problems with recent releases.
     52 <p>
     53 Finally, there may be beta versions of upcoming releases. They may be of
     54 interest too, because they typically contain any less urgent bug fixes
     55 collected since the previous release.
     56 <p>
     57 
     58 <h3><div>Dec 2011</div> Version 4.7</h3>
     59 <ul>
     60 <li>Added support for Java 7.
     61 <li>Parsing unquoted file names with special characters more leniently.
     62 <li>Added support for instance methods overriding class methods.
     63 <li>Added removal of unused parameterless constructors.
     64 <li>Added removal of empty class initializers.
     65 <li>Added peephole optimizations for constant strings.
     66 <li>Avoiding idle optimization passes.
     67 <li>Improved removal of unused constants after obfuscation.
     68 <li>Fixed removal of unused classes referenced by annotations.
     69 <li>Fixed simplifying parameters of constructors that should actually be
     70     preserved.
     71 <li>Fixed simplifying parameters of large numbers of similar constructors.
     72 <li>Fixed exceptions in optimization of unusual obfuscated code.
     73 <li>Fixed NullPointerException when specifying <code>-keepclassmembers</code>
     74     without specific class or class members.
     75 <li>Fixed potential problems with mixed-case class name dictionaries when not
     76     allowing mixed-case class names.
     77 <li>Fixed obfuscation of classes with EnclosingMethod attributes that don't
     78     specify methods.
     79 <li>Fixed preverification of returning try blocks with finally blocks, inside
     80     try blocks, when compiled with JDK 1.4.
     81 <li>Fixed sorting of interfaces containing generics.
     82 <li>Fixed paths in shell scripts.
     83 <li>Fixed filling in of text fields showing class obfuscation dictionary and
     84     package obfuscation dictionary from configuration in GUI.
     85 <li>Worked around Oracle Java 6/7 bug #7027598 that locked the GUI on Linux.
     86 <li>Updated documentation and examples.
     87 </ul>
     88 
     89 <h3><div>Feb 2011</div> Version 4.6</h3>
     90 <ul>
     91 <li>Added support for synthetic, bridge, and varargs modifiers in configuration.
     92 <li>Added detection of atomic updater construction with constant arguments.
     93 <li>Fixed merging of package visible classes.
     94 <li>Fixed optimization of fields that are only accessed by reflection.
     95 <li>Fixed optimization of read-only or write-only fields that are volatile.
     96 <li>Fixed handling of side-effects due to static initializers.
     97 <li>Fixed handling of bridge flags in obfuscation step.
     98 <li>Fixed handling of super flag when merging classes.
     99 <li>Fixed updating of variable tables when optimizing variables.
    100 <li>Fixed removal of unused parameters with 32 or more parameters.
    101 <li>Fixed incorrect removal of exception handler for instanceof instruction.
    102 <li>Fixed inlining of methods with unusual exception handlers.
    103 <li>Fixed optimization of unusual code causing stack underflow.
    104 <li>Fixed keeping of constructor parameter names.
    105 <li>Fixed unwanted wrapping of non-standard META-INF files.
    106 <li>Fixed filtering of warnings about references to array types.
    107 <li>Fixed overriding of warning option and note option in Ant task.
    108 <li>Improved detection of file name extensions for canonical paths.
    109 <li>Improved printing of seeds specified by <code>-keep</code> options.
    110 <li>Improved printing of notes about unkept classes.
    111 <li>Improved checking whether output is up to date.
    112 <li>Updated documentation and examples.
    113 </ul>
    114 
    115 <h3><div>Jun 2010</div> Version 4.5</h3>
    116 <ul>
    117 <li>Added option <code>-keepparameternames</code>.
    118 <li><code>-dontskipnonpubliclibraryclasses</code> is now set by default. Added
    119     <code>-skipnonpubliclibraryclasses</code> as an option.
    120 <li>Made processing independent of order of input classes to get even more
    121     deterministic output.
    122 <li>Improved constant field propagation.
    123 <li>Improved renaming of resource files in subdirectories of packages.
    124 <li>Avoiding making fields in interfaces private.
    125 <li>Optimizing exception handlers for monitorexit instruction.
    126 <li>Reduced maximum allowed code length after inlining from 8000 bytes to
    127     7000 bytes.
    128 <li>Fixed missing warnings about missing library classes.
    129 <li>Fixed shrinking of annotations with arrays of length 0.
    130 <li>Fixed handling of -0.0 and NaN values when simplifying expressions.
    131 <li>Fixed copying of exception handlers when simplifying tail recursion calls.
    132 <li>Fixed optimization of introspected fields.
    133 <li>Fixed simplification of unnecessary variable initializations.
    134 <li>Fixed evaluation of subroutines in pre-JDK 1.5 code.
    135 <li>Fixed updating of access flags in inner classes information.
    136 <li>Fixed disabling of field privatization.
    137 <li>Fixed invocations of privatized methods.
    138 <li>Fixed updating of local variable debug information in optimization step.
    139 <li>Fixed print settings without file name in GUI.
    140 <li>Fixed field privatization setting in GUI.
    141 <li>Fixed saving incorrectly quoted arguments in GUI.
    142 <li>Fixed handling of regular expressions with only negators.
    143 <li>Fixed unwanted wrapping of non-standard META-INF files.
    144 <li>Fixed regular expression pattern for constructors in ReTrace.
    145 <li>Updated documentation and examples.
    146 </ul>
    147 
    148 <h3><div>Jul 2009</div> Version 4.4</h3>
    149 <ul>
    150 <li>Added new peephole optimizations.
    151 <li>Added option <code>-optimizations</code> for fine-grained configuration of
    152     optimizations.
    153 <li>Added option <code>-adaptclassstrings</code> for adapting string constants
    154     that correspond to obfuscated classes.
    155 <li>Added option <code>-keeppackagenames</code> for keeping specified package
    156     names from being obfuscated.
    157 <li>Added option <code>-keepdirectories</code> for keeping specified directory
    158     entries in output jars.
    159 <li>Extended options <code>-dontnote</code> and <code>-dontwarn</code> for
    160     fine-grained configuration of notes and warnings. 
    161 <li>Added option <code>-regex</code> in ReTrace, for specifying alternative
    162     regular expressions to parse stack traces.
    163 <li>Extended renaming of resource files based on obfuscation.
    164 <li>Improved inlining of constant parameters and removal of unused parameters.
    165 <li>Avoiding bug in IBM's JVM for JSE, in optimization step.
    166 <li>Avoiding ArrayIndexOutOfBoundsException in optimization step.
    167 <li>Fixed configuration with annotations that are not preserved themselves.
    168 <li>Fixed preverification of invocations of super constructors with arguments
    169     containing ternary operators.
    170 <li>Fixed processing of unreachable exception handlers.
    171 <li>Fixed merging of exception classes.
    172 <li>Fixed repeated method inlining.
    173 <li>Fixed inlining of finally blocks surrounded by large try blocks, compiled
    174     with JDK 1.4 or earlier.
    175 <li>Fixed optimization of complex finally blocks, compiled with JDK 1.4 or
    176     earlier.
    177 <li>Fixed obfuscation of anonymous class names, if <code>EnclosingMethod</code>
    178     attributes are being kept.
    179 <li>Fixed obfuscation of inner class names in generic types.
    180 <li>Fixed decoding of UTF-8 strings containing special characters.
    181 <li>Fixed copying of debug information and annotations when merging classes.
    182 <li>Fixed writing out of unknown attributes.
    183 <li>Fixed updating manifest files with split lines.
    184 <li>Updated documentation and examples.
    185 </ul>
    186 
    187 <h3><div>Dec 2008</div> Version 4.3</h3>
    188 <ul>
    189 <li>Added class merging.
    190 <li>Added static single assignment analysis.
    191 <li>Added support for annotation and enumeration class types in configuration.
    192 <li>Refined shrinking of fields in case of unusual
    193     <code>-keepclassmembers</code> options.
    194 <li>Added simplification of tail recursion calls.
    195 <li>Added new peephole optimizations.
    196 <li>Fixed optimization of unused variable initializations causing negative
    197     stack sizes.
    198 <li>Fixed optimization of unusual initialization code causing
    199     NullPointerExceptions.
    200 <li>Fixed optimization of half-used long and double parameters.
    201 <li>Fixed processing of complex generics signatures.
    202 <li>Working around suspected java compiler bug with parameter annotations on
    203     constructors of non-static inner classes.
    204 <li>Fixed obfuscation of classes with inner classes whose names are preserved.
    205 <li>Fixed access of protected methods in repackaged classes.
    206 <li>Added options <code>-classobfuscationdictionary</code> and
    207     <code>-packageobfuscationdictionary</code>.
    208 <li>Adapting more types of resource file names based on obfuscation.
    209 <li>Extended warnings about incorrect dependencies.
    210 <li>Added start-up scripts and build scripts.
    211 <li>Updated documentation and examples.
    212 </ul>
    213 
    214 <h3><div>Mar 2008</div> Version 4.2</h3>
    215 <ul>
    216 <li>Refined data flow analysis in optimization step.
    217 <li>Fixed handling of exceptions when inlining subroutines.
    218 <li>Fixed inlining of incompatible code constructs between different java
    219     versions.
    220 <li>Fixed computation of local variable frame size.
    221 <li>Fixed optimization of infinite loops.
    222 <li>Fixed optimization of subroutine invocations.
    223 <li>Fixed optimization of floating point remainder computations.
    224 <li>Fixed removal of unused parameters in method descriptors containing arrays
    225     of longs or doubles.
    226 <li>Added undocumented java system properties
    227     <code>maximum.inlined.code.length</code> (default is 8) and
    228     <code>maximum.resulting.code.length</code> (defaults are 8000 for JSE and
    229     2000 for JME), for expert users who read release notes.
    230 <li>Fixed processing of generic types in Signature attributes in shrinking and
    231     optimization steps.
    232 <li>Fixed processing of inner class names in Signature attributes in obfuscation
    233     step.
    234 <li>Improved adapting resource file names following obfuscated class names.
    235 <li>Fixed interpretation of package names in GUI.
    236 <li>Fixed default settings for Xlets in GUI.
    237 <li>Updated documentation and examples.
    238 </ul>
    239 
    240 <h3><div>Dec 2007</div> Version 4.1</h3>
    241 <ul>
    242 <li>Fixed shrinking of default annotation element values.
    243 <li>Fixed optimization of invocations of methods in same class that are
    244     accessed through extensions.
    245 <li>Fixed optimization of invocations of synchronized methods without other
    246     side-effects.
    247 <li>Fixed optimization of some non-returning subroutines.
    248 <li>Fixed handling of local variable debug information when inlining methods.
    249 <li>Avoiding StackOverflowErrors during optimization of complex methods.
    250 <li>Fixed obfuscation of potentially ambiguous non-primitive constants in
    251     interfaces.
    252 <li>Fixed preverification of some code constructs involving String, Class, and
    253     exception types.
    254 <li>The Ant task now allows empty <code>&lt;injars&gt;</code> and
    255     <code>&lt;libraryjars&gt;</code> elements.
    256 <li>Updated documentation and examples.
    257 </ul>
    258 
    259 <h3><div>Sep 2007</div> Version 4.0</h3>
    260 <ul>
    261 <li>Added preverifier for Java 6 and Java Micro Edition, with new options
    262     <code>-microedition</code> and <code>-dontpreverify</code>.
    263 <li>Added new option <code>-target</code> to modify java version of processed
    264     class files.
    265 <li>Made <code>-keep</code> options more orthogonal and flexible, with option
    266     modifiers <code>allowshrinking</code>, <code>allowoptimization</code>, and
    267     <code>allowobfuscation</code>.
    268 <li>Added new wildcards for class member descriptors: "<code>***</code>",
    269     matching any type, and "<code>...</code>", matching any number of
    270     arguments.
    271 <li>Added support for configuration by means of annotations.
    272 <li>Improved shrinking of unused annotations.
    273 <li>Added check on modification times of input and output, to avoid unnecessary
    274     processing, with new option <code>-forceprocessing</code>.
    275 <li>Added new options <code>-flattenpackagehierarchy</code> and
    276     <code>-repackageclasses</code> (replacing <code>-defaultpackage</code>) to
    277     control obfuscation of package names.
    278 <li>Added new options <code>-adaptresourcefilenames</code> and
    279     <code>-adaptresourcefilecontents</code>, with file filters, to update
    280     resource files corresponding to obfuscated class names.
    281 <li>Added detection of dynamically accessed fields and methods.
    282 <li>Now treating <code>Exceptions</code> attributes as optional.
    283 <li>Now respecting naming rule for nested class names
    284     (<code>EnclosingClass$InnerClass</code>) in obfuscation step, if
    285     <code>InnerClasses</code> attributes or <code>EnclosingMethod</code>
    286     attributes are being kept.
    287 <li>Added new inter-procedural optimizations: method inlining and propagation
    288     of constant fields, constant arguments, and constant return values.
    289 <li>Added optimized local variable allocation.
    290 <li>Added more than 250 new peephole optimizations.
    291 <li>Improved making classes and class members public or protected.
    292 <li>Now printing notes on suspiciously unkept classes in parameters of
    293     specified methods.
    294 <li>Now printing notes for class names that don't seem to be fully qualified.
    295 <li>Added support for uppercase filename extensions.
    296 <li>Added tool tips to the GUI.
    297 <li>Rewritten class file I/O code.
    298 <li>Updated documentation and examples.
    299 </ul>
    300 Upgrade considerations:
    301 <ul>
    302 
    303 <li>Since ProGuard now treats the <code>Exceptions</code> attribute as
    304     optional, you may have to specify <code>-keepattributes Exceptions</code>,
    305     notably when processing code that is to be used as a library.
    306 
    307 <li>ProGuard now preverifies code for Java Micro Edition, if you specify the
    308     option <code>-microedition</code>. You then no longer need to process the
    309     code with an external preverifier.
    310 
    311 <li>You should preferably specify <code>-repackageclasses</code> instead of the
    312     old option name <code>-defaultpackage</code>.
    313 </ul>
    314 
    315 <h3><div>Dec 2007</div> Version 3.11</h3>
    316 <ul>
    317 <li>Fixed optimization of invocations of methods in same class that are
    318     accessed through extensions.
    319 <li>Fixed optimization of invocations of synchronized methods without other
    320     side-effects.
    321 <li>Updated documentation and examples.
    322 </ul>
    323 
    324 <h3><div>Aug 2007</div> Version 3.10</h3>
    325 <ul>
    326 <li>Now handling mixed-case input class names when
    327     <code>-dontusemixedcaseclassnames</code> is specified.
    328 <li>Fixed optimization of synchronization on classes, as compiled by Eclipse
    329     and Jikes.
    330 <li>Fixed optimization of switch statements with unreachable cases.
    331 <li>Avoiding merging subsequent identically named files.
    332 <li>Updated documentation and examples.
    333 </ul>
    334 
    335 <h3><div>Jun 2007</div> Version 3.9</h3>
    336 <ul>
    337 <li>Fixed processing of .class constructs in Java 6.
    338 <li>Fixed repeated processing of .class constructs.
    339 <li>Fixed possible division by 0 in optimization step.
    340 <li>Fixed handling of variable instructions with variable indices larger than
    341     255.
    342 <li>Updated documentation and examples.
    343 </ul>
    344 
    345 <h3><div>Mar 2007</div> Version 3.8</h3>
    346 <ul>
    347 <li>Fixed optimization of parameters used as local variables.
    348 <li>Fixed obfuscation with conflicting class member names.
    349 <li>Fixed incremental obfuscation with incomplete mapping file for library jars.
    350 <li>Updated documentation and examples.
    351 </ul>
    352 
    353 <h3><div>Dec 2006</div> Version 3.7</h3>
    354 <ul>
    355 <li>Now accepting Java 6 class files.
    356 <li>Fixed shrinking of partially used annotations.
    357 <li>Improved incremental obfuscation, with new option
    358     <code>-useuniqueclassmembernames</code>.
    359 <li>Printing more information in case of conflicting configuration and input.
    360 <li>Fixed optimization of repeated array length instruction.
    361 <li>Fixed optimization of subsequent try/catch/finally blocks with return
    362     statements.
    363 <li>Fixed optimization of complex stack operations.
    364 <li>Fixed optimization of simple infinite loops.
    365 <li>Fixed optimization of expressions with constant doubles.
    366 <li>Tuned optimization to improve size reduction after preverification.
    367 <li>Fixed overflows of offsets in long code blocks.
    368 <li>Now allowing class names containing dashes.
    369 <li>Updated documentation and examples.
    370 </ul>
    371 
    372 <h3><div>May 2006</div> Version 3.6</h3>
    373 <ul>
    374 <li>No longer automatically keeping classes in parameters of specified methods
    375     from obfuscation and optimization (introduced in version 3.4).
    376 <li>Fixed inlining of interfaces that are used in .class constructs.
    377 <li>Fixed removal of busy-waiting loops reading volatile fields.
    378 <li>Fixed optimization of comparisons of known integers.
    379 <li>Fixed optimization of known branches.
    380 <li>Fixed optimization of method calls on arrays of interfaces.
    381 <li>Fixed optimization of method calls without side-effects.
    382 <li>Fixed optimization of nested try/catch/finally blocks with return
    383     statements.
    384 <li>Fixed initialization of library classes that only appear in descriptors.
    385 <li>Fixed matching of primitive type wildcards in configuration.
    386 <li>Fixed the boilerplate specification for enumerations in the GUI.
    387 <li>Updated documentation and examples.
    388 </ul>
    389 
    390 <h3><div>Jan 2006</div> Version 3.5</h3>
    391 <ul>
    392 <li>Fixed obfuscation of class members with complex visibility.
    393 <li>Fixed optimization bugs causing stack verification errors.
    394 <li>Fixed optimization bug causing overridden methods to be finalized.
    395 <li>Fixed optimization bug causing abstract method errors for retro-fitted
    396     library methods.
    397 <li>Fixed optimization bug evaluating code with constant long values.
    398 <li>Fixed bug in updating of optional local variable table attributes and local
    399     variable type table attributes after optimization.
    400 <li>Fixed interpretation of comma-separated class names without wildcards.
    401 <li>Updated documentation and examples.
    402 </ul>
    403 
    404 <h3><div>Oct 2005</div> Version 3.4</h3>
    405 <ul>
    406 <li>Extended optimizations: removing duplicate code within methods.
    407 <li>Extended regular expressions for class names to comma-separated lists.
    408 <li>Now automatically keeping classes in descriptors of kept class members.
    409 <li>Added verbose statistics for optimizations.
    410 <li>Added boilerplate Number optimizations in GUI.
    411 <li>Fixed <code>Class.forName</code> detection.
    412 <li>Fixed incremental obfuscation bug.
    413 <li>Fixed optimization bug causing stack verification errors.
    414 <li>Fixed optimization bugs related to removal of unused parameters.
    415 <li>Fixed exception when optimizing code with many local variables.
    416 <li>Fixed exception when saving configuration with initializers in GUI.
    417 <li>Updated documentation and examples.
    418 </ul>
    419 
    420 <h3><div>Jun 2005</div> Version 3.3</h3>
    421 <ul>
    422 <li>Extended optimizations: making methods private and static when possible,
    423     making classes static when possible, removing unused parameters.
    424 <li>Made file names relative to the configuration files in which they are
    425     specified. Added <code>-basedirectory</code> option.
    426 <li>Added <code>-whyareyoukeeping</code> option to get details on why given
    427     classes and class members are being kept.
    428 <li>Added warnings for misplaced class files.
    429 <li>Improved printing of notes for <code>Class.forName</code> constructs.
    430 <li>Implemented '<code>assumenosideeffects</code>' nested element in Ant task.
    431 <li>Improved processing of annotations.
    432 <li>Fixed reading and writing of parameter annotations.
    433 <li>Fixed various optimization bugs.
    434 <li>Fixed wildcards not matching '-' character.
    435 <li>Fixed wildcard bug and checkbox bugs in GUI.
    436 <li>Setting file chooser defaults in GUI.
    437 <li>Leaving room for growBox in GUI on Mac OS X.
    438 <li>Properly closing configuration files.
    439 <li>Updated documentation and examples.
    440 </ul>
    441 
    442 <h3><div>Dec 2004</div> Version 3.2</h3>
    443 <ul>
    444 <li>Fixed JDK5.0 processing bugs.
    445 <li>Fixed optimization bugs.
    446 <li>Fixed relative paths in Ant task.
    447 <li>Improved speed of shrinking step.
    448 <li>Updated documentation and examples.
    449 </ul>
    450 
    451 <h3><div>Nov 2004</div> Version 3.1</h3>
    452 <ul>
    453 <li>Improved obfuscation and shrinking of private class members.
    454 <li>Added inlining of interfaces with single implementations.
    455 <li>Added option to specify obfuscation dictionary.
    456 <li>Added option to read package visible library class members.
    457 <li>Extended support for JDK5.0 attributes.
    458 <li>Fixed various optimization bugs.
    459 <li>Modified Ant task to accept paths instead of filesets.
    460 <li>Fixed two Ant task bugs.
    461 <li>Updated documentation and examples.
    462 </ul>
    463 
    464 <h3><div>Aug 2004</div> Version 3.0</h3>
    465 <ul>
    466 <li>Added bytecode optimization step, between shrinking step and obfuscation
    467     step.
    468 <li>Generalized filtered recursive reading and writing of jars, wars, ears,
    469     zips, and directories.
    470 <li>Added support for grouping input and output jars, wars, ears, zips, and
    471     directories.
    472 <li>Added support for applying mapping files to library classes.
    473 <li>Removed <code>-resourcejars</code> option. Resources should now be read
    474     using regular <code>-injars</code> options, using filters if necessary.
    475 <li>Rewrote Ant task. Input and output modification dates are not checked at
    476     the moment. Minor changes in XML schema:
    477     <ul>
    478     <li>Filters now specified using attributes.
    479     <li>'<code>outjars</code>' now nested element instead of attribute.
    480     <li>'<code>type</code>' attribute of <code>&lt;method&gt;</code> element no
    481         longer defaults to '<code>void</code>'.
    482     <li><code>&lt;</code> and <code>&gt;</code> characters now have to be
    483         encoded in embedded configurations.
    484     <li><code>&lt;proguardconfiguration&gt;</code> task no longer accepts
    485         attributes.
    486     </ul>
    487 <li>Updated J2ME WTK plugin, now customizable through configuration file.
    488 <li>Updated GUI.
    489 <li>Fixed various processing bugs.
    490 <li>Fixed ReTrace parsing bugs.
    491 <li>Improved jar compression.
    492 <li>Updated documentation and examples.
    493 </ul>
    494 
    495 <h3><div>Mar 2004</div> Version 2.1</h3>
    496 <ul>
    497 <li>Added support for JDK1.5 classes.
    498 <li>Added additional wildcard for matching primitive types.
    499 <li>Added possibility to switch off notes about duplicate class definitions.
    500 <li>Fixed use of multiple filters on output jars.
    501 <li>Fixed option to keep all attributes.
    502 <li>Fixed various Ant task bugs.
    503 <li>Updated documentation and examples.
    504 </ul>
    505 
    506 <h3><div>Dec 2003</div> Version 2.0</h3>
    507 <ul>
    508 <li>Added a graphical user interface for ProGuard and ReTrace.
    509 <li>Added <code>-applymapping</code> option for incremental obfuscation.
    510 <li>Added support for filtering input and output files.
    511 <li>Added support for the J++ <code>SourceDir</code> attribute.
    512 <li>Improved detection of <code>.class</code> constructs.
    513 <li>Improved handling of misplaced manifest files.
    514 <li>Improved implementation of ReTrace.
    515 <li>Worked around String UTF-8 encoding bug affecting foreign characters.
    516 <li>Fixed exception when ignoring warnings.
    517 <li>Fixed various Ant task bugs.
    518 <li>Updated documentation and examples.
    519 </ul>
    520 
    521 <h3><div>Aug 2003</div> Version 1.7</h3>
    522 <ul>
    523 <li>Fixed various Ant task bugs.
    524 <li>Fixed ClassCastException due to explicitly used abstract classes with
    525     implicitly used interfaces targeted at JRE1.2 (the default in JDK1.4).
    526 <li>Fixed <code>-defaultpackage</code> bug for protected classes and class
    527     members.
    528 <li>Fixed ReTrace bug when retracing without line number tables.
    529 <li>Worked around zip package problems with duplicate out entries and rogue
    530     manifest files.
    531 <li>Added work-around for handling malformed legacy interface class files.
    532 <li>Updated documentation and examples.
    533 </ul>
    534 
    535 <h3><div>May 2003</div> Version 1.6</h3>
    536 <ul>
    537 <li>Added support for Ant.
    538 <li>Added support for the J2ME Wireless Toolkit.
    539 <li>Added support for reading and writing directory hierarchies.
    540 <li>Added option for specifying resource jars and directories.
    541 <li>Added support for wildcards in class member specifications.
    542 <li>Improved handling of the <code>-defaultpackage</code> option.
    543 <li>Improved stack trace parsing in ReTrace tool.
    544 <li>Fixed processing of libraries containing public as well as non-public
    545     extensions of non-public classes.
    546 <li>Fixed examples for processing libraries, midlets, and serializable code.
    547 <li>Updated documentation and examples.
    548 </ul>
    549 
    550 <h3><div>Jan 2003</div> Version 1.5</h3>
    551 <ul>
    552 <li>Fixed processing of retrofitted library interfaces.
    553 <li>Fixed processing of <code>.class</code> constructs in internal classes
    554     targeted at JRE1.2 (the default in JDK1.4).
    555 <li>Fixed <code>-dump</code> option when <code>-outjar</code> option is not
    556     present.
    557 <li>Updated documentation and examples.
    558 </ul>
    559 
    560 <h3><div>Nov 2002</div> Version 1.4</h3>
    561 <ul>
    562 <li>Now copying resource files over from the input jars to the output jar.
    563 <li>Added option to obfuscate using lower-case class names only.
    564 <li>Added better option for obfuscating native methods.
    565 <li>Added option not to ignore non-public library classes.
    566 <li>Added automatic <code>.class</code> detection for classes compiled with
    567     Jikes.
    568 <li>Updated documentation and examples.
    569 </ul>
    570 
    571 <h3><div>Sep 2002</div> Version 1.3</h3>
    572 <ul>
    573 <li>Added support for wildcards in class names.
    574 <li>Added tool to de-obfuscate stack traces.
    575 <li>Added options to print processing information to files.
    576 <li>Added option to rename source file attributes.
    577 <li>Fixed processing of implicitly used interfaces targeted at JRE1.2 (the
    578     default in JDK1.4)
    579 <li>Fixed processing of configurations with negated access modifiers.
    580 <li>Fixed duplicate class entry bug.
    581 <li>Updated documentation and examples.
    582 </ul>
    583 
    584 <h3><div>Aug 2002</div> Version 1.2</h3>
    585 <ul>
    586 <li>Improved speed.
    587 <li>Fixed processing of classes targeted at JRE1.2 (the default in JDK1.4)
    588     with references to their own subclasses.
    589 <li>Fixed processing of static initializers in J2ME MIDP applications.
    590 <li>Fixed processing of retrofitted interfaces (again).
    591 <li>Added more flexible handling of white space in configuration.
    592 <li>Updated documentation.
    593 </ul>
    594 
    595 <h3><div>Jul 2002</div> Version 1.1</h3>
    596 <ul>
    597 <li>Added automatic detection of <code>Class.forName("MyClass")</code>,
    598     <code>MyClass.class</code>, and
    599     <code>(MyClass)Class.forName(variable).newInstance()</code> constructs.
    600     This greatly simplifies configuration.
    601 <li>Added options to keep class names and class member names without affecting
    602     any shrinking. They are mostly useful for native methods and serializable
    603     classes.
    604 <li>Fixed processing of retrofitted interfaces.
    605 <li>Added handling of missing/invalid manifest file in input jar.
    606 <li>Updated documentation and examples.
    607 </ul>
    608 
    609 <h3><div>Jun 2002</div> Version 1.0</h3>
    610 <ul>
    611 <li>First public release, based on class parsing code from Mark Welsh's
    612     <b>RetroGuard</b>.
    613 </ul>
    614 
    615 <hr />
    616 <noscript><div><a target="_top" href="index.html" class="button">Show menu</a></div></noscript>
    617 <address>
    618 Copyright &copy; 2002-2011
    619 <a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
    620 </address>
    621 
    622 </body>
    623 </html>
    624