~ubuntu-branches/ubuntu/wily/proguard/wily

« back to all changes in this revision

Viewing changes to docs/downloads.html

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-04-10 13:58:11 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20140410135811-ddwzt2avu94rnolt
Tags: 4.11-1
* Team upload.
* New upstream release
* Removed the non-free documentation from the package (Closes: #719706)
* Removed the pre-built jars from the upstream tarball
* debian/control:
  - The package is now co-maintained with the Java Team
  - Standards-Version updated to 3.9.5 (no changes)
  - Added the Vcs-* fields
  - Added the Homepage field
* Switch to debhelper level 9
* Use XZ compression for the upstream tarball

Show diffs side-by-side

added added

removed removed

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