1## Version 1.9.2.4 (20-Nov-2014)
2
3### Bug fixes
4* [Req-159][]: Fix overkilled garbage collection on static fields.
5	* Robocode garbage collected practically any static field on a robot to prevent memory leaks (see [Bug-244][]).
6* [Bug-375][]: Wrong width and height returned for .NET robots.
7	* The .NET API return 40 instead of 36 with the Width and Height properties.
8
9### Changes
10* Upgraded Eclipse Compiler for Java (ECJ) to version 4.4.
11* Upgraded jni4net to version 0.8.7.0.
12
13### Other
14* Got rid of various issues (e.g. license headers) with the source files of Robocode in order to create a Debian distribution of Robocode.
15	* Thanks goes to Markus Koschany for all the help and support to make this possible.
16
17## Version 1.9.2.3 (15-Sep-2014)
18* [Bug-374][]: Wrong size report for minirumble in v1.9.2.2.
19
20## Version 1.9.2.2 (03-Sep-2014)
21* [Bug-373][]: Wrong robot size calculation in version 1.9.0 - 1.9.2.
22
23## Version 1.9.2.1 (21-May-2014)
24
25### Bug fixes
26* [Bug-371][]: High cpu usage on editor.
27* [Bug-372][]: Cannot load battle file when ``-DNOSECURITY=true`` is enabled - ``java.lang.IllegalAccessError``.
28
29## Version 1.9.2.0 (23-Apr-2014)
30
31### New feature
32* Initial positions and headings added to the Control API.
33	* A new constructor has been added to the ``BattleSpecification`` for the ``RobocodeEngine`` so that it is possible to set the initial position and heading of each participant robot. This new constructor takes an additional parameter named ``initialSetups`` that is an array of ``RobotSetup`` instances.
34	* The ``RobotSetup`` is a new class introduced with this version that contains the initial position and heading for an individual robot.
35
36### Bug fixes
37* [Bug-370][]: Robot Packager cannot find robot .properties file in development path.
38* Fixed issue with the Robot Editor, where the caret position was not updated fast enough when typing very fast.
39
40## Version 1.9.1.0 (22-Mar-2014)
41
42### Bug fixes
43* [Bug-366][]: Receiving enemy's real name on HitByBulletEvent.
44	* The previous fix was not correct for the owner and victim for the HitByBulletEvent and HitBulletEvent.
45* [Bug-368][]: Issues with sentries
46	* All listed issues have been fixed.
47	* A bullet from a sentry robot will not be able to hit another bullet within the "safe zone" any more, but will still be able to hit another bullet within the sentry border area.
48	* When sentry robots are present on the battle field, the initial random positions will be located within the safe zone. This avoids robots from being punished by sentry robots from the start of the battle, as the robot did not enter the sentry border by itself.
49* [Bug-369][]: RoboRumble: NoClassDefFoundError for CodeSizeCalculator.
50* The missing property ``robocode.battle.sentryBorderSize`` has now been added to the .battle file format.
51* Fixed the twinduel.sh file which was using a invalid file name for the configuration file.
52* Added desktop files for FreeBSD.
53
54### New features
55* Due to one of the ideas in [Bug-368][], a new method ``getNumSentries()`` for Java and a ``NumSentries`` read-only property for .NET was added to the ``Robot`` and ``RobotStatus`` classes, and to the ``IBasicRobotPeer`` interface as well.
56
57### Changes
58* Upgraded Eclipse Compiler for Java (ECJ) to version 4.3.1.
59
60## Version 1.9.0.0 (16-Feb-2014) The Border Sentry Robot Release
61
62### Bug fixes
63* [Bug-364][]: Robot Packager does not include the robot data dir in the .jar file.
64	* The Robot packager has now been extended with an option to include data files too when packaging a robot.
65* [Bug-366][]: Receiving enemy's real name on HitByBulletEvent.
66* Fixed various issues with the Robot Editor, e.g. letters written in the wrong error when typing text fast.
67* Fixed issue when loading a robot jar file with no package (default package), which was found by Daniel Yeung, who also had a fix for it. :-)
68
69### New features
70* *BorderSentry interface*: Added a new robot type (the BorderSentry) that allows you to implement border sentry robots, which are robots that guards the walls of the battlefield against "wall-crawlers" and "corner" robots.
71	* The Border Sentry robot is dedicated to Liam Noonan from Limerick Institute of Technology and the Robocode Ireland event in general. :-)
72	* The inspiration for this type of robot comes from the TV series named [Robot Wars](http://www.ukgameshows.com/ukgs/Robot_Wars).
73	* Note that border sentry robots...
74		* have 400 additional energy points meaning that a border sentry robot starts with 500 energy points!
75		* only appear at the borders of the battlefield, when a new round is started defined by the "border sentry size", which is a game rules that can be adjusted similar to other game rules. The default border sentry size is 100 units.
76		* can only make damage to other robot types within the *sentry border*, but not to robots in the "safe zone", which is the area inside the sentry border.
77		* can receive damage from other robots. But robots will not gain energy points from the border sentry robots (due to Mathew Nelson's excellent point regarding using sentry robots as "Energy Batteries" ;-) ).
78		* does not receive scores in the Ranking Panel nor Battle Results, even though you can see its score, like ramming damage, bullet damage etc. The goal for the border sentry robot is to be a referee, but not a player that can win or loose the battle.
79	* A new method names ``getSentryBorderSize()`` has been added to the Robot classes that returns the size / attack range from the edge of the borders, where BorderSentry robots are able to hit other robot types.
80	* A new method named ``isSentryRobot()`` has been added to the ``ScannedRobotEvent`` event class.
81	* When there is only one regular robot left on the battle field with one or more border sentry robots, the round is	automatically ended.
82	* A new sample robot has been added named ``samplesentry.BorderGuard``. Try it out against your robot(s) or e.g. ``sample.Corners`` and ``sample.Walls``.
83	* An additional option has been added to the View Options in the Preferences to enable and disable the visual appearance of the sentry border, which is painted in transparent red (danger zone).
84* [Req-156][]: Codesize added to properties file.
85	* The Robot Packager now adds a new property named ``robot.codesize`` which will be set to the value calculated by the built-in Codesize tool when compiling the robot and/or team. The Codesize value is the effective code size measured in bytes which is used by e.g. the RoboRumble to categorize robots into MicroBot, MiniBot and MegaBot etc.
86* Improved the names of the menu items on the Robot menu.
87
88## Version 1.8.3.0 (04-Oct-2013) The Editor Theme Release
89
90### Bug fixes
91* [Bug-363][]: No Last Survivor Bonus being given.
92* The ``getWidth()`` and ``getHeight()`` methods on the Robot class have always returned 40, even though a robot is 36x36 pixels in size.
93	* Hence, ``getWidth()`` and ``getHeight()`` have been changed to return the correct width and height, which is 36.
94* Fixed Robot Editor issues:
95	* ``NullPointerException`` occurring with a new source file that was not saved before being compiled.
96	* Issue where the caret position was set to the end of a source file when reading it into the editor.
97
98### Changes
99* [Req-121][]: Issues with editor font.
100	* A new Editor Theme Configurator has been added the allows changing the font, text colors and styles for the Robocode Editor.
101	* Two built-in themes have been provided for Robocode:
102		* Robocode White Theme
103		* Robocode Black Theme
104	* When selecting a theme, Robocode will automatically use this theme the next time Robocode is started.
105	* When changing a theme, a new custom theme can be created and saved. Note that it is possible to overwrite existing themes.
106	* Editor themes are stored within the /theme/editor directory as theme property files, which makes it possible to modify these in a normal text editor, but also share the themes.
107	* The Editor Theme Configurator is available from the Robot Editor menu under View -> Change Editor Theme.
108* The line numbers area in the Robocode Editor has been improved as well:
109	* The background and text colors for the line numbers can be changed.
110	* Line numbers are now right aligned + extra space has been added to the right.
111* The Find & Replace dialog has got a better layout.
112
113## Version 1.8.2.0 (22-Jun-2013)
114
115### Bug fixes
116* [Bug-357][]: Tab characters are inserted in the last line of a robot source file when opening it.
117	* This bug was only partially fixed with version 1.8.1.0.
118* [Bug-358][]: Robot in default package cannot write to files. Should at least get a warning.
119* [Bug-361][]: Problem in the text editor related with the .java file modification.
120* [Bug-362][]: Rumble client does not remove participants in wrong codesize group.
121	* Thanks goes to Julian Kent ("Skilgannon") for providing a solution for this. :-)
122
123### Changes
124* Improved the UI regarding Battle Rules:
125	* All Battle Rules have been assembled into one single Rules tab.
126	* Number of Round has been moved from the New Battle dialog to the Rules tab.
127	* Improved the visualization of the battle field size.
128	* Added input validation to text fields.
129* [Req-64][]: Change default battle settings like e.g. "Number of Rounds".
130	* When the battle rules are changed in the user interface, Robocode will remember these as the user's default settings.
131	* A new Restore Defaults button has been added to get the game default settings back.
132* Source code editor is now always maximized when opening and robot file or creating a new one.
133
134## Version 1.8.1.0 (24-Mar-2013)
135
136### Bug fixes
137* [Bug-335][]/[Bug-336][]: Skipped turns ... issues.
138* [Bug-349][]: Instances of RobocodeEngine don't seem to be independent - memory leak and performance decrease.
139* [Bug-350][]: Bullet id from battle record XML file is sometimes -1 causing a NumberFormatException.
140* [Bug-351][]: Robot.onBattleEnded(BattleEndedEvent) provides wrong scores.
141* [Bug-352][]: Results from BattleCompletedEvent.getIndexedResults() are always sorted.
142* [Bug-353][]: RobocodeEngine.setVisible() can cause a NullPointerException.
143* [Bug-354][]: Replaying an XML record can cause an ArrayIndexOutOfBoundsException.
144* [Bug-355][]: Priority battles not accepted for mini/micro/nano rumbles.
145* [Bug-356][]: Update Roborumble URLs from Darkcanuck to LiteRumble.
146* [Bug-357][]: Tab characters are inserted in the last line of a robot source file when opening it.
147
148## Version 1.8.0.0 (30-Jan-2013)
149
150### Bug fix
151* [Bug-346][]: Cannot extract sources from robot packages.
152* [Bug-348][]: .NET: UnauthorizedAccessException in AppDomainShell.Dispose().
153
154### Changes
155* Robocode has been updated to Java 6, and hence this will be the new minimum requirement for running Robocode from this version.
156* The icon for Robocode was upgraded to a 256x256 pixel resolution.
157* Added the new properties ``-DlogMessagesEnabled=true|false`` and ``-DlogErrorsEnabled=true|false`` for enabling and disabling log messages and log errors.
158	* The robocode.control.RobocodeEngine has got two similar methods: ``setLogMessagesEnabled(boolean)`` and ``setLogErrorsEnabled(boolean)``
159
160## Version 1.7.4.4 (21-Nov-2012)
161
162### Bug fix
163* [Bug-347][]: /bin/sh^M bad interpreter.
164	* All .sh and .command files contained the Windows ^M characters so these files could not be executed.
165
166## Version 1.7.4.3 (17-Nov-2012)
167
168### Bug Fixes
169* [Bug-344][]: BattleAdaptor missing in ``robocode.control.events``.
170* [Bug-345][]: Graphics still being rendered when minimized.
171* [Bug-333][]: .NET runs release dll not debug dll so can't debug.
172	* Implemented a work-around so that the local robot repository is rebuild when removing a development path.
173
174### Changes
175* Robocode sources are now put on [GitHub](https://github.com/robo-code/robocode).
176* Upgraded the .NET plug-in to use Visual Studio Express 2010.
177* The versions.txt has been changed to versions.md:
178	* The versions.txt was converted into [Markdown][] syntax in order to make it easier to convert into e.g. HTML, and because GitHub will automatically translate it into HTML when viewing this file in a browser.
179		* Thus, this file has been renamed from 'versions.txt' into 'versions.md'.
180		* The web page with the new versions.md can be viewed [here](https://github.com/robo-code/robocode/blob/master/versions.md).
181	* In addition, links to all reported bugs and feature requests have been inserted into versions.md so it is easy to browse to the reports and requests to find more details.
182
183## Version 1.7.4.2 (16-Aug-2012)
184
185### Bug Fixes
186* [Bug-338][]: "Accept-Encoding: gzip" not in Roborumble HTTP Headers.
187* [Bug-339][]: All Text Missing.
188	* Reverting fix for [Bug-332][] ("Use OpenGL backend under linux"), which caused too much trouble.
189* [Bug-340][]: Robocode crash on window resize (linux-opengl).
190	* Reverting fix for [Bug-332][] ("Use OpenGL backend under linux"), which caused too much trouble.
191* [Bug-341][]: InteractiveRobots gets error "After the event was added...".
192* [Bug-342][]: New bots not given priority.
193
194### Changes
195* The built-in [RoboRumble][] client is now able to decompress "gzip" and "deflate" content with HTTP connections with RoboRumble servers that supports it.
196
197## Version 1.7.4.1 (02-Jul-2012)
198
199### Bug Fixes
200* [Bug-337][]: Hangups with New Editor in 1.7.4.0.
201	* Notice, that the editor can still be quite slow with large source files. Work is still in progress to speed it up.
202	* Several other minor bug fixes with the new editor, like e.g. undoing and redoing tab indentation.
203
204## Version 1.7.4.0 (07-Jun-2012)
205
206### Bug Fixes
207* [Bug-332][]: Use OpenGL backend under linux.
208	* The ``-Dsun.java2d.opengl=True`` property has been set up per default in the "robocode.sh" file in order to enable OpenGL hardware acceleration per default for Linux and Solaris.
209* [Bug-334][]: Snapshot API never shows bullets in "HIT_WALL" status.
210* [Bug-328][]: Issue with the robocode.dll + \# chars in the path for a dll.
211	* This applies to the .NET plug-in.
212
213### New Features
214* [Req-147][]: The snapshot API is ambiguous for bullets shot by teams.
215	* Two new methods have been added:
216		* [IRobotSnapshot.getRobotIndex()][] that returns a unique id between all robots participating in a battle.
217		* [IRobotSnapshot.getTeamIndex()][] that returns a unique id between all participating robots or -1 if a robot is not a member of a team.
218	* The existing [IRobotSnapshot.getContestantIndex()][] will return the team id if it is not -1, otherwise the robot id is returned.
219
220### Changes
221* The Robocode Editor (source code editor) has been completely replaced by a new and improved editor. Expect some bugs!
222
223## Version 1.7.3.6 (29-Apr-2012)
224
225### Bug Fixes
226* [Bug-331][]: RoboRumble client has infinite timeout.
227	* Default *connection timeout*, *read timeout* and *session timeout* have been set to 10 seconds.
228
229### New Features
230* A new config file has been added for [RoboRumble][] in the roborumble directory in the robocode directory named "roborumble.properties".
231	* With this config file it is possible to configure the *connection timeout*, *read timeout* and *session timeout* used when downloading robots and uploading results.
232* [Req-144]: Mac ... start with icon and name.
233
234### Changes
235* Upgraded Eclipse Compiler for Java (ECJ) to version 3.7.2.
236
237## Version 1.7.3.5 (11-Mar-2012)
238
239### Bug Fixes
240* [Bug-326][]: Package of team fails to load in team battles.
241* Fixed minor issue where the Robot Packager tells that a NanoBot can be 250 bytes and a MiniBot 750 bytes, when these must be lesser than 250 and 750 bytes.
242
243## Version 1.7.3.4 (04-Dec-2011)
244
245### Bug Fixes
246* [Bug-323][]: Robocode can't find the ECJ (Eclipse Compiler for Java)
247* [Bug-319][]: Package name allows bad chars.
248	* This issue was not fixed entirely. Corrected text regarding use of lower-case letters in package name.
249* Bug: Changes to the rendering options did not take effect immediately for the battle view.
250
251### New Features
252* [Req-134][]: Calculate codesize after compile in editor.
253
254### Changes
255* Upgraded Eclipse Compiler for Java (ECJ) to version 3.7.1.
256
257## Version 1.7.3.3 (05-Nov-2011)
258
259### Bug Fixes
260* [Bug-311][]: ``out.write(int)`` uses up allocated printing quickly.
261* [Bug-315][]: Unable to change drawing color in .NET (C\#).
262* [Bug-318][]: Installer throws ``NumberFormatException`` on Linux 3.0.
263* [Bug-319][]: Package name allows bad chars.
264* [Bug-320][]: "About" window colors are awful.
265
266### Changes
267* The layout of the About Box has been completely redesigned.
268* If running on Java 1.6 or newer, OS/system based font antialiasing will be enabled.
269* Upgraded to Maven 2.2.1 used for building Robocode.
270	* Cleaned up the build, improved the speed, and got rid of issue with building and testing every twice.
271* Upgraded Eclipse Compiler for Java (ECJ) to version 3.7.
272* Upgraded jni4net (Java <-> .NET bridge) to version 0.8.6.0.
273
274## Version 1.7.3.2 (23-Aug-2011)
275
276### Bug Fixes
277* [Bug-313][]: Robocode .NET does not work on Java 7.
278* [Bug-312][]: Enabling Paint Freezes Robocode.
279* Fixed problem with XML serialization of just killed robot.
280* Fixed bug in temporary record cleanup.
281
282### New Features
283* Implemented deserialization of XML with short tags.
284	* The command line argument ``-replay`` now supports zipped XML.
285
286### Changes
287* Various optimizations to let [RoboRumble][] start up and run faster.
288	* E.g. sound module and image loading is disabled when running the rumble.
289* Imroved XML deserialization.
290* [Patch-1][]: Improved priority battle handling.
291	* Patch by Jerome Lavigne ("Darkcanuck") - Improved priority battle handling in [RoboRumble][].
292	* This change will help improve the efficiency of the [RoboRumble][] system and allow battles to be distributed more evenly + fix some inconsistent console output.
293	* Improves [RoboRumble][] client-side processing of priority battles received from the rumble server. Specifically:
294		1. Priority battles will be discarded for bots that the client knows are no longer in the participants list (the client is aware of bot removals before the server is).
295		2. Duplicate priority battles received from the server will be discarded (the server does not maintain state of which battles are sent to specific clients, so duplicates can be common).
296* Upgraded to jni4net 0.8.5.1 (fixes [Bug-313][] above).
297
298## Version 1.7.3.1 (28-Jul-2011)
299
300### Bug Fixes
301* [Bug-302][]: Hide enemy name implementation bug.
302* [Bug-303][]: ``bullet.equals`` semantic has been change in 1.7.3.0 version.
303* [Bug-304][]: ``setColor(null)`` causes NPE.
304* [Bug-305][]: TeamRumble priority battles bug.
305* [Bug-306][]: Rumble sh scripts for launching do not handle spaces in path.
306* [Bug-307][]: Console output cannot handle non-ascii names.
307* [Bug-308][]: ``ConcurrentModificationException`` in ``URLJarCollector``.
308* [Bug-309][]: robot in development generates * into filename.
309* [Bug-310][]: Interface Robot skips turns at end of round.
310* Bug: ``BulletHitEvent.getBullet().getVictim()`` always returned null.
311
312### New Features
313* [Req-135][]: Twin Duel configuration files.
314	* Twin Duel configuration files for the [RoboRumble][] client are now included.
315
316### Changes
317* The Robot Editor is now saving and loading source files in UTF-8 (Unicode).
318* Upgraded to use jni4net v0.8.4.
319
320## Version 1.7.3.0 (20-May-2011)
321
322### Bug Fixes
323* [Bug-301][]: ``getTurnRateRadians`` incorrect for negative velocity.
324* Fixed issues with unit-testing and building Robocode on Linux.
325
326## Version 1.7.3.0 Beta (26-Mar-2011)
327
328### Bug Fixes
329* [Bug-222][]: Some of sound not working.
330	* The gunshot sound was not working.
331* [Bug-297][]: x,y coords between ``BulletHitEvent`` & ``HitByBulletEvent`` differ.
332* [Bug-299][]: Custom events no longer firing after clearing event queue.
333* Fixed typo in the documentation with valid range of values for the battlefield width and height.
334	* Thanks goes to Tam�s Balog for pointing this out.
335
336### New Features
337* Added "Enable auto recording" option to the Common Options, which automatically generates a zipped XML record for every battle.
338	* Works only when "Enable replay recording" is enabled (is automatically set when enabling auto recording).
339* [Req-124][]: Ability to save the properties file for robots in dev. path.
340* [Req-129][]: ``Rules.getBulletSpeed``.
341	* It is about keeping the bullet power within 0.1 - 3.0, even when input is lesser or greater than this valid range.
342* [Req-128][]: In battle name hiding.
343	* A general solution has been provided. A new game rule, "hide enemy names", can be enabled or disabled.
344
345### Changes
346* Upgraded to use jni4net v0.8.3.
347
348## Version 1.7.2.2 (04-Nov-2010)
349
350### Bug Fixes
351* Fixed "3 * PI / 4 means West" in the Robot API, which should be "3 * PI / 2 means West".
352	* Thanks goes to Gottl Johannes for pointing this out.
353
354## Version 1.7.2.2 Beta (02-Oct-2010)
355
356### Bug Fixes
357* [Bug-290][]: Development Options remove wrong item.
358* [Bug-291][]: JavaDoc missing ``_Robot`` and similar
359* [Bug-292][]: Robot PrintStream doesn't handle write in a portable fashion.
360* [Bug-293][]: Wrong headings with the JuniorRobot.
361	* Thanks goes to Mr. Kschan for finding and providing a fix for this bug. :-)
362
363### New sample robots
364* Tuan Anh Nguyen provided a modified version of the interactive sample robot named ``Interactive_v2``, which use absolute movement (up, left, down, right) on the screen that can be easier to control than the original ``Interactive`` sample robot.
365	* Both Interactive robots now use both the arrow keys and the W, A, S, D key for moving the robot.
366* Sample robots have been written for the \#F language which are put in the "/samples/SampleFs" directory.
367	* These \#F sample robots are available with the .NET plug-in and comes along with Visual Studio project files.
368
369### New Features
370* Implemented Robocode .NET Control API plug-in (robocode.control.dll) with documentation.
371* [Req-115][]: Installed package should contain readme file.
372	* Added ReadMe.txt (using Markdown syntax) and ReadMe.html.
373	* The ReadMe is available from the Help menu.
374* [Req-118][]: Enable/disable development paths.
375	* Check boxes for each of the entries in has been added to the Preferences -> Development Options.
376* [Req-119][]: Provide JuniorRobot template for inexperienced users
377
378### Changes
379* Robocode has been upgraded to use jni4net v0.8 with CLR 4.0 support.
380* It is not necessary to specify ``-Dsun.io.useCanonCaches=false`` anymore with the startup scripts for Robocode and [RoboRumble][] as this property is now automatically set internally when running Robocode under Windows.
381	* Hence, this property has been removed from all .bat, .sh, and .command files for Robocode.
382* Robocode will not notify about Beta versions anymore per default.
383	* However, a new option in the Common Options (under Preferences) makes it possible to enable/disable notifications about new Beta versions.
384* The tabs for the "Common" and "Development Options" in the Preferences window are now the first tabs.
385
386## Version 1.7.2.1 (05-Aug-2010)
387
388### Bug Fixes
389* [Bug-283][]: Possible for robot to kill other robot threads.
390* [Bug-287][]: Zipped robots data files are not extracted.
391* [Bug-284][]: Robot Packager doesn't package source file in Eclipse proj.
392* [Bug-215][]: Missed onRobotDeath events.
393	* Thanks goes to ForNeVeR for finding and solving this bug.
394* [Bug-282][]: Cannot see robot with no package in New Battle dialog.
395* [Bug-285][]: Robot Packaging Wizard doesn't save value for Next & Back.
396* [Bug-286][]: ``ClassNotFoundException at RobotClassLoader.java:271``.
397* [Bug-288][]: "skipped" turns at start with ``-Ddebug=true``.
398* [Bug-289][]: Exclude filters not working.
399* Bug: Sometimes the compiler window was hanging for several seconds, even though the compiler had finished compiling.
400
401### Changes
402* The Robot Packing Wizard will now only allow word characters (letters, digits, dots, *but not spaces*) with the version field.
403* Added ``robocode.annotation.SafeStatic``, which can be used to suppress warnings in the robot console for a robot that uses a static Robot reference on a field.
404	* Note that this means that your robot will need to clean the static field, when a new round is started.
405	* This annotation was suggested by Nat Pavasant:
406
407			@SafeStatic
408			private static AdvancedRobot robot;
409* Added syntax highlightning on Java annotations for the Robot Editor.
410
411## Version 1.7.2.1 Beta (19-Jun-2010)
412
413### Bug Fixes
414* [Bug-231][]: Lockup on start if too many bots in robots dir (cont'd).
415	* Additional fixes were made.
416* Fixed some issues with the robot repository when file URLs contains spaces, where robots were sometimes disappearing from the repository.
417
418### Changes
419* [Req-99][]: Move away from Jikes towards ECJ.
420	* Jikes 1.22 has been replaced with the Eclipse Compiler for Java (ECJ) 3.5.2.
421
422## Version 1.7.2.0 (28-May-2010) The ".NET robots are now supported" release
423
424### Bug Fixes
425* Bug: Robots were disabled when skipping 30 skipping non-consecutive turns (or 120 turns when performing I/O operations).
426	* Now, Robocode is only disabling robots when the robot skips 30 consecutive turns, which is the original behavior, and which has been broken since version 1.6.1.4.
427* [Bug-275][]: Duplicate version numbers prevents uploading.
428* [Bug-276][]: ``tzu.TheArtOfWar 1.2`` gets ``NullPointerExceptions``.
429* [Bug-278][]: Attempting to install robocode over an existing install NPEs.
430* [Bug-281][]: The robocode.command is missing the execute permissions bit.
431* [Bug-277][]: Problems with ``Graphics2D.fill/draw(Shape)``.
432* [Bug-280][]: NPE when uploading results.
433* [Bug-274][]: "Ignoring" messages in rumble are duplicated.
434* [Bug-269][]: Minor visual bug - Currently selected robot gets covered.
435* Bug: A security exception was thrown with development robots trying to access their data directory.
436
437### Changes
438* Robocode will now only install batch files relevant to the hosting system, e.g., .bat files are not installed under Unix/Linux/Mac OS X, and .sh files are not installed under Windows.
439* Furthermore, .command files are only installed under Mac OS X, and has now the execution permission bit set (due to [Bug-281][]).
440* Robocode will now write out a warning in the robot console when a robot is detected that uses static references to a robot, i.e. static fields that are declared as e.g. a ``Robot``, ``AdvancedRobot``, ``TeamRobot`` etc. (typically references to the robot itself).
441	* A static reference to a robot can cause unwanted behavior with the robot accessing these. Hence, it is strongly recommended that static robot references in a robot class or within its helper classes are changed into non-static references and that the robot is recompiled afterwards.
442	* In every round, Robocode is creating new instances of the individual robot, meaning that static references to former ``Robot`` objects points to "dead" ``Robot`` objects that are not used anymore in the game, and which cannot be garbage collected during the battle when there is static references to these.
443
444## Version 1.7.2.0 Beta 3 (29-Apr-2010) The ".NET robots are now supported" release
445Thanks goes to Alex Schultz for keep finding bugs, but also helping out solving these. :-)
446
447### Bug Fixes
448* [Bug-271][]: Battle engine consumes more CPU power over time.
449* [Bug-267][]: Strange issue first time running roborumble in 1.7.2.0 Beta2.
450* [Bug-272][]: ``isTeammate()`` sometimes returns false with teammates.
451* [Bug-263][]: Cannot extract downloaded robot for editing in Robot Editor.
452* [Bug-270][]: Strange thread exceptions with kid.DeltaSquad in 1.7.
453* [Bug-228][]: ``Krabb.sliNk.GarmTeam 0.9v`` locks up in new beta.
454* [Bug-265][]: Occasionally losing the bit of text in the robot console.
455* [Bug-255][]: ``java.lang.Error: Interrupted attempt to aquire read lock``.
456* Bug: Teams with versions could not be found in a development path.
457* Bug: Files in ``/robots/.data`` or ``/robots/.robotcache`` directory were put into an underscore sub-directory.
458* Bug: The "Kill Robot" button in the robot console windows was often disabled.
459
460### Changes
461* The robot console now uses a rolling buffer so when the number of lines in the robot console exceeds the max number of lines (500), the oldest lines are removed, and ``^^^ TEXT TRUNCATED ^^^`` is written in the top.
462	* Previously half of the text was truncated when the max number of lines was reached.
463
464## Version 1.7.2.0 Beta 2 (14-Mar-2010) The ".NET robots are now supported" release
465
466### Bug Fixes
467* [Bug-254][]: Roborumble doesn't upload with ``EXECUTE=NOT``.
468* [Bug-257][]: Team RoboRumble uploading is broken.
469* [Bug-262][]: TeamRumble: Cannot find robot in nested .jar files.
470* [Bug-244][]: Robot static data isn't being GCed after battle.
471	* Additional fixes were made to solve this issue.
472* [Bug-258][]: ``isTeammate()`` called on null gives ``NullPointerException``.
473* [Bug-260][]: ``ArrayIndexOutOfBoundsException`` when starting team battle.
474* [Bug-250][]: Installer installs ``AutoExtract$1.class``.
475* [Bug-252][]: ``yk.JahRoslav 1.1`` throws ``WinException``.
476* [Bug-259][]: ``jlm.javaDisturbance`` loses substantial score in 1.7.2 Beta.
477* [Bug-261][]: (.NET) condition tested on concurrently modified collection.
478
479### License Change
480* We have changed license from Common Public License (CPL) v1.0 into Eclipse Puplic License (EPL) v1.0.
481
482## Version 1.7.2.0 Beta (15-Feb-2010) The ".NET robots are now supported" release
483
484### Bug Fixes
485* [Bug-244][]: Robot static data isn't being GCed after battle.
486* [Bug-245][]: Removing directories from "development options" doesn't work.
487* [Bug-247][]: Version ordering is somewhat strange with letters.
488* [Bug-243][]: Robot console text sometimes disappears.
489* [Bug-240][]: ``morbid.MorbidPriest_1.0`` fails to load.
490* Bug in ``RobotClassLoader`` causing ``ClassNotFoundException`` for some robots during robot class load.
491* Fixed a ``NullPointerException`` occuring when Robocode is (re)loading the robot repository after a developer path has been removed.
492
493### New Features
494* .NET Robocode plug-in.
495	* It is now possible to code robots in .NET and let them engage in Robocode battles. :-)
496* [Req-101][]: ``onRoundEnded()``.
497	* It is now possible for robots to get notified when a round has ended.
498	* The ``onRoundEnded()`` event handler receives a new ``RoundEndedEvent`` that contains information about the number of turns in the round and total turns in the whole battle when the event occurred.
499	* The ``robocode.control.RoundEndedEvent`` in the Control API has been extended with a new method named ``getTotalTurns()`` similar to the new ``robocode.RoundEndedEvent`` for the Robot API.
500* [Req-114][]: RateControlRobot vs. TeamRobot.
501	* The ``RateControlRobot`` is now a ``TeamRobot`` meaning that it can participate in team battles.
502* [Req-113][]: Skipped turn events.
503	* Added ``getSkippedTurn()`` method on the ``SkippedTurnEvent`` class, which returns the turn that was skipped.
504	* The ``SkippedTurnEvent.getTime()`` returns the time when the ``SkippedTurnEvent`` was processed by the robot, which is always later when the robot is skipping turns.
505	* The message ``SYSTEM: you skipped turn`` has been improved, so it will tell which turn that was skipped like ``SYSTEM: john.Doh skipped turn 43``.
506* [Req-80][]: Screenshot of battleview.
507	* Press Ctrl+T on Windows and Linux, and Command+T for Mac OS in order to take a screenshot of the battle view.
508	* The screenshot will be saved in the Robocode folder named "screenshots", and the filename will be a timestamp for when the screenshot was taken.
509* [Req-89][]: Launch Robocode from .br (battle record) files.
510	* Robocode is now able to launch from from .battle (battle specification) and .br (battle record) files in Windows.
511* [Req-86][]: Rankings should be visible when Robocode is minimized.
512	* A new View Option has been implemented to preventing speedup when minimized.
513	* This new View Option can now be set in the Preferences by putting a check mark into "Prevent speedup when minimized".
514* [Req-93][]: Rename ``/robots/.robotcache`` to ``/robots/.data``.
515
516### Changes
517* Browser support has been improved for Mac OS, Unix and Linux, which in most cases did not work properly.
518   * In previous versions of Robocode, the browser.sh was used to start up the user's preferred browser. The browser.sh file is not being used anymore. Hence, this file can safely be removed from your Robocode installation dir.
519   * Now, Robocode will start up a browser under Mac OS, Unix and Linux with no use of scripts.
520* The Development Options dialog in the Preferences has been improved:
521   * Changed from using single interval selection to multi selection interval.
522   * Adding an existing path is ignored.
523   * The list of path is automatically sorted.
524
525## Version 1.7.1.6 (06-Jan-2010)
526
527### Bug Fixes
528* [Bug-237][]: OS X 10.6: Cannot run Robocode from robocode.sh.
529	* It must be run from the new robocode.command file instead.
530* [Bug-238][]: OS X 10.6: The editor cannot see the JD
531	* It must be run from the new robocode.command file instead.
532* The ``onDeathEvent(DeathEvent)`` method was called too late, when a new round was about to start. Not when the robot has died.
533* [Bug-231][]: Lockup on start if too many bots in robots dir (cont'd)
534	* Additional fix was made to locate multiple robots under the same package.
535* Changed the robot painting so that everything that goes into the painting buffer is always painted, and remaining painting operations exceeding the buffer capacity are always dropped.
536	* Previously, only the last painting operations exceeding the painting buffer were executed.
537
538### New Features
539* The amount of used memory and total memory is now shown in the title bar of Robocode.
540	 * This is useful to see how much memory your robots are consuming.
541
542### Changes
543* If the robot paints too much between actions, an improved error message is written out in the robot console.
544	* But from this version of Robocode this message is only written out once.
545* A ``SecurityException`` is now thrown if a robot exceeds its max. data file quota, meaning that it uses more than 200.000 bytes its data files in total.
546
547## Version 1.7.1.6 Beta (10-Dec-2009)
548
549### Bug Fixes
550* [Bug-236][]: Robot Editor doesn't accept packagename with dot (.) in it.
551* [Bug-234][]: Source is not included.
552	* Additional fix was made for this issue.
553* [Bug-231][]: Lockup on start if too many bots in robots dir (cont'd)
554
555### Requests
556* [Req-92][]: Scrollable properties.
557	* All console windows including the Robot Console and Properties are now scrollable, and all have the same look.
558
559### Changes
560* It is now possible to add paths to robot project inside an Eclipse workspace under the Development Options in the Preferences.
561	* Robocode will read the .classpath file in the project in order to locate both class files, properties files, and java files.
562	* This means that the Robot Packager is now able to include your source files when you use Eclipse, and it supports multiple source paths.
563	* **Note:** Robocode does not support linked sources or include and exclude filters.
564* Changed the messages given when creating a new robot with the Robot Editor regarding robot name and package name.
565
566## Version 1.7.1.5 (11-Nov-2009)
567
568### Bug Fixes
569* ``RobocodeFileOutputStream.getName()`` always returned ``null`` instead of the filename.
570* Robots listed in e.g. the New Battle window was sorted like: 1.1.1, 1.1.10y, 1.1.2, 1.1.10 (alpha-numerical).
571	* But version numbers with an ending letter like in "1.1.10y" like in the versions just listed, were not placed in the correct order.
572	* Notice that 1.1.10y is between 1.1.1 and 1.1.2. This bug has been fixed so the versions in the example now will be sorted correctly like: 1.1.1, 1.1.2, 1.1.10, 1.1.10y.
573
574## Version 1.7.1.5 Beta (14-Oct-2009)
575
576### Bug Fixes
577* [Bug-232][]: ``Graphics2D.getTransform()`` throws NPE.
578* [Bug-233][]: "Teleport"
579	* occurred when robot's distance remaining was very large.
580* [Bug-234][]: Source is not included.
581	* ``robot.java.source.included`` was not set in the robot.properties file.
582
583## Version 1.7.1.4 (25-Sep-2009)
584
585### Bug Fixes
586* [Bug-226][]: ``java.io.FileNotFoundException`` in ``RobotFileSystemManager.init``.
587* [Bug-227][]: Can't load ``Katana 1.0`` or ``DrussGT 1.3.1wilo``.
588* [Bug-230][]: Lockup on start if too many bots in robots dir.
589* [Bug-229][]: ``IllegalArgumentException`` on painting in some robots?
590* Fixed ``NullPointerException`` that could occur with the ``-battle`` command-line option.
591
592### Changes
593
594#### Banning
595* The previous 1.7.x.x versions have been very strict so that robots that could not be loaded, started, skipped too many turns etc. would be disallowed to participate in battles.
596	* With the bug fix for [Bug-227][] above this policy has been changed so robots are only "banned" if they cause a security violation or they could not be loaded or started (meaning that they will not be allowed to run).
597	* In addition, ALL security violations are always written out in both the main console and robot's console. A message will be written out in the main console like ``xxx has caused a security violation. This robot has been banned and will not be allowed to participate in battles``.
598
599#### Painting
600* With the bug fix for [Bug-229][] a change was made so a robot will now receive this message in its console window, if it is painting too much between actions:
601
602		SYSTEM: This robot is painting too much between actions.  Max. capacity has been reached.
603* Notice that a robot is not allowed to perform an unlimited amount of paint operations for two reasons:
604	1. It takes up a lot of memory as the painting operations are recorded in a buffer before being processed, and potentially this buffer must be recorded to a file (for replays).
605		* A robot is allowed to use up to a maximum of 64 KiB per paint action. An average painting operation like e.g. ``fillRect(x, y, width, height)`` takes up 15 bytes, meaning that more than 4000 painting operations should be possible per paint action, which is a lot.
606	2. It takes a lot of CPU cycles to process the painting buffer to the display making the painting slow if the buffer is too large.
607* It is possible to remove the limit for the robots painting buffer by using the existing command-line option: ``-Ddebug=true``.
608
609## Version 1.7.1.4 Beta (26-Aug-2009)
610This version is dedicated for the [RoboRumble][] community where many issues seen with the RoboRumble client have been solved.
611
612Thank you all for reporting as many known issues as possible, and also help out solving these - especially with the issue seen with the robot movement that had a big impact on the scores and rankings! :-)
613
614A big thanks goes to Patrick Cupka ("Voidious"), Julian Kent ("Skilgannon"), "Positive" and Nat Pavasant ("Nat") for their combined work with developing and testing the new and improved robot movement regarding acceleration and deceleration rules ([Bug-214][]). :-)
615
616### Bug Fixes
617* [Bug-214][]: Accel/decel rules introduced in 1.7.1.3 causes trouble.
618* [Bug-215][]: Missed onRobotDeath events.
619* [Bug-212][]: Team jar files reported as corrupted.
620* [Bug-208][]: Does not extract .properties files into bot data dirs.
621	* The previous fix for this issue did not work properly as the file sizes were truncated to 0 bytes.
622* [Bug-216][]: Sometimes too few results for robots are displayed.
623* [Bug-213][]: ``NullPointerException`` when setting classpath directory.
624* [Bug-209][]: [Codesize] Invalid entry point in codesize-1.1.jar.
625	* Previous fix was not working properly.
626* [Bug-218][]: Robocode enters infinite loop with the Restart button.
627* Bug: The RateControlRobot (Beta) returned rates in radians instead of degrees with the methods: ``getTurnRate()``, ``getGunRotationRate()``, and ``getRadarRotationRate()``.
628
629### Changes for RoboRumble
630* Updated the PARTICIPANTSURL in the roborumble.txt, meleerumble.txt, and teamrumble.txt.
631
632## Version 1.7.1.3 (08-Jul-2009)
633
634### Bug Fixes
635* [Bug-210][]: Bullet and Ram Damage Bonuses are wrong.
636* [Bug-208][]: Does not extract .properties files into bot data dirs.
637* [Bug-207][]: Access denied ``javax.swing`` ``-DNOSECURITY=true``.
638* [Bug-209][]: [Codesize] Invalid entry point in codesize-1.1.jar.
639* Bug: Sometimes the "Show results when battle(s) ends" in the Common Options was disabled when running the RobocodeEngine, even though the setting had been enabled earlier.
640* A ``NullPointerException`` occurred when closing the Preferences window, when no sound device is present in the system.
641
642### Changes
643* The default font on the ``Graphics`` context when using ``onPaint(Graphics2D)`` or ``getGraphics()`` has been changed to the "Dialog" font.
644
645## Version 1.7.1.3 Beta (08-Jun-2009)
646
647### Bug Fixes
648* ``AdvancedRobot.setMaxTurnRate()`` did not work properly since version 1.5.4.
649* [Bug-205][]: Wrong survival scores sent by rumble client.
650* [Bug-206][]: Funny behaviors with robot graphics/painting.
651
652### New RateControlRobot (Beta)
653* Joshua Galecki has provided a new robot type, the ``RateControlRobot``, which is an extension of the ``AdvancedRobot``.
654* The ``RateControlRobot`` class has been created in an attempt to allow more realistic robots.
655	* That is, many real/physical robots are given commands in terms of rates ("move forward one meter per second"). Hence, the ``RateControlRobot`` helps simulating a real robot.
656* With this release, we ask the community for feedback and we will announce it as stable in one of next major releases. So please report issues or change requests etc. for this new robot type.
657
658### Changes for RoboRumble
659* Added validation of each of the participant lines of the participant list.
660	* If a participant line is invalid due to e.g. wrong format/syntax or bad URL, then an error message is written out and the participant is ignored.
661* The format of the lines in the participant lines is the same as usual.
662	* Accepted lines must follow this format: ``<robot+version>,(<http-url>|<repository-id>)``, where <robot+version> must match the regular expression ``[\\w\\.]+[ ][\\w\\.-]+``, the <http-url> must be a HTTP URL pointing at the robot .jar file, and the <repository-id> must be a number. The <http-url> and <repository-id> are mutual exclusive.
663	* Example of accepted lines:
664
665			johndoe.SomeRobot 1.0,http://somewhere.com/SomeRobot\_1\_0.jar
666			johndoe.SomeRobot 1.0,321
667
668* Removed the info message "Trying to download <botname>" from the console output.
669
670### Other changes
671* The Development Options has become more usable, as Ruben Moreno Montoliu has added a list of paths and buttons for adding and removing directories, full resizable.
672* Updated the Javadoc with a note for the ``setAdjustXX()`` robot methods, which are ignored when turning with infinite values.
673
674## Version 1.7.1.2 (25-May-2009)
675
676### Bug Fixes
677* [Bug-199][]: FontMetrics StackOverflowError.
678* [Bug-200][]: ``Graphics2D.setFont()`` has no effect.
679* [Bug-201][]: ``setMaxVelocity(lower than current) + reverse`` direction bug.
680* [Bug-196][]: Wrong file path used for development bots.
681	* Refixed.
682* [Bug-202][]: Installer says to run robocode.jar.
683* [Bug-204][]: Nanobot rumble not sending melee or team parameters.
684	* Thanks goes to Jerome Lavigne ("Darkcanuck") for this fix.
685* Fixed three bugs introduced with the Beta version found using new test units:
686	* One bug where the speed would immediately drop to max. velocity when calling ``setMaxVelocity()`` - disregarding the acceleration and deceleration rules.
687	* Another bug where the turn rate was a bit wrong when moving back and turning left in the same time.
688	* A third bug where the robot continued to move backwards when it should have stopped due to ``setAhead(0)`` or ``setBack(0)``.
689
690## Version 1.7.1.2 Beta (08-May-2009)
691
692### Bug Fixes
693* [Bug-139][]: Bug in RobotPeer.updateMovement?
694	* Robocode was not moving 100% according to it's own rules. Now it is.
695* [Bug-192][]: Fair Play!
696	* With two identical robots in a battle against each other, the first robots was much more likely to win, which was not fair.
697* [Bug-195][]: Client tries to remove all participants.
698	* When RoboRumble, TeamRumble, and/or MeleeRumble downloaded the participants list and did not receive a ``HTTP_OK`` or an empty list, the participants list was emptied. This caused problems with the RoboRumble server.
699* [Bug-196][]: Wrong file path used for development bots.
700	Added option ``-DALWAYSUSECACHEFORDATA`` for anyone who liked it better.
701* [Bug-197][]: Melee rumble doesn't use "smart battles".
702	* Thanks goes to Jerome Lavigne ("Darkcanuck") for this fix.
703	* Smart battles are also known as "priority battles".
704* Fixed several ``ArrayOutOfBoundsExceptions`` occurring when starting a battle with fewer robots than a battle just played with more robots.
705
706### Changes for RoboRumble
707* The participants URL for RoboRumble, MeleeRumble, and TeamRumble have been updated to use the participant lists from the new RoboWiki:
708	* [RoboRumble](http://robowiki.net/wiki/RoboRumble/Participants).
709	* [MeleeRumble](http://robowiki.net/wiki/RoboRumble/Participants/Melee).
710	* [TeamRumble](http://robowiki.net/wiki/RoboRumble/Participants/Teams).
711
712### Other changes
713* Updated the Help menu to point at the new RoboWiki regarding the Online Help and FAQ.
714* RobocodeEngine control class: Added additional ``runBattle()`` method where it is possible to specify the initial positions of the robots when starting a battle.
715* The about box was updated, where contributors are now written in bold and in a green color.
716
717## Version 1.7.1.1 (10-Apr-2009)
718With this release we have focused on eliminating as many problems seen with [RoboRumble][] as possible. Hence, this version should hopefully prove stable as the new RoboRumble client.
719
720### Bug Fixes for RoboRumble
721* [Bug-188][]: Meleerumble using 2 bots instead of 10.
722	* Now the ``MELEEBOTS`` (number of robots that participate in a melee battle) works as expected.
723* [Bug-193][]: TeamRumble uploading result for Robot instead of team.
724* [Bug-187][]: Not enough java memory allocated in launch scripts.
725	* The launch scripts for RoboRumble and TeamRumble were changed so it is allowed to use up to 512 MB heap memory, and MeleeRumble is allowed to use up to 1024 MB.
726* [Bug-191][]: ``EOFException`` during repository rebuild.
727	* Exception is now reported in a simplified way.
728* [Bug-194][]: JarJar multi-registration.
729	* RoboRumble was not reusing the same RobocodeEngine instance.
730
731### Other bug fixes
732* [Bug-169][]: ``pe.SandboxDT_3.02`` stopped working in 1.6.2 and later version.
733	* We had broken semantics of ``getTeammates()`` to return empty array when there is no team.
734* [Bug-189][]: API - cannot subclass Event in 1.7.1.
735* [Bug-190][]: Errors with some robot classes when rebuilding database.
736* [Bug-185][]: Webpage button lay over robot description.
737* [Bug-186][]: Rounds number do not saved between run.
738
739### JuniorRobot changes
740* Bug - The event variables ``scannedXX`` and ``hitXX`` on the JuniorRobot was not reset to -1 (or -99) when nothing was scanned or hit.
741* [Req-90][]: Prevent JuniorRobot to be unresponsive.
742* **Change:** JuniorRobot will now automatically scan for enemies when it is not moving.
743
744## Version 1.7.1 (24-Mar-2009)
745
746### Bug Fixes
747* [Bug-176][]: Editor UNDO does delete the line when no undo left.
748* [Bug-180][]: Editor: Find (set cursor position).
749* [Bug-182][]: roborumble.sh and teamrumble.sh are broken.
750* [Bug-183][]: ``NullPointerException`` in ``BattlesRunner.runBattlesImpl``.
751* [Bug-184][]: Custom event priority broken.
752
753### Changes
754* The New Battle dialog is now larger per default.
755* The layout of the View Options and Sound Options tab in the Preferences has been improved.
756	* An error dialog is shown when the input field for the desired TPS is out of range.
757
758## Version 1.7.1 Beta 2 (11-Mar-2009)
759
760### Bug Fixes
761* [Bug-178][]: Typing to find bot no longer works.
762* [Bug-181][]: API: Typo in Documentation ``onBulletMissed(BulletMissedEvent)``.
763* [Bug-179][]: Event.setTime() method should not be hidden.
764	* Put back ``setTime()`` method of ``Event``, the security is now handled other way instead of hiding the field.
765* Fixed the problem with loading team robots from nested .jar files.
766* On Ubuntu (Linux) the "Default window size" did not work properly.
767
768### Internal Changes
769* On SUN's JVM enabled caching of .jar files opened thru ``URLConnection``.
770	* Solved problem with closing such files by implementing ``URLJarCollector``.
771
772## Version 1.7.1 Beta (01-Mar-2009)
773With this release we give BIG thanks to Nat Pavasant who have put in great effort in testing and finding as many bugs in Robocode as possible. He has been a great help with testing especially [RoboRumble][] functionality.
774
775Currently, there is one known issue, which will be fixed with the next Beta or in the final release of version 1.7.1. This is critical for e.g. the TeamRumble, so please notice the known issue below.
776
777### Known issue
778* With this version Robocode cannot handle team packages containing robot .jar files, i.e. robot packages.
779
780### Bug Fixes
781* [Bug-166][]: Bots referencing ``robocode.robocodeGL`` broken.
782* [Bug-168][]: Bots inconviently stop working if they go over time limit.
783* [Bug-172][]: Robot console fails to display some deaths/wins.
784* [Bug-174][]: Robot console is sometimes empty.
785* [Bug-173][]: Robot packager can be activated once per running.
786* [Bug-175][]: Development robots cause problems with data files.
787* [Bug-171][]: A battleview size exceed 800x600 filled with black.
788* [Bug-165][]: ``NullPointerException`` when using ``-battle`` option from cmd-line.
789* [Bug-170][]: Robot Colors don't stick between rounds.
790* [Bug-177][]: Open battle menu dialog is not loading robots.
791* Bug: The command line usage of Robocode was not printed out at all when using the ``-?`` or ``-help`` option.
792
793### New Features
794* Added ``getCurrentWorkingDir()`` + ``getRobotsDir()`` to the ``robocode.control.RobocodeEngine``.
795* [Req-86][]: Rankings should be visible when Robocode is minimized.
796	* This feature has been added and it is possible to control the behavior from Common Options in the Preferences with the "Don't hide Rankings when main window is minimized", which is enabled per default.
797* [Req-88][]: Command Line option for saving a battle record file.
798	* Two new command line options have been added for Robocode, i.e. ``-record <filename>`` and ``-recordXML <filename>``.
799		* The ``-record option`` records the battle as a binary and zipped battle record. Here I propose that the specified filename should is something like record.br.
800		* The ``-recordXML`` does the same as the -record option, but saves the battle record as an XML file. Here I suggest that you use a filename like record.br.xml.
801* [Req-49][]: Speedup time required for rebuilding robot database.
802
803### RoboRumble Changes
804* Changed the link for [http://rumble.fervir.com/rumble](http://rumble.fervir.com/rumble) into [http://darkcanuck.net/rumble](http://darkcanuck.net/rumble) as the RoboRumble server fervir is down and with unstable ranking.
805	* The current ranking at Darkcanuck's server is alive. Almost all clients are point to Darkcanuck's now. Hence, it is updated now.
806* [Req-82][]: Launch upload result in separate thread.
807	* Results from the [RoboRumble][] client is now uploaded in a seperate thread.
808* [Req-84][]: Added append option in copy method (``FileTransfer`` class).
809
810### Internal Changes
811* The robot repository has been updated. It is no longer extracting .jar files.
812	* It also remembers last timestamp on file so detection of the changes is really fast. Only data files are extracted now.
813	* Data files for non-packed robots were moved to .robotcache as well.
814* VersionManager is now able to detect if the Robocode version was upgraded since last run.
815* Blocking security issue with relative path in ``getDataFile()`` method.
816* Improved security in RobotClassLoader.
817* Reimplemented RobotPackager.
818* ``BulletSnapshot`` has now method ``getBulletId()`` which gives identity of bullet for UI.
819
820## Version 1.7.0.2 (16-Feb-2009)
821
822### Bug Fix
823* The fix for [Bug-164][] (Compiler Classpath Suggestion) backfired, as the entire text field in the window with the compiler properties would now be quoted.
824	* Hence, the compiler would not be able to compile, and it was not possible to change the compiler preferences from the GUI.
825
826## Version 1.7.0.1 (14-Feb-2009)
827
828### Bug Fixes
829* [Bug-163][]: Spaces or native names in name of robocode directory.
830	* Some users experienced problems with starting Robocode. Hence, all startup batch and shell files for Windows, Linux, Mac OS X etc. have been corrected.
831* [Bug-164][]: Compiler Classpath Suggestion.
832	* When running Robocode in a folder with spaces, the compiler classpath was not quoted. Hence, the compiler would not work.
833
834## Version 1.7 (11-Feb-2009)
835
836### Bug Fixes
837* [Bug-160][]: Battle Results screen displaying old results.
838	* The results where not updated on the Battle Results windows between battles.
839* [Bug-161][]: Robot disabled by any other than losing energy can recover.
840	* Robots disabled due to bad behaviour could regain energy by hitting another robot by a bullet after it had been disabled.
841		* Now this is only possible when the robot has disabled itself by using all its energy, and will be able recover energy by hitting an enemy, which is allowed.
842* [Bug-162][]: Team battle.
843	* Robots like ``abc.Shadow 3.83``, ``davidalves.Phoenix 1.02``, and ``kawigi.micro.Shiz 1.1``, ``kawigi.micro.ShizPair 1.1`` caused a ``NullPointerException`` and would not show up on the battle window.
844
845## Version 1.7 Beta 2 (26-Jan-2009)
846
847### Bug Fixes
848* [Bug-158][]: Ubuntu throws ``NullPointerException`` in main.
849	* This bug occurred when trying to startup Robocode.
850* [Bug-159][]: Installation fail on windows if directory contain space.
851
852### Changes
853* Improved the version checking for new Robocode versions available for download.
854
855## Version 1.7 Beta (19-Jan-2009)
856* This version represents a completely new infrastructure of Robocode making it easier to extend and maintain for the future. It does not contain New Features compared to the previous version of Robocode, but focus on working the same way as the previous versions despite of all the restructurings.
857
858### Bug Fixes
859* [Bug-156][]: Spammy output on robot console windows.
860
861### Internal Changes
862* Robocode was modularized using the dependency injection framework PicoContainer.
863	* This work includes introduction of many interfaces to existing components.
864* Introduced Maven2 as build setup where the whole directory layout is based on the standard Maven structure.
865* Rewritten the ``RobotClassLoader`` so it is able to load .jar file in the future.
866* Rewritten security layer to use ``AccessController`` and ``CodeSource`` for detection of trusted code.
867* Redesigned ``RobocodeProperties`` to ``SettingsManager`` and introduced ``ISettingsListener``.
868* Implemented ``RbSerializer`` to be able to implement IPC (Inter-Process Communication) in future.
869	* This should make it possible to extend Robocode for more platforms like e.g. Microsoft .NET.
870* Redesigned ``RepositoryManager`` and nearby to hide implementation details.
871* Moved all implementation of Robocode to the package ``net.sf.robocode``.
872	* The old package ``robocode`` is now "used only" for API to outer world in order to keep backwards compability.
873
874## Version 1.6.2 (04-Jan-2009)
875
876### Bug Fixes
877* [Bug-154][]: Robot name missing when replaying XML record.
878* [Bug-153][]: Junior Robot ``turnAheadRight`` bug.
879	* When a JuniorRobot was calling ``turnAheadRight()``, ``turnAheadLeft()``, ``turnBackRight()``, or ``turnBackLeft()``, the following exception occurred causing the robot to be terminated:
880
881			java.lang.ClassCastException: robocode.peer.proxies.StandardRobotProxy
882* [Bug-151][]: Exception when changing between ``Robot`` to ``AdvancedRobot``.
883	* When a robot was changed from a ``Robot`` into an ``AdvancedRobot`` and recompiled, the game would cast a ``ClassCastException`` if a battle was started or restarted including that particular robot.
884	* However, this bug did not occur with new battles where the list of robots was refreshed (by pressing Ctrl+R).
885
886## Version 1.6.2 Beta 4 (22-Dec-2008)
887
888### Bug Fixes
889* Fixed open battle dialog, which was not loading.
890* Fixed recorder NPE.
891* Fixed serialization problems of scan arc (``Arc2D``).
892* Fixed problem with reloading robot repository on each next battle dialog.
893
894## Version 1.6.2 Beta 3 (18-Dec-2008)
895
896### Changes
897* Published new battle events and battle snapshots in the Control API, i.e. in the ``robocode.control`` package.
898* Added missing Javadocs (HTML documentation) to public Robocode API classes.
899
900### Bug Fixes
901* The current scoring (not the total scoring) was calculated wrong from version 1.6.1.
902	* The current Ramming Kill Bonus was set to current bullet kill bonus, which gave wrong ranking in the Ranking Panel.
903* [Bug-148][]: Wrong bullet power.
904	* Wrong bullet power could be reported back from ``Bullet.getPower()``, which could be ``> Rules.MAX_BULLET_POWER`` or ``< Rules.MIN_BULLET_POWER``.
905* [Bug-147][]: gunHeat is negative.
906	* gunHeat could be negative, which should never occur.
907* [Bug-149][]: Replay exception.
908	* An ``ArrayIndexOutOfBoundsException`` occurred in some situations.
909* Fixed problem with ``RobocodeEngine.setVisible(true)``, where the ``RobocodeEngine`` would hang forever.
910
911## Version 1.6.2 Beta 2 (07-Dec-2008)
912
913### Bug Fixes
914* Fixed problem with Bullet identity.
915* Battle cleanup concurrency issue.
916* Fixed problem with robots without package.
917* AWT AppContext cleanup.
918* Fixed versions comparison problem.
919
920### Changes
921* Mostly cleanup of code and documentation.
922* Improved compatibility with RobocodeJGAP.
923* Development robot version names were visible in the robot repository.
924
925## Version 1.6.2 Beta (25-Nov-2008)
926
927### Bug Fixes
928* [Req-78][]: Visual debugging without cpu penalty.
929	* Now Robocode gives a robot unlimited time when painting is enabled on UI (in the robot dialog) for that robot.
930* Robocode will not load non-valid robots from repository anymore.
931* Fixed placement of the robot dialogs (aka. robot console windows).
932* Exception on robot's ``Condition`` doesn't break further processing now.
933* [Bug-146][]: Spammy output when running roborumble.
934	* Output from RoboRumble was spammy when outputting log after the first battle.
935* ``java.lang.IllegalArgumentException: Line unsupported: interface Clip supporting format`` could occur when starting Robocode.
936* [Bug-81][]: Replay recording does not record paintings.
937
938### New Features
939* [Req-24][]: Recording of battles. (fully implemented)
940	* Battle recording and replay: Saving to binary and xml file.
941* [Req-63][]: Replay should store debug graphics.
942	* Robot painting and debug properties are now being recorded, but robot painting is not exported to xml.
943	* Recording is slowing down the game and eats memory and disk space. Hence, you need to enable it in options, as it is disabled per default.
944* New command line option ``-replay`` for replaying a battle record.
945* New dialog for battle console and battle turn snapshots.
946* Robot dialog: New tab-page with robot properties.
947* The robot API has been extended with a new ``setDebugProperty()`` method.
948	* See the ``sample.PaintingRobot`` robot for example of usage.
949* [Req-31][]: Redirecting Robot output, running without GUI.
950	* The ``robocode.control`` package has been improved so that the ``RobocodeEngine`` is able to return much more detailed information about was is going on inside the battle for each turn, round, and battle thru a new ``IBattleListener`` interface.
951	* With the new ``RobocodeEngine`` it is possible to a detailed snapshot of the game state, e.g. the states of all robots and bullets, and also get the messages sent to the robot console etc.
952* [Req-77][]: Better "lifebar" display.
953	* Robot buttons on the Battle View is now showing the amount of energy and score as two coloured bars within the robot button.
954
955### Changes
956* Redesigned ``RobotPeer`` and ``Battle``.
957	* Now we send messages between threads instead of synchronizing individual properties.
958	* Code here is much more readable now.
959* Most synchronization is now interlocked.
960* Event manager, priority and dispatch of events refactored.
961* The methods ``setPriority()`` and ``setTime()`` on the ``Event`` classes are no longer part of the Robot API.
962	* These methods were used internally by the game.
963	* Events are final classes now.
964* More unit tests were added.
965* ``Graphics2DProxy`` optimized.
966* Interactive robots are better detected to not waste time of non-interactive robots.
967* Team messages are deserialized on receiver robot thread.
968* Got rid of robot loader thread.
969	* Now Robocode is loading on robot's thread, where we got more security.
970* Introduced new interfaces for code components.
971* Robot threads have ``NORM_PRIORITY - 1``, AWT UI have ``NORM_PRIORITY + 2``.
972* [Req-75][]: Add client version to POST data sent to server.
973	* We now upload the [RoboRumble][] client version when uploading results to the RoboRumble server.
974* Robots which are "wrong behaving" are removed from the robot repository and are not given another chance to run.
975	* This goes for skipped turns, for unstoppable robots and for robots with class loading troubles.
976* Changed the formatting of this versions.txt file in order to improve readability.
977
978## Version 1.6.1.4 (14-Nov-2008)
979
980### Bug Fixes
981* Loosing robots were not receiving ``onBattleEnded(BattleEndedEvent)`` events.
982* A new security issue fix for robots that were able to execute code thru the Event Dispatch Thread (EDT).
983	* **Robots that try to access the EDT will be disabled!**
984* [Bug-144][]: drawArc does not work as expected.
985	* Both ``drawArc()`` and ``fillArc()`` are now using the Robocode coordinate and angle system.
986* [Bug-143][]: Blank console window when compiling.
987	* Some systems still had this issue, so a new fix has been applied.
988
989### New feature
990* [Req-65][]: Score % display.
991	* The results and current rankings (during a battle) is now showing the score as percentage(s) in parenthesis right beside the score points like e.g. '7875 (12%)' for the total score in the results and '21 / 2900  (7 / 14%)' with the current rankings.
992	* Thanks goes to Endre Palatinus, Eniko Nagy, Attila Csizofszki and Laszlo Vigh for this contribution!
993
994### Changes
995* The command-line option ``EXPERIMENTAL`` (= ``true`` or ``false``) allowing access to the robot interface peer is now working for the ``RobocodeEngine`` class also.
996
997## Version 1.6.1.3 (24-Oct-2008)
998
999### Bug Fixes
1000* [Bug-143][]: Blank console window when compiling.
1001   * This bug was introduced in 1.6.1.2.
1002   * When trying to compile a robot that would give a compiler error, the output console window for the compiler could be blank on Windows system and/or hang.
1003   * Now the compiler error is output correctly as in previous versions.
1004* [Bug-137][]: Roborumble ``ITERATE`` broken.
1005	* When running RoboRumble with ``ITERATE=YES``, ``DOWNLOAD=YES``, and ``RUNONLY=SERVER``, the ratings were only read once, not per iteration.
1006	* This bug fix removes a very old bug and the need of using a batch file as workaround in order to do the loop with updated ratings.
1007* [Bug-141][]: The ``-DROBOTPATH=<path>`` option does not work.
1008* [Bug-142][]: Broken .sh files.
1009	* An misplaced colon character was included in the teamrumble.sh file.
1010* Fixed issue with first time access to a robot's data directory after startup, where the robot was not allowed to write to it's own file.
1011
1012### Changes
1013* [Bug-130][]: Various usability issues.
1014	* The list of available robots in the 'New Battle' dialog is now automatically refreshed before it is being shown, when a new robot has been compiled or a robot has been removed.
1015	* The 'Save' and 'Save As' in the File menu of the Robot Editor is now enabled and disabled depending if there is anything to save or not.
1016
1017## Version 1.6.1.2 (12-Sep-2008)
1018
1019### Bug Fixes
1020* RoboRumble: Sometimes results were given to the wrong robots, which gave a problem with the robot rankings in the RoboRumble, TeamRumble and MeleeRumble.
1021	* Thanks goes to Joachim Hofer ("Qohnil") for fixing this issue! :-)
1022* RoboRumble: Robots that read their data file got the following error message:
1023
1024		Preventing unknown thread <robot name> from access: (java.io.FilePermission...
1025* ``ArrayOutOfBoundsException`` could occur when accessing the ``Graphics2D`` object returned by the ``getGraphics()`` method on the ``Robot```classes.
1026* The ``draw(Shape)`` method on the ``Graphics2D`` object returned by the ``getGraphics()`` method could not draw lines.
1027* The ``onMousePressed()`` event was called twice instead of only one time per mouse press.
1028
1029## Version 1.6.1.1 (28-Aug-2008)
1030
1031### Bug Fixes
1032* Issues with the scoring.
1033	* Sometimes the robots were ranked incorrectly compared to their total scores given in the battle results.
1034* When disabling the security (``-DNOSECURITY=true``) it would not be possible to run any battles as the following error would occur:
1035
1036		RobocodeFileOutputStream.threadManager cannot be null!
1037* [Bug-135][]: ``-battle`` broken.
1038	* When using a battle file, the battles were not displayed one the GUI.
1039* [Bug-134][]: Robot problem after Options->Clean robot cache.
1040	* Robots that tried to access their data file, like e.g. ``sample.SittingDuck`` got a ``AccessControlException``.
1041* [Bug-131][]: Sometimes the compiler window hangs.
1042	* This bug only occurred when the compiler gave compilation errors.
1043* ``IllegalArgumentException`` occurred when calling ``setStroke()`` or ``setComposite()`` on the ``Graphics2D`` object returned by the new ``getGraphics()`` method on the Robot.
1044
1045### Changes
1046* The intro battle will only be shown if a battle file has not been specified using the ``-battle`` command-line argument and Robocode is being run for the first time since installation.
1047	* Previously, the intro battle was always shown even though a battle file had been specified.
1048
1049## Version 1.6.1 (17-Aug-2008)
1050
1051### Bug Fixes
1052* [Bug-125][]: TimeoutExceptions occur when debugging in Eclipse.
1053
1054### Changes
1055
1056#### New Methods
1057* Added ``getGraphics()`` to ``Robot`` and ``IBasicRobotPeer``.
1058	* A robot is now able to paint itself at any time, and not only using the ``onPaint()`` event handler.
1059* Added ``getStatusEvents()`` to ``AdvancedRobot`` and ``IAdvancedRobotPeer``.
1060	* A robot is now able to handle status events in the middle of an event handler.
1061
1062#### New Event
1063* [Req-66][]: "onBattleIEnd(*)" Event.
1064	* The the ``onBattleEnded()`` event handler is provided through the new ``IBasicEvents2`` class.
1065	* The new event ``BattleEndedEvent`` has been added.
1066		* When this event occur the new event handler ``onBattleEnded()`` will be called on the robot, i.e. when the battle is ended.
1067	* When reading the ``BattleEndedEvent`` it is possible to read out the results of the battle of the individual robot or team.
1068		* In addition, it is possible to check if the battle was aborted by the game or user.
1069		* The battle results will only be available if the battle is not aborted (where the results does not count).
1070
1071#### Paint Events
1072* Paint events are now put in the robot event queue, meaning that the robots will pay CPU time when their ``onPaint()`` event handler is called.
1073* Added the ``PaintEvent``, which makes it possible to set the event priority of paint events using the ``AdvancedRobot.setEventPriority()``.
1074
1075#### Mouse and Keyboard Events
1076* Mouse and keyboard events have added as new pulic classes and put into the robot event queue.
1077	* The robots will pay CPU time when their ``onMouseXX()`` and ``onKeyXX()`` event handlers are called.
1078
1079#### Package Name
1080* [Req-70][]: Longer package name allowed.
1081	* The max. length of a robot's full package name has been extended from 16 to 32 characters.
1082	* The Robocode Repository is able to handle this (verified with Dan Lynn).
1083
1084#### New TPS Slider
1085* The TPS slider has been redesigned to be more exponential, so it covers battle in slow speed (1-30 TPS), higher speed (30 - 120 TPS), and fast speed (120 - 1000 TPS).
1086* If you set the slider to max. TPS the game will run as fast as possible.
1087	* This feature already existed in earlier versions.
1088* If you set the slider to minimum (0 TPS) the game will pause.
1089	* This is a new feature.
1090
1091#### The FPS (Frames Per Second)
1092* The max. FPS is now fixed to be max. 50 FPS allowing the TPS (turns per second) to be even faster.
1093
1094#### New Title Bar
1095* The title on the Robocode window is now showing the current turn in a battle, and is updated every half second.
1096* The layout of the information shown in the title has been improved a bit.
1097
1098#### Dialogs
1099* The About box, New Battle Dialog, Preferences Dialog, Ranking Dialog, and the Compiler Preferences Dialog are now modal.
1100* It is now possible to close the New Battle and Results Dialog by pressing the Esc key.
1101
1102#### Ranking Panel
1103* The menu item for the Ranking Panel is now hidden when replaying a battle.
1104	* The Ranking Panel is now being hidden if it is visible, when a battle is being replayed.
1105	* The reason for hiding the Ranking Panel is that the replay feature does not support displaying the current rankings during the replay, i.e. the current scores are not recorded.
1106
1107#### Command-line Options
1108* Added the new ``-DPARALLEL`` option (set to ``true`` or ``false``), which allows robots to run in parallel intended to take advantage of more CPU's available in the system.
1109	* This option may speedup battles with multiple CPU time consuming robots. However, the time measuring is not per robot.
1110* Added the new ``-DRANDOMSEED`` option (set to a random seed value), which enables the new repeatable and deterministic random generator.
1111	* The benefit of using this option to make it easier to test and debug your robots, as your robots will appear in the exactly same positions, when you rerun a battle.
1112* The ``-DPARALLEL`` and ``-DRANDOMSEED`` option has no effect when running RoboRumble, MeleeRumble, and TeamRumble.
1113
1114#### New Random Generator
1115* Added a new deterministic and repeatable random generator is used by the game and overrides the random generator used throughout the whole virtual Java machine.
1116	* Methods like e.g. ``Math.random()`` will be using the exactly the same deterministic random generator enforced by Robocode.
1117* The new random generator will only be deterministic, if the ``-DRANDOMSEED`` option is enabled, i.e. when ``-DRANDOMSEED=12345678`` (or another value). Otherwise the the battles will run truly randomized.
1118
1119#### System Logging
1120* The system log output has now been split, so logged errors are sent to ``System.err`` and logged messages are sent to ``System.out``.
1121	* This makes it possible to filter out messages from errors when reading out the logs from Robocode.
1122* The system log also includes a full stack trace when errors are logged, making it easier to determine where an error has occurred.
1123
1124#### Various Usability Issues
1125* [Bug-130][]: Various usability issues.
1126	* Added "Enable all" and "Disable all" button in the View Options of the Preferences.
1127	* When the TPS slider is set to 0, the game is paused, and the Pause/Resume button set to paused mode.
1128		* When the TPS is 0 and the Pause/Resume button is pressed, the game will resume at 1 TPS, and the TPS slider will now move to 1.
1129	* In the New Battle window, the focus is now kept in the list of available robots when one of the two 'Add' buttons has been pressed.
1130		* Previously the focus was lost, and you had to reselect robots in the list of available robots in order to add more robots.
1131	* Multiple robots can now be added to a battle by using the arrow keys with e.g. the Alt+A.
1132	* Rearranged the order of menu items here and there, and also improved the name of some menus.
1133
1134## Version 1.6.0.1 (03-Jun-2008)
1135
1136### Bug Fixes
1137* [Req-74][]: Option for enabling/disabling robot timeouts.
1138	* It was not possible anymore to debug robots from Eclipse as ``TimeoutExceptions`` occurred when trying to resume from a breakpoint.
1139	* Now, Robocode must be started by adding the option ``-Ddebug=true`` to the VM arguments when debugging Robocode from Eclipse (or any other IDE).
1140	* The documentation (Wiki) about how to debug robots using Eclipse using the ``-Ddebug=true`` option will be updated.
1141* Fixed missing internal robot proxy layer introduced in Robocode 1.6.0.
1142
1143## Version 1.6.0 (01-May-2008)
1144
1145### Bug Fixes
1146* The CPU constant was not calculated the first time Robocode was started up.
1147* [Bug-123][]: Compiler fails to build due to CR/LF in scripts.
1148	* Removed ^M characters from the buildJikes.sh file so that the Jikes compiler can be built under *nix based system like Linux and Mac OS X.
1149* Fixed a security issue where robots could access the internals of the Robocode game thru the AWT Event Queue.
1150	* Robots that try to access the AWT Event Queue will now be disabled due to "bad behaviour".
1151
1152### New Robot Interfaces
1153* A new package named ``robocode.robotinterfaces`` has been introduced, which contains pure Java robot interfaces for basic, advanced, interactive, junior and team robots.
1154	* See the Robocode Javadocs (HTML) documentation for more details about these new interfaces [here](http://robocode.sourceforge.net/docs/robocode/robocode/robotinterfaces/package-summary.html).
1155* The main purpose of the new robot interfaces is to make it possible for robot developers to create new robot types with their own API, but also to create robots using other programming languages, which requires used of interfaces instead of classes.
1156* The robot interfaces obeys the rules within Robocode, so it is not possible to create new game rules. However, it is possible to create new robot types with other methods names etc. (new API) based on the new robot interfaces. Also note that is is possible to create your own robots based directly on the robot interfaces.
1157* See the new '/robots/sampleex' directory for some examples of how to use these new interfaces in Java.
1158* The introduction of the new robot interfaces required a great deal of changes and cleanup of the internal structures of Robocode, but for the better (future).
1159* A new command line option has been made for Robocode named ``EXPERIMENTAL``, which must be set to ``true`` in order to allow the robots to access the internal robot peer with the robot interfaces for performing robot operations.
1160	* When this flag is not set, you'll get a SecurityException in your robot if it is inherited from a robot interface.
1161	* This option must be set in the robocode.bat or robocode.sh like ``-DEXPERIMENTAL=true``.
1162	* **Note** that this experimental option might be removed in the future so that robots are always allowed to access the robot peer from the new robot interfaces.
1163* Most work with the robot interfaces was performed by Pavel Savara that has joined the development of Robocode, who have done a tremendous job with the new robot interfaces.
1164
1165### Other Changes
1166* Added a "Make all bullets white" option to the Rendering Options.
1167* When this option is enabled, all bullets on the battle field will be painted in white.
1168	* Use this options when you need to see all bullets on the battle field, i.e. when bullet colors are almost invisible. That is, some robots might try make the bullets "invisible" to cheat the observer.
1169	* Thanks goes to [Robocode Ireland](http://robocode.ie/) for holding a turnament showing that this option was crusial when battles are shown on a big screen for a large audience.
1170* Lots of the Javadoc (HTML) documentation for the Robocode APIs were updated.
1171
1172## Version 1.5.4 (15-Feb-2008)
1173
1174### Bug Fixes
1175* [Req-62][]: Fix for massive turn skipping when cpu constant < granularity.
1176	* The CPU constant was way too little compared to version 1.4.9.
1177	* This is a critical bug when Robocode is used for competitions like the [RoboRumble][].
1178	* Now the CPU calculation has been improved by using a heavy math benchmark that have been adopted from Robert D. Maupin ("Chase-san").
1179* The method for determining if a robot has exceeded it's CPU time limit has been improved to use nano second precision (using ``System.nanoTime()``), to get rid of an issue with millisecond granularity that is too coarse.
1180	* This method was created by Julian Kent ("Skilgannon").
1181
1182## Version 1.5.3 (30-Jan-2008)
1183
1184### Bug Fixes
1185* [Bug-122][]: Not all shortcut keys work on MacOS.
1186* Some of the mnemonics on the menus on the Help menu did not work correctly.
1187* ``NullPointerException`` occurred when clicking a robot button on the right side of the battle view, when no battle was running.
1188
1189### Changes
1190* Keyboard shortcuts have been replaced to comply with OSes where the function keys (F1 - F12) are not available or have a specific purpose, and thus should not be overridden.
1191	* The F5 shortcut key for refreshing the list of available robots in the New Battle, Robot Packager, Robot Extractor, and Team Creator window has been changed to 'modifier key' + R, i.e. Ctrl+R on Windows and Linux, and Command+R for Mac OS.
1192	* The F6 shortcut key for 'Compile' has been changed to 'modifier key' + B, i.e. Ctrl+B on Windows and Linux, and Command+B for Mac OS.
1193	* The F3 shortcut key for 'Find Next' has been changed to 'modifier key' + G, i.e. Ctrl+G on Windows and Linux, and Command+G for Mac OS.
1194* When a robot or team is being packaged an UUID is added in the .properties and/or .team files in the newly generated robot or team archive file (robot/team .jar file).
1195	* The UUID is a unique identifier for the robot or team, which is generated every time a robot or team package is being created or overwritten.
1196* This feature has been made to support New Features provided in Robocode Repository, which is currently being updated.
1197
1198## Version 1.5.2 (08-Jan-2008)
1199
1200### Bug Fix
1201* On some systems Robocode would not start up when trying to run robocode.bat or robocode.sh.
1202
1203## Version 1.5.1 (12-Dec-2007)
1204
1205### Bug Fix
1206* Fixed security flaw with the Event Dispatch Thread, where robots could use the ``SwingUtilities.invokeLater()`` for running any code they should like to.
1207	* Thanks goes to John Cleland who reported this security flaw and provided some very good examples of robots that could do some nasty cheats/hacks.
1208
1209## Version 1.5 (05-Dec-2007)
1210
1211### Bug Fixes
1212* [Bug-115][]: AWTException with RoboRumble on OS X.
1213* [Bug-97][]: Exception when packaging robots.
1214
1215### Changes
1216* [Req-58][]: HitRobotEvent - damage.
1217	* Redundant ``HitRobotEvents`` are no longer occurring when Robocode is performing collision detection between two robots.
1218		* Previously, if a collision occurred between a stationary robot (i.e. not moving) and another robot that was moving, then two ``HitRobotEvents`` would first be sent to each robot based on the stationary robot - even though no damage was done. Next, two ``HitRobotEvents`` would be sent to each robot based on the robot that was moving, which **was** causing damage.
1219		* Now ``HitRobotEvents`` will only occur when damage is done to each robot. No ``HitRobotEvents`` will be ever be sent when no damage is done. That is, when a stationary robot is "colliding" with another robot.
1220* [Req-57][]: Events processed in chronological order.
1221	* The events in the robot event queue are now sorted in chronological order so that events that occurred before newer events gets processed first.
1222		* Previously, the event queue was ordered based on the event priorities so that the events with the highest priorities were processed first.
1223			* This could cause some problems with robots with skipped turns, as their event queue would potentially contain events from different time frames.
1224		* Now it is perfectly safe for robots to assume that events occurring before other event are processed first.
1225		* Events occurring in the same time frame is still sorted based on their priorities so that the events with higher priorities are processed before events with lower priorities.
1226* [Req-53][]: More control over the event queue.
1227	* The priority of the ``DeathEvent`` was changed from the reserved priority 100 to -1 in order to allow robots to process all pending events before they die.
1228		* Previously, robots were not able to process all events when it died as the ``DeathEvent`` was having the highest possible priority.
1229		* Now, when the ``DeathEvent`` has the lowest priority, meaning that this event will be the last event left on the robot's event queue before it dies. That is, all events in the event queue have already been processed when reaching the ``DeathEvent``.
1230* [Req-60][]: Enhanced CPU constant calculation.
1231	* The CPU constant is now measured in nanoseconds rather than milliseconds.
1232	* Using New Features introduced of Java 5.0 that provides more precise timing and also offer better granularity of timings.
1233* [Req-64][]: Change default battle settings like e.g. "Number of Rounds".
1234	* The "Number of Rounds" value on the New Battle Dialog is now saved and restored when the game is restarted, i.e. Robocode remember Number of Rounds you used the last time.
1235* Improved the output of the command line usage of Robocode when called from the command line with the ``-?`` or ``-help`` option.
1236
1237### New Features
1238* [Req-54][]: All input received from events.
1239	* The Robot class has got a new ``onStatus(StatusEvent e)`` method.
1240		* This event handler is automatically called for each turn of a battle, which contain a complete snapshot of the current robot state at that specific time/turn.
1241		* This new method makes it possible to map a specific robot class field value to a specific time.
1242* [Req-56][]: Robots Cache Cleaner.
1243	* Added the Robot Cache Cleaner tool created by Aaron Rotenberg ("AaronR").
1244	* This tool is used for cleaning the cache files of the robots, which is very useful with the [RoboRumble][] client, where most problems with the robot repository can be solved by cleaning the robot cache files.
1245	* This tool is activation by selecting "Clean Robot Cache" in the Options menu or by running the tool from a command line (standing in the robocode home directory):
1246
1247			java -cp ./libs/robocode.jar;./libs/cachecleaner.jar ar.robocode.cachecleaner.CacheCleaner
1248
1249## Version 1.4.9 (07-Nov-2007)
1250
1251### Bug Fixes
1252* [Bug-120][]: The renderering is slower on Vista than XP?
1253* [Bug-116][]: Exclude filter removes bots from the RoboRumble.
1254	* [RoboRumble][] participants excluded with the ``EXCLUDE`` filter were removed from the ratings, which is not the intension.
1255	* In addition, if trailing white-spaces occurred with the comma-separated list for the ``EXCLUDE`` filter, the filter did not filter out participants correctly.
1256	* With the release of 1.4.8 this bug was claimed to be fixed, but unfortunately the bug fix was missing in the build of the 1.4.8 release.
1257* Corrected bug seen with the ``JuniorRobot``, when first calling ``turnAheadLeft(100,90)`` and then ``turnRight(90)`` right after this call, where the robot turn quickly to the left, but slowly to the right.
1258* The calculation of the possible frame rate (FPS) was calculated incorrectly.
1259	* This caused Robocode to run with lower FPS (when rendering battles on the GUI) compared to what is possible with the available hardware.
1260	* With this bug fix, Robocode will render the battles even faster than before in most cases.
1261
1262### Changes
1263* When a new CPU constant is being calculated it will now take the system time granularity (OS dependent) into account.
1264	* Previously, if the CPU constant was less than the time millis granularity, then skipped turns could occur on robots when the CPU constant < system time millis granularity.
1265
1266## Version 1.4.8 (25-Oct-2007)
1267
1268### Bug Fixes
1269* [Bug-114][]: Wait Interrupted Message.
1270	* With Robocode 1.4.7 a minor bug was introduced so that the robot console printed out "Wait interrupted" when a round was completed.
1271* [Bug-117][]: Sound card is being dodgey/not detected by OS causes error.
1272* [Bug-118][]: Battles fail when executing with Eclipse debugger.
1273	* When debugging robots or the Robocode game itself within Eclipse on Windows, the Java VM was crashing with an "Access Violation".
1274
1275## Version 1.4.7 (09-Oct-2007)
1276
1277### Bug Fixes
1278* [Bug-112][]: Forcing stop: no score will be generated.
1279	* Some robots did not receive any score even though they won the battle.
1280	* The cause of this bug was due to Robocode that did not always detect if the robot's thread(s) had been properly terminated.
1281	* Thanks goes to Eric Simonton, David Alves, and Aaron Rotenberg ("AaronR") for help solving this issue!
1282* Teams located in the '/robots/.robotcache' directory were still put into the robot.database file.
1283	* Thus, teams located in the .robotcache directory were incorrectly shown in the New Battle dialog.
1284* [Bug-110][]: Partial match recording replay.
1285	* "Ghost" rounds: When stopping a battle while recording was enabled and then replaying the recorded battle, Robocode would show the last rounds of the battle even though no recording occurred for these rounds.
1286* [Bug-113][]: ``-battle`` option runs at full speed.
1287	* When using the ``-battle`` option Robocode would run at full speed, i.e. the TPS set to maximum, even though the GUI was enabled with a predefined TPS.
1288	* Now, the TPS is only set to maximum when the ``-nodisplay`` option is being used.
1289* [Bug-111][]: Wasted time at end of each round.
1290	* Robocode was wasting time on trying to wake up robots that were dead.
1291	* Robocode was blocked for the amount of milliseconds defined by the CPU constant when a robot was killed in a battle, as Robocode was waiting for the dead robot to wake up for exactly this amount of time.
1292* [Bug-85][]: No window position in-bounding.
1293	* When starting Robocode, saved window locations (x and y coordinate) of a window might not fit into any of the available screens/displays (e.g. virtual desktop).
1294	* Robocode will now center windows into the current screen displayed.
1295
1296### Robocode Changes
1297* The Stop button is now only enabled when a battle is running and will will be disabled after the battle has ended.
1298
1299### RoboRumble Changes
1300* The configurations files roborumble.txt, meleerumble.txt, and teamrumble.txt have been improved:
1301	* All properties are now documented and have been grouped more logically.
1302	* The ``BATTLESPERBOT`` property has been raised to 2000 for the RoboRumble and MeleeRumble.
1303* [Req-55][]: Exclude Filter for RoboRumble.
1304	* An exclude filter has now been added, which makes it possible to exclude participants that causes trouble somehow.
1305		* The exclude filter is controlled using the new ``EXCLUDE`` property, which takes a comma-separate list of participants where the wildcards * and ? can be used
1306		* Excluded participants are not added to the participants file, and will not be downloaded or take part in battles.
1307
1308## Version 1.4.6 (25-Sep-2007)
1309
1310### Bug Fixes
1311* [Bug-107][]: Bullet hit locations reported inaccurately.
1312	* The coordinates of a ``Bullet`` from a bullet event like ``HitByBulletEvent()`` was not correct as the coordinates of the bullets would follow the bullet explosion on the robot it has hit.
1313	* Now the coordinates of the ``Bullet`` will not change when it hits a robot or another bullet, even though the coordinates of the bullet explosion will change internally (for painting the explosion).
1314		* This means that the coordinates of a bullet received from a bullet event will actually be on the real bullet line.
1315	* The initial explosion painting on a robot has also changed so it shows exactly where the bullet has hit the robot.
1316* When Robocode cleaned up the robot database a ``NullPointerException`` could occur if the robot database was pointing to a missing file.
1317* [Bug-108][]: It is possible to restart a battle without any robots.
1318	 * The Restart button was enabled when no battles had previously been started.
1319* [Bug-106][]: Incorrect repaint of paused battlefield.
1320	* The areas of the battle field was repainted with the black background together with the Robocode logo when the game was paused and the battle window was repainted. Hence, it was not possible to see the current state of the game on the battle field.
1321* [Bug-98][]: When minimized doesn't show actual tps.
1322	* When the Robocode window was minimized the actual TPS and FPS were not shown.
1323* When installing new versions of Robocode on top of an existing Robocode installation, the About window did not have the right height.
1324
1325### Changes
1326* The color of each bullet is now independent on the current color set with the ``setBulletColor()`` method.
1327	* Previously, all bullets were instantly changing their colors when ``setBulletColor()`` was called.
1328	* Now, the color of the bullet will stick to the bullet color set when the bullet was fired.
1329* Improved the "Check for new version", so that is able to differ between release type as alpha, beta, and final release types.
1330
1331## Version 1.4.5 (17-Sep-2007) The "Fair Play" release
1332
1333### Bug Fixes
1334* [Bug-104][]: Reproducable scoring bug.
1335	* Unfair play: Two robots with the same code (but different names) would get different scores instead of a 50-50 split.
1336	* Robots listed before other robots in a battle would gain a minor benefit compared to the other robots. This was in particular the case if they killed each other at the same time. Then the robot listed first would get a "half turn" advantage over the other robot.
1337	* Now, the ordering does not matter anymore, as when ever the robots are checked one at a time in sequence, then they will be checked in random order.
1338* [Bug-103][]: ConcurrentModificationException.
1339	* ``ConcurrentModificationException`` could still occur when called one of the ``getXXEvent`` methods with an ``AdvancedRobot``.
1340	* Now all ``getXXEvent`` methods like e.g. ``getAllEvents()`` are all synchronized directly with the internal event queue of the robot before reading out the events.
1341* [Bug-105][]: ``testingCondition`` flag not reset.
1342	* Test Condition flag of a robot was not reset between rounds.
1343	* If the robot thread was disabled while testing a condition for a custom event all following rounds will trigger an exception:
1344
1345			robocode.exception.RobotException: You cannot take action inside Condition.test(). You should handleonCustomEvent instead.
1346
1347* [Bug-101][]: "Keyboard lockup" with interactive robots.
1348	* The sample robot named ``sample.Interactive`` has been changed for Robocode 1.4.5 so it continues moving forward or back when the UP or DOWN arrow key is being pressed down. Previously, the robot would only move 50 pixel when pressing down the UP or down arrow key, which was not intuitive compared to the behaviour with traditional first person shooter games. Thus, this looked like a bug.
1349* [Bug-87][]: Round indicator incorrect.
1350	* Again, the title of Robocode was incorrectly showing round N+1 of N when a battle was ended.
1351* Memory leaks occurring during a round due to missing cleanup of bullets have been removed.
1352	* Note that _ALL_ bullets were actually cleaned up, when ending the battle (containing one or several rounds).
1353	* One good side-effect of this bug fix is that the game is speeded up, especially when running in minimized mode, as the game does not have to perform unnecessary calculations on bullets that is not visible on the battle field anymore.
1354
1355### Changes
1356* The sample robot named ``sample.Interactive`` has been changed so it continues moving forward or back when the UP or DOWN arrow key is being pressed down.
1357	* Previously, the robot would only move 50 pixel when pressing down the UP or down arrow key, which was not intuitive compared to the behaviour with traditional first person shooter games. Thus, this looked like a bug.
1358
1359## Version 1.4.4 (09-Sep-2007)
1360
1361### Bug Fixes
1362* With version 1.4.3 a bug was introduced so that ``battleAborted()`` was called in the ``robocode.control.RobocodeListener`` when the battle was not aborted, i.e. when a battle completes successfully.
1363	* This bug caused Robocode clients as e.g. RoboRumble to hang!
1364* Removed Windows end-of-line characters from the .sh files for RoboRumble.
1365
1366### Change
1367* Robocode now throws a ``NullPointerException`` if the condition parameter has been set to null when calling ``addCustomEvent()`` or ``removeCustomEvent()`` on an ``AdvancedRobot``.
1368
1369## Version 1.4.3 (07-Sep-2007)
1370
1371### Bug Fixes
1372* [Bug-95][]: OutOfMemory: Robots are Being Left on the Stack.
1373	* Major bug fixes was done by Nathaniel Troutman to get rid of large memory leaks, especially when creating and destroying ``robocode.control.RobocodeEngine`` instances many times.
1374	* Most of the memory leaks were caused by circular references between internal classes/objects in Robocode. Now, these such circular references are cleaned up.
1375* The configuration files for RoboRumble was completely missing under the /roborumble folder, i.e. the meleerumble.txt, roborumble.txt, and teamrumble.txt.
1376* [Bug-94][]: Inconsistent Behavoir of ``RobocodeEngine.setVisible()``.
1377	* This fix was done by Nathaniel Troutman.
1378	* When invoking the RobocodeEngine to directly run a battle(s) and calling ``RobocodeEngine.setVisible(true)``, and then later call ``RobocodeEngine.setVisible(false)`` the results dialog would still show up at the end of a battle.
1379* [Bug-96][]: Initializing Label even when no display.
1380	* Did another fix where a dummy AWT (GUI) component was created even though the GUI was disabled causing problems when trying to run e.g. RoboRumble remotely without the GUI enabled.
1381* [Req-52][]: The 'New Battle' window sometimes is spamed with .robotcache.
1382	* Sometimes the "New Batle" window would show robot classes that reside in the .robotcache folder under the /robots folder. This occurred when the robot database was (re)builded, e.g. if the robot.database file was missing.
1383* [Bug-99][]: Clicking on a bottom area results in ``ClassCastException``.
1384	* When running battles including the MyFirstJunior and the pressing the mouse button outside of the battle field a ``ClassCastException`` would occur.
1385* [Bug-100][]: Double-clicking "restart".
1386	* When double-clicking the Restart button for the battle window the UI could lock up completely trying to play all battles, and it would not be possible to stop the battle.
1387
1388## Version 1.4.2 (26-Aug-2007)
1389
1390### Bug Fixes
1391* [Bug-92][]: RoboRumble tries to connect with GUI.
1392	* RoboRumble was invoking AWT (GUI) stuff when running, which caused problems on systems without support graphical display or running [RoboRumble][] remotely behind a firewall.
1393* [Bug-102][]: Bots can hold memory after being destroyed.
1394   * When running ``robocode.control.RobocodeEngine`` it caused memory leaks each time a new instance of the ``RobocodeEngine`` was created, even though the object was completely destroyed.
1395* [Bug-93][]: ``onPaint(Graphics2D g)`` called prematurely.
1396	* The ``onPaint()`` method was invoked just before the robot got the chance of updating it's internal world model.
1397	* Now the battle view is updated as the first thing right after the robots have updated their internal model.
1398* [Bug-71][]: RobocodeEngine becomes slower the more battles that are run.
1399	* The Robocode engine was halted with spurious exceptions when an exception occurred inside an ``onPaint()`` method in a robot, i.e. when the robot itself causes an exception inside ``onPaint()``.
1400	* Now, whenever an exception occurs inside the ``onPaint()`` method of a robot, the exception is now being catched by Robocode and printed out in the robot console.
1401	* Due to this bug exception handlers have now been added to all ``onKeyXX`` and ``onMouseXX`` events, where the exceptions are now printed out to the robot console.
1402* A ``ConcurrentModificationException`` bug did still occur with the internal ``EventQueue`` of a robot.
1403
1404## Version 1.4.1 (19-Aug-2007)
1405
1406### Bug Fix
1407* [Bug-91][]: ``ConcurrentModificationException``.
1408	* A couple of ``ConcurrentModificationException`` bugs were introduced with version 1.4, which are now fixed.
1409	* Thank goes to Helge Rhodin ("Krabb") for help with solving the bug!
1410
1411## Version 1.4 (14-Aug-2007) The "Junior Robot" release
1412
1413### Bug Fixes
1414* [Bug-88][]: Scorch layer.
1415	* I changed the behaviour of the scorch marks + plus a lot more.
1416* Static fields on robots were not cleaned up anymore after each battle has ended.
1417* [Bug-90][]: Limit per round, not turn.
1418	* When printing to ``out`` in ``onScannedRobot()`` event before a ``scan()`` call, the the logging to out would stop with an system error that to much is printed out.
1419
1420### Changes
1421
1422#### Added JuniorRobot
1423* The ``JuniorRobot`` class is simpler to use than the ``Robot`` class and has a simplified model, in purpose of teaching programming skills to inexperienced in programming students.
1424	* This new robot type has been designed by Nutch Poovarawan / Cubic Creative team.
1425* Added ``sample.MyFirstJuniorRobot``.
1426	* This robot is very similar to ``MyFirstRobot``, but tracks it's scanned enemy better.
1427
1428#### GUI: Changed Menu Shortcut Key
1429* Robocode forced the use of the Ctrl key to be used as menu shortcut key.
1430	* Now Robocode ask the Java VM what menu shortcut key to use.
1431* This change means that Mac OS X users should now use the Command key instead of the control key.
1432	* Thanks goes to Nutch Poovarawan for the tip of how to do this! :-)
1433
1434#### Improved Battle View a bit
1435* A red border is now painted around the battlefield when the battleview's height and/or width is larger than the battlefield.
1436* Explosions are painted outside the battlefield, when the battleview is larger than the battlefield.
1437* The text for the Robot names and scores are now "clipped" to the width and height of the battleview instead of the battlefield.
1438
1439#### Added "Recalculate CPU constant" to the Options Menu
1440* [Req-50][]: Recalculate CPU Constant.
1441	* This makes it possible to force recalculation of the CPU constant.
1442
1443#### RoboRumble Changes
1444* Redundant RoboRumble config files are now removed from the /config folder.
1445* Changed ``UPLOAD=NOT`` to ``UPLOAD=YES`` as default, i.e. the results are now automatically uploaded to the RoboRumble server.
1446
1447## Version 1.3.5 (04-Jul-2007) The "Fast renderings" release
1448
1449### Bug Fixes
1450* [Bug-87][]: Round indicator incorrect.
1451	* The title was displaying "Playing round N+1 of N" when the battle has ended.
1452* [Bug-86][]: Using UI removes focus from interactive bots.
1453	* Key events are now received even though the battle view does not have the focus.
1454
1455### Changes
1456
1457#### Faster Rendering
1458* The battle rendering is now 30-50% faster due to image buffering (but uses more memory).
1459* A new "Buffer images" option under the Rendering Options can be enabled/disabled on the fly while playing a battle.
1460	* By default, "Buffer images" is enabled which makes the rendering faster, but which also uses additional memory.
1461* Due to the faster renderings, explosion debris is now enabled by default.
1462
1463#### Controlling Robocode
1464* The container classes in the robocode.control package are now Serializable, which makes it easy to load and store, battle specifications, results etc., but also to send these over the network.
1465
1466## Version 1.3.4 (27-Jun-2007) The "Interactive" release
1467
1468### Bug Fixes
1469* [Bug-84][]: Preferences page problem on machine w/out sound card.
1470	* ``NullPointerException`` occurred when trying to open the Sound Options page from the Preferences when no sound card (or actually audio mixer) is present in the system.
1471
1472### New Features
1473* The Robot class has now been extended with keyboard and mouse events/methods:
1474	* ``onKeyTyped(KeyEvent)``
1475	* ``onKeyPressed(KeyEvent)``
1476	* ``onKeyReleased(KeyEvent)``
1477	* ``onMouseMoved(MouseEvent)``
1478	* ``onMouseClicked(MouseEvent)``
1479	* ``onMousePressed(MouseEvent)``
1480	* ``onMouseReleased(MouseEvent)``
1481	* ``onMouseEntered(MouseEvent)``
1482	* ``onMouseExited(MouseEvent)``
1483	* ``onMouseDragged(MouseEvent)``
1484	* ``onMouseWheelMoved(MouseEvent)``
1485
1486	These New Features adds a new dimension to the game, i.e. you could make robots that must be controlled entirely manual, semi-automized robots, or press various key for changing between various robot strategies, e.g. when debugging.
1487
1488	Thus, it is now possible to create robots where multiple human players battle against each other, or compete against existing legacy robots.
1489
1490### New Sample Robot
1491* A new sample robot named "Interactive" has been added to demonstrate how to control a robot using keyboard and mouse events only.
1492* This robot is controlled by the arrow keys and/or the mouse wheel, and let the gun point towards the current coordinate of the mouse pointer used for aiming. Mouse buttons are used for firing bullets with various fire power.
1493
1494### Minor Changes
1495* The background Robocode logo has been changed into green and the Robocode slogan "Build the best, destroy the rest" was added.
1496
1497## Version 1.3.3 (22-Jun-2007)
1498
1499### Bug Fixes
1500* [Bug-82][]: Undo comment does not change font color of code.
1501	* Wrong colors when undoing and redoing multiline comment in the Robot Editor
1502* When a battle was stopped a new battle could start before the previous battle was closed down.
1503* When restarting a battle while it was paused caused strange behaviour with new battles, and the "Next Turn" button stopped working.
1504* [Bug-83][]: Ranking Panel Does not update number of competitors.
1505	* In some situations the Rankings Panel did not show the results for all robots.
1506	* This could be seen if first playing a battle with only 2 robots, and then start a new battle with more robots. In this case, only the rankings for the top 2 robots were shown.
1507
1508### Changes
1509* The Rankings Panel and Results Dialog are now automatically packed to fit the table containing the rankings/results.
1510
1511## Version 1.3.2 (09-Jun-2007)
1512
1513### Bug Fixes
1514* The ``sample.SittingDuck`` would not start when no GUI is enabled.
1515* The Look and Feel is not set if the GUI is disabled.
1516* The robocode.sh ignored command line arguments (e.g. under Linux and Mac).
1517* [Bug-80][]: Results file is empty with the command line.
1518   * When setting the ``-result`` parameter from the command line the results file was empty.
1519
1520### Changes
1521* When specifying the ``-battle`` parameter the .battle extension and battle directory can be omitted.
1522	* Hence you can write ``-battle sample`` instead of ``-battle battles/sample.battle``.
1523	* If a specified battle file does not exist Robocode will now exit with an error.
1524* If you specify the ``-results`` parameter the last results will now always be printed out, i.e. with and without the GUI enabled. Otherwise, if the GUI is not enabled (by setting the ``-nodisplay`` parameter) then the last results will be printed out to system out.
1525
1526## Version 1.3.1 (30-May-2007)
1527
1528### Bug Fixes
1529* When loading a battle, the robots specified in the battle file were not selected on the battle dialog.
1530* When the intro battle has finished the battle settings are now reset to the default battle settings.
1531	* This fixes the issue were the fixed robot starting positions are still used in new battles and where the "Number of Rounds" was set to 1 instead of 10.
1532* [Bug-79][]: Output displayed in bursts.
1533	* The output in the robot console windows were written out in bulks instead of immediately.
1534* Bugs fixed in RoboRumble which could cause a ``IllegalThreadStateException``.
1535
1536### Changes
1537* Robocode will now print out an error message and just proceed if problems arise with trying to set the Look and Feel (LAF) to the system LAF.
1538* [Req-44][]: Restart tweak.
1539	* When stopping or restarting a battle, the battle will now stop immediately instead of continuing for a while showing robot explosions when the robots are being terminated due to the stop.
1540* [Req-45][]: Reset compiler cancel button.
1541	* Added confirm dialog when trying to reset the compiler preferences from the Compiler -> Options -> Reset Compiler in the Robocode Editor in order to prevent the compiler preferences to be reset by accident.
1542
1543### New Features
1544* Added link to Java 5.0 Documentation in the Help menu.
1545
1546## Version 1.3 (17-May-2007) Now featuring the RoboRumble client
1547
1548### Bug Fixes
1549* [Bug-78][]: Robots are disabled with no timer or countdown.
1550* [Bug-74][]: Java FilePermission error during startup.
1551	* The Event Dispatch Thread was denied access by the Robocode Security Manager.
1552* [Bug-75][]: ``getTeammates()`` problem.
1553	* Changed back the ``TeamRobot.getTeammates()`` to return ``null`` if no teammates are available.
1554	* This rollback was done in order to keep compatibility with robots developed for older versions of Robocode.
1555* [Bug-72][]: The game won't play sounds on 2nd launch.
1556	* No sounds were played (when enabled) when Robocode was launched the second time.
1557* [Bug-73][]: Sound don't work.
1558* [Bug-76][]: Unique error.
1559	* Lots of synchronizations issues and potential ``ConcurrentModificationExceptions`` have been fixed.
1560* [Bug-70][]: Version 1.2.6A incompatible with Roboleague.
1561	* The bug causes this exception:
1562
1563			Exception in thread "Thread-4" java.lang.NoSuchMethodError: robocode.control.RobotResults.getRamDamageBonus()
1564* [Bug-69][]: Robot causes Null Pointer Exception.
1565	* Fixed ``NullPointerException`` occurred when a robot is forced to stop.
1566* When using ``robocode.control.RobocodeEngine`` it was not possible to play team battles. Instead an ``ArrayOutOfBoundsException`` occurred.
1567* ``robocode.control.RobotResults.getRamDamage()`` incorrectly returned a double instead of an integer.
1568	 * This bug caused problems with running Robocode on RoboLeague.
1569* The "Enable replay recording" got set if it was not set after running Robocode without the robocode.properties file the first time.
1570* ``NullPointerException`` could occur when using ``robocode.control.RobocodeEngine`` and the GUI was not enabled.
1571* The text field for the filename in the robot packager was way too high.
1572* In RoboRumble, the codesize of some robots were incorrectly calculated to be 0 bytes, and hence these robots was not able to participate in [RoboRumble][] battles.
1573* This was due to the codesize tool, which could not analyze .jar files inside .jars.
1574
1575### Changes
1576
1577#### RoboRumble Client is now built-in
1578* [Req-39][]: Support for RR@Home
1579	* RoboRumble@Home client, originally developed by Albert Prez, is now built-in.
1580	* [RoboRumble][] is the ultimate collaborative effort to have a live, up-to-date ranking of bots.
1581	* It uses the power of available robocoder's computers to distribute the effort of running battles and building the rankings.
1582	* For more information about RoboRumble@Home you should read its [home page](http://robowiki.net/wiki/RoboRumble).
1583	* The version of the RoboRumble client included in Robocode is an updated version of the original one that can run with the current version of Robocode and which has been ported to Java 5.
1584	* Configuration files has been updated, and are available in the 'roborumble' folder.
1585	* Issues with downloading robots from the Robocode Repository site has been fixed.
1586	* Special thanks goes to Gert Heijenk ("GrubbmGait") who did a tremendous job with lots of alpha testing regarding the new RoboRumble@Home built into Robocode! :-D
1587
1588#### Codesize
1589* [Req-38][]: Codesize.
1590	* The codesize tool by Christian D. Schnell has been added to support the built-in [RoboRumle][] plus a new feature for getting the codesize and robot codesize class (MiniBot, MegaBot etc.) when a robot is being packaged.
1591	* This tool has now been taken over by Flemming N. Larsen (agreed with Christian) and updated to version 1.1, which can handle files > 2KB, and also analyse .jar files inside .jar files.
1592
1593#### Start Positions
1594* [Req-36][]: Initial Placement.
1595	* Added feature that allows specifying the initial start positions of the robots on the battlefield.
1596	* By specifying positions by setting ``robocode.battle.initialPositions`` in a .battle using this format ``(x1,y1,heading1),(x2,y2,heading2),(?,?,?)`` you can specify the initial location and heading for each robot specified with ``robocode.battle.selectedRobots``.
1597		* One example is:
1598
1599				(50,50,90),(100,100,?),?
1600
1601			* This means that:
1602				1. the 1st robot starts at (50,50) with a heading of 90 degrees,
1603				2. the 2nd robot starts at (100,100,?) with a random heading,
1604				3. the 3rd (and last) robot starts at a random position with a random heading.
1605
1606	* See the battle/intro.battle for an example of how to use this option.
1607
1608#### Robot and Control API
1609* Added a new method called ``getNameAndVersion()`` to the ``robocode.control.RobotSpecification``.
1610	* This method was added to better support [RoboRumble][] and similar ranking programs.
1611* Changed the ``TeamRobot.broadcastMessage()`` so it does not throw an ``IOException`` when the robot is not in a team.
1612
1613#### Improved File Structure
1614* The file structure of Robocode has been slightly improved.
1615* All .jar files including robocode.jar are now located in the libs folder.
1616* The robot.database and .robotcache files has been moved to the robots folder.
1617* All RoboRumble related files are located in the roborumble folder.
1618
1619## Version 1.2.6A (11-Mar-2007)
1620
1621### Bug Fixes
1622* A ``NullPointerException`` occurred if the battle view was not initialized.
1623* This bug made it impossible to control Robocode via the ``robocode.control`` package when attempting to show the battle window.
1624
1625### Changes
1626* [Req-37][]: Running Score Window.
1627	* The Ranking Panel and Battle Results are now windows instead of dialoges.
1628	* This means that the Ranking Panel and Battle Results will still be visible when the game is running in minimized mode.
1629
1630## Version 1.2.6 (06-Mar-2007)
1631
1632### Bug Fixes
1633* [Bug-66][]: Crash: starting a new round while et.Predator 1.8 is playing.
1634	* With some robots, a ``java.lang.NoClassDefFoundError`` occurred when Robocode tried to cleanup the static fields occupied by the robot when the battles are over.
1635* [Bug-67][]: Some issues with MessageEvent + priority.
1636	* These 4 issues were fixed:
1637		1. In the Robocode API -> AdvancedRobot -> setEventPriority there is information about all event priorities except MessageEvent priority.
1638		2. You can call ``getEventPriority("MessageEvent")``, but when you call ``setEventPriority("MessageEvent", someValue)`` you gets a ``"SYSTEM: Unknown event class: MessageEvent"`` message and the priority doesn't change. (using ``TeamRobot``).
1639		3. ``getEventPriority("MessageEvent")`` returns 80, so (if it is true) it "collides" with ``CustomEvent`` priority which is also 80 by default. This way you can't assume which event will be called first basing on its priority.
1640		4. Unlike it is done for other events, there is no ``getMessageEvents()`` function.
1641* [Bug-68][]: Preferences not saved.
1642	* The rendering options was not set correctly when loading these between battle sessions.
1643* When using the ``RobocodeEngine.setVisible(true)`` the Robocode window was shown with the wrong size and without the native Look & Feel.
1644
1645### Changes
1646
1647#### New TeamRobot Method
1648* Added missing ``getMessageEvents()`` to the ``TeamRobot``.
1649
1650#### Default Event Priorities
1651* The changes were made as some events "shared" the same default priority, making it hard to tell which event would occur before the other.
1652* ``BulletHitBulletEvent`` priority was changed from 50 to 55.
1653	* Previously, both ``BulletHitEvents`` and ``BulletHitBulletEvents`` used priority = 50.
1654* ``MessageEvent`` priority was changed from 80 to 75.
1655	* Previously, both ``CustomEvents`` and ``MessageEvents`` used priority = 80.
1656* The Ranking Panel has been enhanced.
1657
1658#### Ranking Panel
1659* Now the Ranking Panel contains the same columns as the Battle Results.
1660* Both the current scores and total scores are shown together where it makes sense.
1661* The column names of both the Ranking Panel and Battle Results have been improved.
1662
1663#### New Pause/Debug Button
1664* [Req-35][]: Pause Button.
1665	* A Pause/Debug button has been added to the Robot Console window.
1666	* This is handy if you want to pause the game when only your robot's console window is open when the game is minimized.
1667
1668#### Battle Window
1669* The Pause/Debug button on the Battle Window has been changed into a toggle button.
1670* The "Next Turn" button is now always visible, but not alvays enabled.
1671
1672#### Documentation
1673* The documentation of the Robocode API (Javadoc) has been improved a lot.
1674
1675#### Installer
1676* The Installer is now checking is the user is running Java 5.0 or newer.
1677* If the Java version is older than 5.0, then an error message will display telling the user to install at least JRE 5.0 or JDK 5.0, and the installation is terminated.
1678
1679#### robocode.sh
1680* robocode.sh has been updated.
1681	* Armin Voetter has contributed with an improved version of robocode.sh so that the script resolves the path to Robocode by itself.
1682
1683## Version 1.2.5A (19-Feb-2007)
1684
1685### Bug Fix
1686* On some systems Robocode could not start up due to a ``NullPointerException`` in the internal sound manager/cache.
1687
1688## Version 1.2.5 (18-Feb-2007)
1689
1690### Bug Fixes
1691* [Bug-65][]: Cannot run robocode after installation.
1692* [Bug-63][]: BulletHitBullet only destroys one bullet.
1693	* When two bullets collided, one of the bullets was not destroyed, but continued.
1694* [Bug-64][]: Exception when referencing length of an array of ``String``.
1695	* ``TeamRobot.getTeammates()`` returned ``null`` instead of an empty array when no teammates are available.
1696* [Bug-62][]: Memory "Leak".
1697	* Memory leak could occur on robots using large objects on static fields.
1698	* Robocode now clean all static object fields that are not final after each battle, but not between rounds. That is, the static fields are now garbage collected.
1699* Some ``ConcurrentModificationException`` issues were removed.
1700
1701#### Changes
1702
1703### Sound Effects (SFX)
1704* The sound effects in Robocode can now be changed.
1705	* This is done by specifying the file for each sound effect using the ``file.sfx.xxx`` property keys in the robocode.properties file, e.g. the ``file.sfx.gunshot`` for setting the sound effect for gunshot.
1706
1707   	* ``robocode.file.sfx.gunshot``: the sound of a gun shot.
1708	* ``robocode.file.sfx.robotCollision``: the sound of a robot colliding with another robot.
1709	* ``robocode.file.sfx.wallCollision``: the sound of a robot hitting the wall.
1710	* ``robocode.file.sfx.robotDeath``: the sound of a robot dying, i.e. exploding.
1711	* ``robocode.file.sfx.bulletHitsRobot``: the sound of a bullet hitting a robot.
1712	* ``robocode.file.sfx.bulletHitsBullet``: the sound of a bullet colliding with another bullet.
1713
1714* The supported sound formats can be found [here](http://java.sun.com/j2se/1.5.0/docs/guide/sound/).
1715
1716#### Music Support
1717* Robocode now supports music.
1718* By specifying the file for each music file using these properties in the robocode.properties file for setting:
1719
1720	* ``file.music.theme``: the startup theme music.
1721	* ``file.music.background``: background music during battles.
1722	* ``file.music.endOfBattle``: the "end of battle" music when a battle is over.
1723
1724* The supported music formats can be found [here](http://java.sun.com/j2se/1.5.0/docs/guide/sound/).
1725
1726#### Misc.
1727* The column names in the Battle Results window have been improved.
1728* Keys in the robocode.properties file (the configuration file) are now automatically sorted when saved.
1729* Previously the keys were put in random order each time the property file was saved.
1730
1731## Version 1.2.4 (25-Jan-2007)
1732
1733### Bug Fixes
1734* [Bug-60][]: ``ConcurrentModificationException`` when extracting robots.
1735	* This exception sometimes occurred when robots were imported when Robocode was starting up.
1736* [Bug-59][]: Issue when setting the priority of a ``BulletHitBulletEvent``.
1737	* Added methods for setting and getting the priority of ``BulletHitBulletEvent`` that was missing completely in Robocode?!
1738* Removed ``IndexOutOfBoundsException`` when replaying battles.
1739* Explosion debrise was shown in the lower left corner (0,0) when starting battles and battle ground is set to visible.
1740* [Bug-61][]: Hang when checking for new version with no Internet access.
1741	* Robocode could hang when checking for a new version when no Internet connection was available.
1742	* Now a 5 second timeout has been added to prevent Robocode from hanging.
1743
1744### Changes
1745
1746#### Robots Die Faster
1747* [Req-33][]: Making robots die quicker (graphically).
1748	* Robocode stops painting the battlefield and playing sounds when a battle is ended after 35 turns.
1749	* However, the robots still have 120 turns until they are really killed like Robocode is used to, but the battle continues like if it was running in minimized mode (fast).
1750
1751#### Options
1752* The common options for enabling replay recording has been changed to disabled per default.
1753	* When running lots of battles in a row with replay recording enabled Robocode runs out of memory, which causes problems when running tournaments.
1754* Added "View Explosion Debris" option in the View Options.
1755	* Explosion debris is diabled per default as this feature can slow down the game with 25% - 50% when viewing battles.
1756
1757#### Javadocs
1758* [Req-34][]: Provide javadoc for robocode.util.Utils and robocode.control.
1759	* Javadocs have been provided for:
1760		* The ``robocode.util.Utils`` class providing angle normalizing methods.
1761		* The ``robocode.control`` package used for controlling Robocode externally.
1762
1763#### Files
1764* Fixed incosistency with .jar files located in the robot folder.
1765* Robot packages (.jar files) is now only extracted from the root of the robots folder.
1766* In previous Robocode versions when starting up Robocode without a robot.database file and .robotcache directory, Robocode would extract Robot packages from the root of the robot folder and also the sub folders. When running Robocode the first time without these files, robots from the sub folders were shown (if available), but not the following times when Robocode was started up.
1767	* This fix was done by Robert D. Maupin ("Chase-san").
1768
1769## Version 1.2.3B (14-Jan-2007)
1770
1771### Bug Fixes
1772* [Bug-58][]: ``NullPointerException`` during replay.
1773	* Titus Chen made a bug fix for a ``NullPointerException`` that caused a replay to stop.
1774	* This occurred when "Pan" was enabled for the mixer in the Sound Options during a replay.
1775* When using robocode databases ("robot.database") created with version 1.2.3 and earlier version in version 1.2.3A, Robocode crashed in the startup with a ``ClassCastException``.
1776
1777## Version 1.2.3A (12-Jan-2007)
1778
1779### Bug Fix
1780* [Bug-57][]: ``ConcurrentModificationException``.
1781	* Removed a ``ConcurrentModificationException`` that occurred when processing robot events.
1782
1783### Changes
1784* Robert D. Maupin ("Chase-san") replaced all old type Java containers like ``Vector``, ``Hashtable``, ``Enumeration`` with the newer and faster types like ``ArrayList``, ``HashMap``, and ``Set``.
1785	* This improves the performance a bit, especially when running in "minimized" mode.
1786
1787## Version 1.2.3 (10-Jan-2007)
1788
1789### Bug Fixes
1790* Removed ``NullPointerException`` when trying to restart the initial intro battle.
1791* [Bug-54][]: Flickering when constantly changing colors.
1792	 * Titus Chen made a fix for this fix, which occurred when the max. amount of robot colors (i.e. 256) was exceeded.
1793* [Bug-55][]: Incorrect score after replay.
1794	* Thanks goes to Titus Chen for reporting this issue + providing a fix for this issue.
1795* Minor bug fix in the Extract Results dialog, where an empty line was following each line of text.
1796
1797### Changes
1798
1799#### Added Replay Feature
1800* A new "Replay" button has been added to the toolbar at the buttom of the battle screen.
1801	* The replay feature makes it possible to replay a battle.
1802* In a comming version of Robocode, it will be possible to load and save replays.
1803* [Req-24][]: Recording of battles. (partially implemented)
1804	* Added "Enable replay recording" option to the Common Options for enabling and disabling replay recording as replay recording eats lots of memory.
1805		* When the replay recording is disabled, the "Replay" button will not be available.
1806
1807#### Improved the security manager
1808* Robots are not allowed to access any internal Robocode packages anymore, except for the ``robocode.util`` package in order to let legacy robots access the ``robocode.util.Utils`` class, e.g. for calling ``normalRelativeAngle()`` etc.
1809
1810#### New hotkey
1811* Hotkey added for exiting Robocode quickly.
1812	* It is now possible to exit from Robocode by pressing Alt+F4 in the main window of Robocode. Note that the main window must be active.
1813
1814## Version 1.2.2 (14-Dec-2006)
1815
1816### Bug Fixes
1817* [Bug-52][]: Extra hit wall events.
1818	* Extra ``HitWallEvents`` were occuring.
1819	* Thanks goes to Titus Chen for reporting this issue + providing a fix for this issue.
1820* [Bug-53][]: Teams not always ranked correctly.
1821	* Thanks goes to Titus Chen for reporting this issue + providing a fix for this issue as well.
1822* In addition, the ranking scores and final battle results have been made consistent.
1823* The radar scan arc was not painted correctly if the radar was moving towards left.
1824* Sometimes ``ArrayIndexOutOfBoundsExceptions`` occurred when adding and/or removing robots in the robots folder.
1825
1826### Changes
1827* [Req-30][]: UI Control for adjusting the TPS quickly.
1828	* Added TPS slider to the toolbar on the battle window so the TPS can be changed quickly.
1829* [Req-32][]: Bullet size.
1830	* Bullet sizes has been improved.
1831	* Very small bullets will always be visible, even on large 5000x5000 battle fields.
1832* Removed the "Allow robots to change colors repeatedly" from the View Options.
1833	* This option did not have any affect as the current rendering engine always allows robots to change colors repeatedly.
1834
1835## Version 1.2.1A (26-Nov-2006)
1836
1837### Bug Fixes
1838* [Bug-51][]: Hit wall problems.
1839	* Hitting wall with an exact angle of 0, 90, 180 or 270 degrees caused a robot to disappear from the battlefield (could be seen with the sample robots Corner and Wall).
1840	* Thanks goes to Titus Chen for reporting this issue + providing a fix for this issue.
1841
1842## Version 1.2.1 (24-Nov-2006)
1843
1844### Bug Fixes
1845* [Bug-50][]: Bottom-left corner anomaly.
1846	* The check for wall collision did not work properly in some situations due to rounding problems with float vs double precision.
1847* [Bug-49][]: Robot gets stuck off-screen.
1848* [Bug-48][]: ``isMyFault()`` returns ``false`` despite moving toward the robot.
1849	* ``HitRobotEvent.isMyFault()`` returned ``false`` despite the fact that the robot was moving toward the robot it collided with.
1850	* This was the case when ``distanceRemaining == 0`` even though this could occur on purpose if the move was set to ``distanceRemaining``.
1851* [Bug-47][]: Teleportation in version 1.2.
1852	* Teleportation when hitting wall and ``abs(sin(heading)) > 0.00001`` or ``abs(cos(heading)) > 0.00001``.
1853* [Bug-46][]: Gun Method returns too soon.
1854	* The ``turnGun(double)`` method returned before the gun rotation had returned.
1855* [Bug-41][]: More bad bullet collision detections.
1856	* Bad bullet collision detection algorithm was replaced with [Paul Bourke's 2D line intersection algorithm](http://paulbourke.net/geometry/lineline2d/).
1857
1858## Version 1.2 (05-Nov-2006)
1859
1860### Bug Fixes
1861* [Bug-24][]: Robots hangs when running looong battles (and pausing).
1862	* This issue which was not really fixed in 1.1.5.
1863* [Bug-37][]: Bad bullet collision detection.
1864* [Bug-42][]: "Number of rounds" box is not tall enough on Gnome/Linux.
1865	* Some text fields in e.g. the "New Battle" were not tall enough to show their content on for e.g. Gnome/Linux.
1866* [Bug-43][]: Layout is bad for Gnome/Linux.
1867	 * It was hard to read the text on the buttons on the Rendering Options. The text was cut off.
1868
1869### Changes
1870
1871#### Security option
1872* [Req-21][]: Option for accessing external .jars
1873	* The ``NOSECURITY`` option has been extended so it is now possible to access 3rd party jar files.
1874	* If you want to access other jars in your robot you'll have to disable the security in Robocode by setting the ``NOSECURITY`` option to true, i.e. adding ``-DNOSECURITY=true`` in robocode.bat (under Windows) or robocode.sh (under Mac and Linux).
1875	* You'll also have to add the jar file to your ``CLASSPATH`` or put it into the /lib/ext folder of your Java Runtime Environment (JRE), if adding it to the ``CLASSPATH`` does not work.
1876
1877#### Results can be saved in CSV File
1878* [Req-25][]: Save battle results to file.
1879	* Results can now be saved in the Comma Separated Value (CSV) File Format.
1880	* A "Save" button has been added to the battle results dialog.
1881
1882#### Battle Results / Ranking panel
1883* The rank and name of the robots in the battle results dialog and in ranking panel has been splitted up into two independent colums, i.e "Rank" and "Name".
1884	* This was necessary in order to save the rank and name independently in a file.
1885
1886#### Browser
1887* [Req-26][]: Invoke default browser from Help.
1888	* The default browser under Windows is now used when browsing e.g. the Online Help.
1889	* The browser.bat file has been removed as there is no need for it anymore.
1890
1891## Version 1.1.5 (22-Oct-2006)
1892
1893### Bug Fixes
1894* [Bug-40][]: Half of ``BulletHitBulletEvents`` are created improperly.
1895	* Fixed ``BulletHitBulletEvents`` where half of them referred to the wrong bullet.
1896* [Bug-39][]: Final results not always ranked correctly.
1897* [Bug-36][]: License text in installer has wierd image at the buttom.
1898	* Updated the Common Public License to the original version.
1899
1900### Change
1901* The Ranking Panel total score is now updated on the fly.
1902
1903## Version 1.1.4B (19-Oct-2006)
1904
1905### Bug Fixes
1906* [Bug-24][]: Robots hangs when running looong battles (and pausing).
1907* [Bug-34][]: Getting ``null`` on ``getName()``.
1908	* The ``getName()`` on ``ScannedRobotEvent`` returned ``null``.
1909* [Bug-35][]: robocode.sh contains invalid ^M character.
1910	* Fixed the robocode.sh (Unix) file which contained a ^M (Microsoft DOS/Windows character), which caused this file to be unusable for starting Robocode.
1911
1912## Version 1.1.4A (15-Oct-2006)
1913
1914### Bug Fixes
1915* [Bug-33][]: Sound is cut off after a round or two.
1916	* The sounds were cut off after first round.
1917* [Bug-31][]: Ranking Panel does not save its size and position.
1918	* The Ranking Panel position and size was not saved in the window.properties file.
1919* [Bug-30][]: ``ad.Quest`` robot causes ``ConcurrentModificationException``.
1920	* This exception occurred in the robot event queue.
1921* Periodic ``NullPointerException`` removed from battle view.
1922
1923## Version 1.1.4 (14-Oct-2006)
1924
1925### Bug Fixes
1926* The Battle View was not updated on the primary monitor display on a dual monitor system.
1927* [Bug-28][]: Enabling sound makes Robocode crash.
1928	* When enabling sounds on-the-fly where it was originally disabled, Robocode crashed/halted with a ``NullPointerException``.
1929* [Bug-29][]: Runtime exception when opening new battle.
1930	* Removed a ``NullPointerException`` occurring when opening a battle the first time with a new version of Robocode.
1931* [Bug-21][]: Replace function generates extra tab.
1932	* When inserting text by 'copy and paste' or 'search and replace' into the Editor, extra tabs were sometimes added.
1933* [Req-19][]: Possible to install Robocode on Windows Vista.
1934	* Robocode icons has been updated.
1935* Lots of internal optimizations of Robocode has been made to speed up the game.
1936
1937### Changes
1938
1939#### Ranking Panel
1940* Ranking Panel added to the Options menu.
1941	* Thanks goes to Luis Crespo for this new feature.
1942* This panel shows the current robot rankings during battles.
1943
1944#### Single-step Debugging
1945* It is now possible to do single-step debugging in Robocode.
1946	* Thanks goes to Luis Crespo for this new feature.
1947	* The "Pause" button has been extended into "Pause/Debug", and a "Next Turn" button is available to perform one turn at a time, which is vital for single-step debugging.
1948* A new ``Rules`` class was added containing helper methods and constants for Robocode rules.
1949
1950#### Common Options
1951* [Req-23][]: Preference to allow disabling of the scorecard pop-up.
1952	* Common Options has been added that currently contains "Show results when battle(s) ends", which is used for enabling or disabling showing the results dialog when the battle(s) ends.
1953
1954## Version 1.1.3 (20-Sep-2006) The "Java 5 and Sound" release
1955
1956### Bug Fixes
1957* [Bug-25][]: Wrong score for 1st place results in some battles.
1958	* Wrong 1st place scores for robots, which got 1 point for winning and also 1 point for the death of an enemy robot, and hence got 2 points instead of just 1 point for the 1st place.
1959* [Req-18][]: Better notification about new Robocode versions.
1960	* Improved the notification about new available Robocode versions.
1961* [Bug-19][]: Confused updater.
1962	* Now Robocode will only give a notification about a new available version if the version number is greater than the version retrieved from the robocode.jar file.
1963	* The check interval has been changed from 10 days into 5 days.
1964* [Bug-26][]: Battlefield graphics is not always updated.
1965
1966### Changes
1967
1968#### Moved to Java 5.0
1969* The minimum requirement for Robocode is from now on Java 5 (1.5.0).
1970	* You must have at least a JRE 5.0 (1.5.0) or JDK 5.0.
1971	* Robocode has also been tested with the upcomming Java 6 (1.6.0) where it seems to run just fine.
1972
1973#### Sound Effects added
1974* [Req-15][]: Optional sound effects.
1975	* Sounds have been added to Robocode along with Sound Options.
1976		* Thanks goes to Luis Crespo for this cool new feature.
1977	* You are able to change between available mixers (on your system).
1978	* Panning is supported, so that explosions in e.g. the left side of the screen is louder in the left speaker.
1979	* Volume is supported, so that e.g. a bullet with more power makes more noise.
1980	* **Note:** Some mixers performs better, but might not support volume and/or panning.
1981	* A new command line option, ``-nosound``, has been added in order to turn off sound support.
1982		* This feature should prove useful on systems without sound support.
1983
1984#### New Methods for Setting Colors
1985* The ``setColors(bodyColor, gunColor, radarColor)`` has been reintroduced.
1986* The ``setColors(bodyColor, gunColor, radarColor, bulletColor, scanColor)`` has been added.
1987* The ``setAllColor(color)`` has been added.
1988
1989#### Misc.
1990* [Req-17][]: New splashscreen picture.
1991	* The Robocode logo on the splash screen and battle view is now rendered using Java2D.
1992	* The layout of the Developer Options was improved a bit.
1993
1994## Version 1.1.2 (20-Aug-2006) The "Robocode is now TPS centric instead of FPS centric" release
1995
1996### Bug Fixes
1997* [Bug-22][]: Bad buildJikes.sh in 1.1.1
1998	* The ``buildJikes.sh`` contained the ^M (DOS return-carrige characters), which do not belong in a Unix/Linux file. ;-)
1999* The radar color was sometimes painted with too much lumination (white).
2000
2001### Changes
2002
2003#### TPS centric instead of FPS centric
2004* [Req-12][]: Faster framerates / Turns per second.
2005	* Robocode is no longer FPS (Frames Per Second) centric, meaning that 1 turn (time unit) = 1 frame.
2006	* Robocode is now TPS (Turns Per Second) centric, meaning that 1 turn is not necessarily equal to 1 frame anymore.
2007		* You specify how many turns you want to compute every second (desired TPS), and Robocode will render as many frames as possible depending on the TPS.
2008		* If the TPS is higher than the FPS, some turns are not rendered. However, this does not mean that turns are skipped.
2009	* The higher TPS, the lower the FPS will get.
2010	* The better graphics hardware acceleration the higher TPS and FPS.
2011	* Replaced the ``-fps`` (Frames Per Second) command line option with the ``-tps`` (Turns Per Second) option.
2012	* Now there is an option to display both the TPS and FPS in the titlebar in the View Options.
2013
2014#### Rendering Options
2015* Added Rendering Options to the Preferences.
2016* It now possible to change the settings for Antialiasing, Text Antialiasing, Rendering Method, and number of rendering buffers.
2017
2018#### Explosion rendering
2019* [Req-11][]: Explosion on robots dependent on bullet energy.
2020	* Explosions are no longer pre-scaled in 6 fixed sizes, but instead scaled real-time using Java2D.
2021	* The explosion sizes are now more precise depending on bullet damage, and the memory usage for the explosions has been brought down by not using pre-scaled explosion images.
2022	* This fixed the painting of explosions on the iMac, where explosions were painted as filled circles with version 1.1 and 1.1.1.
2023	* Bullets are now painted as filled energy balls with a size that depends on the bullet energy.
2024* [Req-13][]: Bullets are sometimes too small.
2025	* The size (circle area) is calculated so that:
2026	* A bullet with power = 0.1 (minimum power) uses 1 pixel.
2027	* A bullet with power = 3 (maximum power) uses 30 pixels.
2028	* In addition, explosions when a bullet hits a robot or another bullet are also depending on the bullet energy.
2029
2030#### New Option
2031* Added the option "Visible Explosions" in the View Options to the Preferences.
2032* This option makes it possible to enable and disable the painting of explosions.
2033
2034#### Setting Robot Colors
2035* The ``setColors(bodyColor, gunColor, radarColor)`` method is now deprecated.
2036	* Replaced by ``setBodyColor()``, ``setRadarColor()``, and ``setScanColor()``.
2037* [Req-10][]: Coloring of bullets and scan arcs.
2038	* Added ``setBulletColor()`` for changing the bullet color, and ``setScanColor()`` for changing the scan color (used for drawing scan arcs).
2039
2040#### Improved Sample Robots
2041* [Req-20][]: Robot templates must be updated regarding deprecated methods.
2042	* All sample robots has been updated.
2043	* Deprecated methods are replaced by current methods.
2044	* Colors has been added to each robot, except for MyFirstRobot, which should be kept as simple as possible.
2045
2046#### Added Restart Button
2047* [Req-14][]: Restart Button.
2048	* Restart button has been added in order to restart a battle.
2049
2050#### New "No Display" Option
2051* [Req-4][]: Prevent API from loading unused features.
2052	* No graphical components are loaded anymore when Robocode is run from the command line with the ``-nodisplay`` option.
2053	* This feature has been added in order to run Robocode on Unix-like systems that don't have X installed on them or for running Robocode as a kind of server, e.g. for [RoboRumble][].
2054
2055#### Added Browse Button
2056* [Req-16][]: Browse button in Development Options.
2057
2058#### Keyboard Mnemonics
2059* Changed some keyboard mnemonics in the View Options in the Preferences.
2060
2061## Version 1.1.1 (06-Jul-2006)
2062
2063### Bug Fixes
2064* [Bug-16][]: Too many skipped turn because of CPU speed detection.
2065	* Robots than ran fine under v1.0.6 were skipping turns like crazy under v1.0.7.
2066	* The CPU speed detection has been changed to accept 50 times as many clock cycles than with with v1.0.7.
2067* [Bug-6][]: Text-Output Errors.
2068	* Robot text-output error has been fixed according to the solution provided by Matt (msj(at)sysmatrix(dot)net).
2069* [Bug-15][]: "Visible ground" option is not saved.
2070	* The state of the "View option" was not loaded correctly, and hence always set to enabled everytime Robocode was restarted.
2071* [Bug-11][]: A bug at ``updateMovement()`` in ``RobotPeer.java``.
2072	* The ``updateMovement()`` that checked for ``distanceRemaining > 1`` instead of ``distanceRemaining > 0`` when slowing down.
2073* [Bug-14][]: Radar color is wrong.
2074	* The radar was not colored correctly due to a bug in the coloring filter.
2075* [Bug-17][]: Robot editor's window list retains old windows.
2076	* The Robocode editor's window menu did not remove closed windows properly when muliple windows were opened in the editor.
2077* [Bug-12][]: Autoextract hangs on Mac 10.3.9.
2078* [Bug-13][]: Compiling may fail - Mac 10.3.9.
2079	* Issues with installing and compiling under Mac 10.3.9 were fixed.
2080* [Bug-18][]: Blank console in battles between two bots.
2081* [Req-2][]: Keep window size of "New battle" window.
2082	* The window position and sizes were not loaded properly from the windows.properties file.
2083	* The battle window is no longer reset every time a new battle is started, and the window size and position is now saved into the windows.properties file.
2084* Various part of Robocode did not work properly if installed into a folder containing spaces, e.g. compiling and viewing the API documentation did not work.
2085
2086### Changes
2087
2088#### 1200x1200 Battle Field
2089* [Req-3][]: More precise battlefieldsize configuration.
2090	* Added 1200x1200 battle field size as one of the standard sizes, and set the size step to 100.
2091	* This feature was added to accommodate [RoboRumble][].
2092
2093#### Robot Colors
2094* The robot colors are now painted using a true HSL color model.
2095* The change to use the HSL color model fixed the bug regarding none or wrong coloring.
2096* Also, the lumination of the robot colors has been changed.
2097
2098#### Robocode SG Support
2099* [Req-7][]: Graphical "debug" facilities like with RobocodeGL.
2100	* Added a checkbox to enable Robocode SG painting in the robot console.
2101	* The "Debug paint" button in the robot console has been renamed to "Paint".
2102* [Req-8][]: Debug Graphics - SG Option.
2103	* The "Paint" button enables painting in general, and by trickering "Robocode SG", the robot (debug) painting will be rendered as Robocode SG does it.
2104
2105#### Command line / batch files
2106* Added the ``-Xmx512M`` option to the batch files extending the max. memory heap size to 512 MB.
2107* Added the ``-Dsun.io.useCanonCaches=false`` which fixes some ``SecurityException`` issues on robots that read from files, and also fixed the installing and compiling problem under Mac 10.3.9.
2108
2109## Version 1.1 (14-Jun-2006) The "Continuation" release
2110
2111### Bug Fixes
2112* [Bug-1][] and [Req-1][]: Multiple or hyperthreading CPUs (most P4s) hangs Robocode.
2113* [Bug-5][]: Robot compile error under jdk1.5.
2114	* The Jikes compiler has been updated to version 1.22.
2115* [Bug-7][]: Window won't repaint itself, window flickers in battle mode.
2116* [Bug-9][]: Screen flickers using Sun JDK1.5.0 in Linux.
2117* [Bug-8][]: Opening of the Robocode API help.
2118	* Help menu updated.
2119* [Bug-9][]: Screen flickers using Sun JDK1.5.0 in Linux.
2120* [Bug-10][]: Eclipse compile problem (Java 1.5) in ``RobocodeClassLoader``.
2121* Links in Help menu fixed, so you are able to browse the API etc.
2122	* Updated with links for "RoboWiki", "Yahoo Group: Robocode", and "Robocode Repository".
2123* [Req-5][]: Keyboard Navigation.
2124	* Hotkeys have been added to every button, menu, and menu option.
2125
2126### Changes
2127* Added feature for Debug Painting.
2128* By implementing the ``Robot.onPaint(Graphics2D g)`` method of your robot(s), graphics of your choice will be rendered when enabling "Debug Paint" on the console window for that robot.
2129* [Req-6][]: Editor Improvements.
2130	* New "Edit" menu containing: "Undo", "Redo", "Cut", "Copy", "Paste", "Delete", "Find...", "Find next", "Replace", "Select All".
2131	* New "Window" menu containing "Close" and "Close All" options, entries for each open window (up to 9), "More Windows" option where you can get all open windows.
2132	* Added undo/redo stack.
2133	* Added linenumbers.
2134* New rendering engine based on Java2D:
2135	* Graphics is drawn faster as Java2D make use of hardware acceleration.
2136	* Robot colors are now painting using the HSB color model.
2137	* Graphics is resized when the battle window is resized.
2138	* Added "Visible ground" option in "View Options" which will paint background tiles and explosion debrises.
2139* The battlefield is always centered in the battle window.
2140
2141## Robocode was release as Open Source on SourceForge
2142
2143## Development was taken over by Flemming N. Larsen
2144
2145## Version 1.0.7 (18-Feb-2005)
2146* Released as Open Source under Common Public License.
2147* New explosion graphics.
2148* Fixed a few bugs.
2149	* No longer possible to teleport when hitting walls ([Bug-3][]).
2150	* Docs fixed and regenerated ([Bug-4][]).
2151	* Fire assistance removed from ``AdvancedRobot`` ([Bug-2][]).
2152* Now requires Java 1.4.
2153* New system for calculating CPU speed.
2154
2155## Version 1.0.6 (17-Jul-2002)
2156* Robots that perform file I/O will be allowed 240 skipped turns in a row before being stopped.
2157	* Other robots will still be allowed 30 in a row.
2158* Fixed issue with Linux where window frames were outside screen.
2159* Fixed reset compiler option in editor (broken in 1.0.5).
2160
2161## Version 1.0.5 (15-Jul-2002)
2162* Updated dialogs for: Packager, Extractor, Team Creator, Compile Options.
2163	* So they don't hide behind main window.
2164* Fixed bug where New Battle dialog would hang on some systems.
2165
2166## Version 1.0.4 (15-Jul-2002)
2167* Raised max ``setXX`` calls before disable to 10,000.
2168* Moved ``setXX`` and ``getXX`` warnings to only print when max is hit.
2169	* Previously at 300 and 3000, respectively.
2170* Fixed bug in ``clearAllEvents``.
2171* Updated Jikes compiler to version 1.16.
2172
2173## Version 1.0.3 (28-Jun-2002)
2174* Added ``setFire(double)`` and ``setFireBullet(double)`` methods to ``AdvancedRobot``.
2175* Added ``getDataQuotaAvailable()`` call to ``AdvancedRobot``.
2176* Fixed bug: Robots taking action in ``Condition.test()``.
2177* Implemented better method for stopping misbehaving robots.
2178	* Basically, to help fix mistakes such as:
2179
2180			bad: while (getGunHeat() != 0) {}
2181			good: while (getGunHeat() != 0) { doNothing(); }
2182
2183	* Robots will be disabled after 10000 calls to ``getXX`` methods with no action.
2184	* Robots will be disabled after 1000 calls to ``setXX`` methods with no action.
2185	* Only ``getXX`` and ``setXX`` in the robot itself counts (``event.getXX`` does not).
2186
2187## Version 1.0.2 (21-Jun-2002)
2188* Increased default filesystem quota to 200000 bytes.
2189* Droid leaders now start with 220 energy.
2190* Fixed bug that allowed robots to read other robots' data directories.
2191* Fixed bug that allowed invalid robot version strings.
2192* Fixed two bugs that allowed robots to exceed filesystem quota.
2193
2194## Version 1.0.1 (23-Apr-2002)
2195* Team robots will always show in the robot selection dialog.
2196* Robots in .jar files without a .properties file will not show.
2197* The extension ".jar.zip" is now supported for cases where the browser renames .jar files.
2198
2199## Version 1.0 (05-Apr-2002)
2200* New online help integrated.
2201	* http://robocode.alphaworks.ibm.com/help/index.html.
2202	* includes instructions for using Eclipse to build a Robot.
2203* ``onWin()`` is now called the moment you are the last surviving robot.
2204	* You can now do victory dances in ``onWin``.
2205	* Tracker and TrackFire updated to reflect this.
2206* Context assist will now work inside Eclipse.
2207* Fixed bug: ``getTeammates()`` returning ``null`` for last teammate.
2208* Fixed a few other small bugs.
2209
2210## Version 0.99.4 (24-Mar-2002)
2211* Fixed scanning bug (missing scan events with small scanarcs).
2212* Added "Import downloaded robot" tool.
2213* Renamed "Packager" to "Package robot for upload".
2214* Added "Extract downloaded robot for editing" to Robot Editor
2215* Added "Press F5 to refresh" label to robot selection dialog.
2216* Added small battle demo when new version detected.
2217
2218## Version 0.99.3 (21-Mar-2002)
2219* Fixed velocity bug.
2220	* Movement is now more optimized.
2221	* No more '1 2 0 -1 0 1 2 0' velocities.
2222* Fixed ``maxVelocity`` bug.
2223	* ``setMaxVelocity`` can no longer be used to instantly stop.
2224* Fixed first turn bug (``getTime`` returing 0 twice).
2225* New, more accurate CPU benchmark. (Updated Linpack benchmark).
2226	* Should fix '1ms per turn' bug on Win9X systems.
2227
2228## Version 0.99.2 (13-Mar-2002)
2229* Added a development path to support external IDEs such as [Eclipse](http://eclipse.org).
2230	* Found in Options->Preferences.
2231	* Simply add the path to your robot project.
2232	* As usual, robots will be loaded from disk at the start of each battle.
2233* Improved support for RoboLeague.
2234* Documented ``robocode.control`` package (http://robocode.alphaworks.ibm.com/docs/control).
2235* Fixed bug: ``sendMessage`` causing ``StringIndexOutOfBounds``.
2236
2237## Version 0.99.1 (11-Mar-2002)
2238* Fixed bug: Some messages were delayed.
2239* Fixed bug: Broken RoboLeague interoperability.
2240* Fixed bug: ``getSender()`` did not show version or duplicates.
2241* Fixed bug: RobotPackager not packaging teams correctly under Java2 1.3.
2242
2243## Version 0.99 (05-Mar-2002) The "TEAMS" release
2244* Introducing: Teams!
2245	* See ``sampleteam.MyFirstTeam`` for an example.
2246	* Teams may consist of 2 to 10 robots.
2247	* To use teams, first create one or more TeamRobots, then create a Team.
2248	* TeamRobots will not show up in the New Battle dialog by default. You can change this behavior in Options->Preferences.
2249	* To create a team, select Robot->Team->Create Team.
2250	* You can add regular robots to a team, but they will not be able to communicate.
2251	* The *first* robot you add to a team becomes the "team leader". Team leaders start with 200 energy. (They are superheroes) When team leaders die, all other members of the team lose 30 energy. Protect your leader!
2252	* Team scoring is cumulative, but similar to normal scoring: Teams receive 50 points for each surviving team member every time an enemy dies. Teams receive ``10 * numEnemies`` points for each surviving teammate upon winning. Damage bonuses are for all damage dealt by that team Firsts, Seconds, Thirds are based on last surviving team member.
2253	* Teammates can damage each other.
2254	* Teams can be packaged like regular robots.
2255	* Teammates without a version will receive the team version [enclosed in square brackets].
2256	* Team messages are limited to 32K per message.
2257* Introducing: Droids.
2258	* Droids are robots without radar or scanning ability.
2259	* simply add "implements Droid" to a TeamRobot to create a droid.
2260	* Droids start with 120 energy (due to weight savings on the radar).
2261	* Droids do not show up in the New Battle dialog by default. You can change this behavior in Options->Preferences.
2262	* The API is unchanged, but scanning will not work.
2263	* See ``sampleteam.MyFirstDroid`` for an example.
2264* Added new class: TeamRobot.
2265	* See Javadocs for details.
2266	* Adds messaging capability to robots.
2267* Added new class: ``MessageEvent``
2268* Added new interface: ``Droid``
2269* Fixed bug: Duplicate robots sometimes showed up in robot selection dialog.
2270* Fixed bug: Default Window Size not working for some battles.
2271
2272## Version 0.98.3: (08-Feb-2002) The "Everything but teams and it took too long" release
2273* ``setColors()`` now accepts any color (previously it had to be a default color).
2274	* Only works in the first round.
2275	* Only the first 16 robots in a battle will get their Reqed colors.
2276* Robots may now extend or use classes that are not in their package.
2277	* This allows for utility classes, when they are in the robots tree.
2278	* If you do not wish others to extend your robot, declare your robot class final.
2279	* If you do not with others to use classes from your package, do not declare them public.
2280	* All referenced classes will be packaged with the robot packager.
2281* Robots in the robotcache directory that do not have a .properties file will not show up in the robot selection dialog (done in order to support extended robots, above).
2282* You may now delete files in your data directory.
2283* Robocode will now always run at full speed when minimized.
2284* New Battle Dialog "Finish" button renamed to "Start Battle".
2285* New Battle Dialog "Start Battle" button Reqs focus when enabled.
2286* Robocode FAQ linked from help menu.
2287* Robocode now supports RoboLeague by Christian Schnell.
2288	* http://user.cs.tu-berlin.de/~lulli/roboleague/.
2289* Fixed bug: Default thread priority was low.
2290* Fixed bug: Robots had access to peer.
2291* Fixed bug: Survival seconds reported as Survival firsts.
2292* Fixed bug: Robots did not always receive all ``onRobotDeath`` events.
2293* Fixed bug: ``getTime`` returning last round's end time at start of rounds.
2294* Editor 'Open File' now defaults to the last opened directory (per session).
2295* Fixed minor editor bug when parsing for classname.
2296* Fixed bug: Robocode will no longer try to save the size/position of a maximized window.
2297* Fixed bug: Bullets hitting each other immediately with fast gun cooling rate.
2298* Fixed bug: Incorrect number of rounds reported when stop pressed.
2299* Fixed bug: Incorrect number of "seconds" and "thirds" displayed.
2300
2301## Version 0.98.2 (28-Nov-2001) The "Screaming FPS" release
2302* Speed up performance when minimized.
2303* New license includes academic use.
2304* Fixed bug: disappearing energy/name strings.
2305
2306## Version 0.98.1 (27-Nov-2001) The "Ok, NOW it's starting to feel real" release
2307* Fixed bug clearing scaled battles.
2308* Robot consoles changed back to white on dark gray.
2309* Fixed bug with case sensitivity in editor's suggested filename.
2310* Other minor tweaks and bug fixes.
2311* Updated Tracker and RamFire (no ``setInterruptible``).
2312* Added commentary and dates to this file.
2313* Added link to this file from help menu.
2314
2315## Version 0.98 (27-Nov-2001) The "It's starting to feel real" release
2316* Added ``setColors(Color robotColor, Color gunColor, Color radarColor)`` to Robot.
2317	* By default, robots are the default blue.
2318	* Call this in your run method (no more than once per round) to set your robot's colors.
2319	* Accepts any ``System`` default colors, i.e. ``Color.red``.
2320* Robots are now instantiated each round.
2321	* You no longer need to re-initialize all your variables at the beginning of ``run()``.
2322	* ** Only static variables are persistent across rounds **.
2323* Graphics optimizations.
2324	* No more rotating images at the start of each battle.
2325	* Far more memory efficient.
2326* New model for CPU time.
2327	* Robocode now uses the [Linpack benchmark](http://www.netlib.org/benchmark/linpackjava/).
2328	* Used to determine how much time each robot is allowed for processing.
2329* Threading changes.
2330	* Robocode is now threadsafe (as far as I know, anyway).
2331	* Robot threads execute sequentially.
2332	* No more "busy wait" enhances performance, especially on large battles.
2333* Minimized optimizations.
2334	* When minimized, Robocode will not do any drawing.
2335	* FPS can really crank up (when set in options-preferences).
2336* Minor graphic changes (The gun is slightly further forward).
2337* New class hierarchy, in order to clean up the javadocs.
2338	* added ``_Robot`` and ``_AdvancedRobot``.
2339	* These hold deprecated methods and system-related things.
2340	* added ``_AdvancedRadiansRobot`` to clean up the ``AdvancedRobot`` docs.
2341	* You should still extend either ``Robot`` or ``AdvancedRobot``.
2342* Battles may now consist of 1-256 robots.
2343	* A warning confirmation will appear for > 24 robots.
2344	* A confirmation will appear for 1 robot.
2345* Robots will now appear as they are loaded.
2346* So large battles won't appear "hung".
2347* Consoles persist between battles (although they are cleared).
2348* Console threading is more efficient.
2349* Console scrolling is crisper (bug fixed).
2350* Console now has an unlimited size, once opened.
2351	* There is an 8K circular buffer before it is opened.
2352* ``setInterruptible()`` moved to ``AdvancedRobot``.
2353	* Deprecated version in ``Robot`` does nothing.
2354	* Note: Balancing of the ``Robot`` class still needs work.
2355* Skipping turns may happen more often, but is not as big a deal as it used to be.
2356	* with the exception of your first turn.
2357	* You will only lose events if you skip 2 in a row.
2358	* You will not be stopped unless you skip 60 turns in a row.
2359	* Skipped turns can be caused by loading classes from disk, writing files, etc. If this becomes a problem, I will preload all classes.
2360* Fixed bug with compiler when filename has a space.
2361* Fixed bug with getting ``BulletMissed`` and ``BulletHit`` events for same bullet.
2362* Fixed bug with editor locking up reading some files.
2363* Another round of major code organization.
2364* Again, probably more minor items that I already forgot about. :)
2365* (Later additions... such as:)
2366	* Invalid insert bug in editor
2367	* Copy/Paste from console.
2368
2369## Version 0.97.4 (18-Nov-2001) The "finally, a single installer!" release
2370* Completely reworked install process.
2371* There is no longer a setup.exe installer.
2372* Jikes is now packaged with Robocode as the default compiler.
2373	* you may use javac if you prefer, and you have it.
2374* API docs now link to the Java API.
2375* Fixed bug: Editor did not close files after saving.
2376* Fixed bug: Unable to deselect "display robot names".
2377* Fixed bug: Shared static vars between instances of the same robot.
2378* Fixed a few graphics glitches.
2379* Minor doc updates.
2380
2381## Version 0.97.3 (05-Nov-2001) The "hourly release" release :)
2382* Fixed ``NullPointerException`` when loading robots with no package.
2383* Added ``robocode.robot.filesystem.quota`` property to robocode.properties.
2384	* This is a temporary solution, which sets the default filesystem quota for robots.
2385	* Example: ``robocode.robot.filesystem.quota=200000`` for 200k.
2386* Fixed bug in editor that caused it to suggest an unreasonable filename.
2387
2388## Version 0.97.2 (04-Nov-2001)
2389* Fixed bug that caused some robots to be stopped by the game.
2390* Battles/Rounds start faster (back to 0.96.2 speed).
2391* More lenient on CPU use.
2392	* You have roughly 4 whole seconds before your first move.
2393	* You have roughly ``50 + (1000 / fps)`` milliseconds to process each frame.
2394	* This is more than twice what the entire game itself gets. :)
2395	* Failure to take action in that amount of time results in a SkippedTurnEvent.
2396	* You will be removed from the round if you skip 30 turns in a round.
2397	* Un-deprecated ``onSkippedTurn`` and ``SkippedTurnEvent``.
2398	* No reasonable robot should ever receive a ``SkippedTurnEvent``... but now it's there just in case.
2399
2400## Version 0.97.1 (03-Nov-2001)
2401* Abstract classes now work properly in the selection dialog and robot database.
2402* Fixed a few Javadoc bugs.
2403* Fixed pause/resume bug.
2404* Javadocs have deprecated calls again.
2405
2406## Version 0.97 (02-Nov-2001) The "painful but worth it" release
2407* I probably missed a few things in this list. :)
2408* Introducing the Robot Packager.
2409	* Select your robot, type in a few details, and let it figure out the rest.
2410	* Saves details in  a .properties file (see details below).
2411	* Builds a .jar for you.
2412	* Save this .jar in your robots directory (not a subdirectory, for now).
2413	* You may distribute this jar as a standalone robot.
2414* .properties files.
2415	* Not required unless you are packaging your robot.
2416	* Built automatically by the packager.
2417	* Includes:
2418		*  Robot version
2419		*  Short description
2420		*  Optional author name
2421		*  Optional webpage
2422		*  Robocode version
2423		*  Flag for source included
2424* .jar files, and the robotcache.
2425	* Simply put a robot .jar file in your robots directory.
2426	* It will be extracted to the "robotcache".
2427	* Jar filename is the unique key for the robotcache.
2428	* Do not edit files in the robotcache, they may be overwritten. Copy them to your robots directory if you like. This will be a feature in a future version of Robocode.
2429* Robot Database.
2430	* Built and maintained for you.
2431	* Allows Robocode to remember which .class files are robots, and which not.
2432	* Press F5 in the robot selection dialog to refresh the database.
2433* Robot Selection dialog.
2434	* Divided up into packages.
2435	* Shows robot details (from .properties) if they exist.
2436* .html files.
2437	* Create a .html file if you like... see ``sample.SittingDuck``.
2438	* Linked from robot selection dialog.
2439* Major scoring changes.
2440	* 50 points every time an enemy dies while you are alive.
2441	* (10 * numOthers) points if you are the sole survivor
2442	* 1 point for each point of damage you do with bullets.
2443	* 2 points for each point of damage you do by ramming (see Ramming changes, below).
2444	* ``bonus .2 * damage`` done to a specific enemy, if you kill that robot, or
2445	* ``bonus .3 * damage`` done to a specific enemy, if you kill by ramming.
2446* Ramming changes.
2447	* Damage increased (from .4 to .6).
2448	* Only generates score if you are moving toward the enemy.
2449	* If you are ramming, and run out of energy, you will now be disabled instead of killed.
2450* "Life" replaced with "Energy".
2451	* A more sensible name.
2452	* All ``getLife()`` calls deprecated and replaced with ``getEnergy()``.
2453* Added ``getEnergy()`` to ``HitRobotEvent`` (I can't believe it wasn't there before!).
2454* Only ``Robots`` and ``AdvancedRobots`` will show in the New Battle dialog.
2455	* Fixes known bug listed below at the end of 0.96 changes.
2456* Custom events are now be cleared at the start of each round.
2457	* However, since many robots rely on them still existing, Robocode will currently re-add any custom events that were created at the beginning of the first round, for all remaining rounds. This is a temporary solution for backwards compatibility, and will cause a warning message in your console.
2458* You may now print to ``System.out``.
2459	* Will automatically redirect output to your console.
2460* Robot Editor now supports creating normal Java files.
2461* Added line number display to Robot Editor
2462* ``MoveCompleteCondition`` bug fixed.
2463* ``getTurnRemaining()``, ``getGunTurnRemaining()``, ``getRadarTurnRemaining()`` now return degrees.
2464* ``getTurnRemainingRadians()``, ``getGunTurnRemainingRadians()``, ``getRadarTurnRemainingRadians()`` added.
2465* Added ``setAdjustRadarForRobotTurn(boolean)``.
2466	* By default, set to the value of ``setAdjustRadarForGunTurn`` for backwards compatibility.
2467* Windows now remember their last position.
2468	* This is based on the preferred size of the window, so that different battlefield sizes may have different window position and sizes.
2469	* This is stored in the file "window.properties" which you can safely delete to reset.
2470* Added "Default Window Size" to Options menu.
2471	* Resizes the window to optimal (even better than before).
2472* Command-line parameters to run a battle.
2473	* ``robocode -battle battles\sample.battle -results out.txt -fps 250 -minimize``.
2474	* Results will go to ``System.out`` if you do not specify a results file.
2475	* All other Robocode output goes to ``System.err``.
2476* "Activity" is now defined as loss of 10 energy in the battle.
2477	* Inactivity Time is now the number of frames in which 10 energy must be lost.
2478	* This does not include loss due to inactivity itself, or hitting walls.
2479	* Prevents robots stopping the inactivity timer by calling ``fire(.1)`` every 15 seconds.
2480* Compiler uses ``-g`` option for debugging.
2481	* This *may* help those users trying to use advanced debuggers.
2482* Much improved "waiting for robots to start".
2483* More lenient on "robot has not performed any actions".
2484* Various javadoc fixes.
2485* Minor updates to template files.
2486
2487## Version 0.96.2 (09-Oct-2001)
2488* Fixed bug in movement that allowed robots to exceed ``maxVelocity``.
2489
2490## Version 0.96.1
2491* Added automatic version checking.
2492* Added ``getVelocity()`` to ``Robot``.
2493* Fixed minor bug in editor (caused the "do" in "doNothing" to highlight).
2494* ``WinException`` and ``DeathException`` now extend ``Error`` instead of ``RuntimeException``.
2495	* So you won't catch them by mistake with: ``catch (Exception e)``.
2496	* You still don't want to catch them, or you'll get no score.
2497* Fixed minor API doc bugs.
2498* Added a warning when you are calling the ``setXX`` methods too many times (300).
2499	* has no effect on whether the game stops you or not, it simply helps to explain why. before taking an action.
2500* Replaced BrowserControl with BrowserLauncher, from http://www.stanford.edu/~ejalbert/software/BrowserLauncher.
2501	* Should work on more systems.
2502* Synchronized ``tick()``.
2503	* Two threads cannot take action at the same time.
2504	* This entire area needs work.
2505* FPS no longer displayed when Swing doublebuffering is on.
2506* Added ``getHeadingRadians()`` to ``Bullet``.
2507* Fixed ``getHeading()`` in ``Bullet`` to return degrees.
2508
2509## Version 0.96 (05-Oct-2001) The "Robocode is now my life" release
2510* Renamed "Battles" to "Rounds" -- a single battle consists of multiple rounds.
2511* Commented and updated all sample robots.
2512* All sample robots are now in package "sample".
2513* If the old samples exist, Robocode will ask you if it may delete them, when you first run it.
2514* Only Target, Crazy, Spinbot are still AdvancedRobots.
2515	* Target must be for the custom event.
2516	* Crazy and Spinbot call setTurn methods.
2517* SittingDuck is now an AdvancedRobot.
2518	* SittingDuck writes to the filesystem.
2519* Help system now uses system browser.  Hopefully.  Let me know of any issues.
2520* API Help menu item copied to RobocodeEditor, and uses the local copy.
2521* Robots may now use,extend,or inherit external classes, as long as they are in the same root package.
2522	* You must be in a package to use this feature.
2523* Added call: ``getDataDirectory()`` to ``AdvancedRobot`` -- returns ``java.io.File`` representing your data directory.
2524* Added call: ``getDataFile(String filename)`` to ``AdvancedRobot`` -- returns ``java.io.File`` representing a file in your data directory.
2525* AdvancedRobots may now read files that are in the same directory (or subdirectory) as their root package.
2526	* It is recommended that you only read from your data directory.
2527	* You may not read another robot's data directory.
2528	* If you extend another robot, and it calls ``getDataDirectory``, it will get YOUR data directory.
2529	* If you extend another robot, and manually try to read it's data directory, it will fail.
2530* Added classes: ``RobocodeFileOutputStream`` and ``RobocodeFileWriter``.
2531* AdvancedRobots may now write files to their data directory.
2532	* You must use ``RobocodeFileOutputStream`` or ``RobocodeFileWriter``.
2533	* Any other output stream will fail.
2534	* You may wrapper them with other output streams.
2535	* Example: ``PrintStream out1 = new PrintStream(new RobocodeFileOutputStream(getDataFile("my.dat")));``
2536	* There is a quota of 100K.
2537* Fixed scoring bug (as exhibited by ``rk.Rotator``).
2538* Fixed threads stuck in wait condition when new battle selected.
2539* Fixed threads stuck in ``onWin`` or ``onDeath`` events.
2540* Fixed threads not taking action.
2541* Fixed leftover threads.
2542* Fixed a half dozen other thread issues.
2543* Limited \# of worker threads a robot may have to 5.
2544* Limited ``print``/``println`` calls to ``out``, to 100 per turn.
2545* Robots now run in their own ``ThreadGroup``. (You can no longer can see other robot's threads).
2546* Robots now have their own ``Classloader``. (static variable ``messages`` will no longer work).
2547* Fixed ``NullPointerException`` in ``RobocodeOutputStream``.
2548* ``WinEvents`` or ``DeathEvents`` will now be the only thing in the event queue.
2549* Reworked event handler system, should be more robust.
2550* Tweaked event priorities. New default priorities are:
2551	* ``BulletHitBulletEvent``: 50.
2552* Valid priorities are 0 to 99 (100 is reserved).
2553* Added new method ``setInterruptible(boolean)`` to ``Robot``.
2554	* Can only be used while handling an event.
2555	* Always resets to false when the event ends.
2556	* Causes event handler to restart from the top, if the same event (or another event of the same priority) is generated while in the event handler following this call.
2557	* This will only happen if you take an action inside an event handler, that causes the same event handler to be called.
2558	* This makes it possible for Robots to turn and move like AdvancedRobots...
2559	* This has no effect on events of higher priority.
2560* Calling ``scan()`` inside of ``onScannedRobot()`` can now restart ``onScannedRobot``.
2561	* internally calls ``setInterruptible(true)`` for itself.
2562	* See ``sample.Corners`` for example.
2563* Robots of class ``Robot`` no longer take damage from hitting a wall.
2564* Robots of class ``AdvancedRobot`` take more damage from hitting a wall.
2565* Added ``isMyFault()`` to ``HitRobotEvent``.
2566	* Returns ``true`` if you caused the event by moving toward the other robot.
2567* Revamped robot to robot collisions.
2568	* Your movement will be marked complete if you are moving toward the other robot.
2569	* You will not be stopped if you are moving away from the other robot.
2570	* Collisions now cause more damage, but are easier to escape from.
2571	* This means robots without ``onHitRobot`` handlers still have a chance...
2572	* An event is generated every time one robot hits another.
2573	* If you are moving toward the other robot, you will get ``onHitRobotEvent`` with ``isMyFault() = true``.
2574	* If another robot is moving toward you, you will get an ``onHitRobotEvent`` with ``isMyFault() = false``.
2575	* If you are moving toward each other, you will get two events, with the ``isMyFault() = true``, first.
2576* Damage from robot to robot collisions is now a constant 0.4.
2577* Added ``getBearing()`` to ``onHitByBullet``.
2578* Added a ``Bullet`` object.
2579	* encapsulates owner, victim, power, velocity, X, and Y.
2580* Bullet hitting bullet generates ``BulletHitBulletEvent`` - methods include ``getBullet()`` and ``getHitBullet()``.
2581	* added ``getBullet()`` to ``HitByBulletEvent``, ``BulletHitEvent``, ``BulletMissedEvent``.
2582* Added ``fireBullet()``, which is exactly like ``fire()``, but returns a ``Bullet`` object.
2583	* I could not simply add a bullet return to fire, because it broke *all* existing robot .class files.
2584* You can now select from the results dialog.
2585* Fixed path for open/save battles on non-Windows systems.
2586* Fixed slashscreen for some systems.
2587* Fixed minor API doc bugs.
2588* Updated many API docs.
2589* Renamed and reorganized many internal classes.
2590* Fixed bug with allowed package names (now allows digits).
2591* Windows installer now defaults to c:\.
2592* Added ``getGunHeat()`` to ``Robot``.
2593	* When gunHeat is 0, you can fire.
2594	* ``gunHeat`` goes up by ``(1 + firePower / 5)`` when you fire.
2595	* This is unchanged from the v0.95.
2596* Added ``getGunCoolingRate()`` to ``Robot``.
2597* Deprecated ``getGunCharge()``.
2598	* Use ``getGunHeat()`` instead.
2599* Deprecated ``endTurn()``.
2600	* It will still work for now, but you should replace calls to to it with ``execute()``.
2601* Removed ``onSkippedTurn``.
2602	* Your robot will simply be stopped instead.
2603	* The results dialog will report "not deterministic".
2604	* Not deterministic means that a battle started with the exact same conditions and starting positions, may not end up with the same results. (Ok, so far, you can't test that...) :)
2605	* Added ``getWaitCount()`` and ``getMaxWaitCount()`` to ``AdvancedRobot``.
2606* Deprecated ``SkippedTurnEvent``.
2607	* Well, it's no longer used.
2608* Deprecated all ``getRobotXX`` methods.
2609	* Replaced with ``getXX`` methods.
2610* Deprecated all ``getXXDegrees`` and ``setXXDegrees`` methods.
2611	* Just use the ``getXX`` and ``setXX`` methods.
2612* Compiler will always show output, and uses the ``-deprecation`` flag.
2613	* so you can see that you're using a deprecated call.
2614	* I would like to remove all deprecated calls in the next version.
2615* Known bug: New battle dialog not smart enough to differentiate between Robots classes and other classes.
2616	* You will be able to put other classes into a battle.
2617	* They will sit there and do nothing.
2618
2619## Version 0.95 (09-Sep-2001) "The /. release"
2620* Completely rewrote all windows and dialogs to use LayoutManagers.
2621* Linux support vastly improved (although fps still not great).
2622* Improved framerate calculation (should be smoother on most systems).
2623* Robot exceptions now all go to robot's console.
2624* Fixed bug in initialization - radar turn.
2625* Hitting a wall no longer resets inactivity counter.
2626* Better pause functionality (fixed bugs).
2627* Known bug: Help system still not using external browser.
2628* Smarter dialog locations.
2629
2630## Version 0.94 (09-Aug-2001)
2631* Fixed a few bugs so Linux version would run.
2632* Known bug: Linux version does not run well.
2633
2634## Version 0.93 (23-Apr-2001)
2635* Completely redone graphics for tanks, guns, radar.
2636* Firepower adjusted. Higher-power bullets now move slightly slower and fire slightly slower.
2637* Gun must 'charge up' before firing.  This avoids the "lucky shot" syndrome at the beginning of a battle.
2638* Added ``execute()`` method for ``AdvancedRobots``. Better name for 'endTurn'.
2639* Optimized drawing of explosion graphics.
2640* Added buttons for selecting battle size.
2641* Bullets can now hit each other (not perfect yet).
2642* Updated security manager to work with jdk1.4.
2643* Revised bounding box for new graphics. The graphics should no longer have a 5-pixel blank area.
2644* Optimized scanning code.
2645* Added 'color mask' to determine which parts of image should be recolored.
2646* Replaced splashscreen and icons.
2647* Java-based help, API, check new version.
2648* Robot menu (disabled).
2649* Changed ``fireDelay`` mechanism to be ``gunCharge``. Still in progress.
2650* Renamed to Robocode.
2651* Added Buttons for framerate.
2652* Added Buttons for battle size.
2653
2654## Version 0.92 (Mar-2001)
2655* Added ``getTime()`` method to ``Robots``.
2656* Added ``getFireDelay()`` method to ``Robots``.
2657* Added explosions.
2658
2659## Version 0.91 (Mar-2001)
2660* Fixed bug in ``waitFor()`` so that automatic scanning will not repeatedly generate events when the condition is ``true``.
2661* Fixed bugs in Tracker sample robot.
2662* Fixed display issues with view scan arc option.
2663
2664## Version 0.9 (Mar-2001)
2665* Completely reworked ``scan()`` to use a sweep as the radar moves. If the radar is not moving, the scan will be a straight line.
2666* Added fire assistance to regular ``Robot`` classes (not ``AdvancedRobots``).
2667	* If you fire at a robot you see during ``scan()``, and gun/radar are together, and you ``fire()`` before doing anything else, you will fire at its center.
2668
2669## Version 0.8 (Feb-2001)
2670* Initial release.
2671	* Robocode brought to IBM.
2672
2673## Version 0.1 (Sep-2000)
2674* Development started as late-night project.
2675
2676
2677
2678
2679[RoboRumble]: http://robowiki.net/wiki/RoboRumble (RoboWiki - RoboRumble)
2680[Markdown]: http://daringfireball.net/projects/markdown/syntax (Markdown syntax)
2681
2682[IRobotSnapshot.getContestantIndex()]: http://robocode.sourceforge.net/docs/robocode/robocode/control/snapshot/IRobotSnapshot.html#getContestantIndex()  (robocode.control.snapshot.IRobotSnapshot.getContestantIndex())
2683[IRobotSnapshot.getRobotIndex()]: http://robocode.sourceforge.net/docs/robocode/robocode/control/snapshot/IRobotSnapshot.html#getRobotIndex() (robocode.control.snapshot.IRobotSnapshot.getRobotIndex())
2684[IRobotSnapshot.getTeamIndex()]: http://robocode.sourceforge.net/docs/robocode/robocode/control/snapshot/IRobotSnapshot.html#getTeamIndex()  (robocode.control.snapshot.IRobotSnapshot.getTeamIndex())
2685
2686[Patch-1]: http://sourceforge.net/p/robocode/patches/1/ (#1 Improved priority battle handling)
2687
2688[Bug-1]:   http://sourceforge.net/p/robocode/bugs/1/    (Multiple or hyperthreading CPUs (most P4s) hangs Robocode)
2689[Bug-2]:   http://sourceforge.net/p/robocode/bugs/2/    (Remove firing assistance for AdvancedRobo)
2690[Bug-3]:   http://sourceforge.net/p/robocode/bugs/3/    (Teleportation of robot can happen (rare))
2691[Bug-4]:   http://sourceforge.net/p/robocode/bugs/4/    (#4 API Doc incorrect)
2692[Bug-5]:   http://sourceforge.net/p/robocode/bugs/5/    (Robot compile error under jdk1.5)
2693[Bug-6]:   http://sourceforge.net/p/robocode/bugs/6/    (Text-Output Errors)
2694[Bug-7]:   http://sourceforge.net/p/robocode/bugs/7/    (Window won't repaint itself, window flickers in battle mode)
2695[Bug-8]:   http://sourceforge.net/p/robocode/bugs/8/    (Opening of the Robocode API help)
2696[Bug-9]:   http://sourceforge.net/p/robocode/bugs/9/    (Screen flickers using Sun JDK1.5.0 in Linux)
2697[Bug-10]:  http://sourceforge.net/p/robocode/bugs/10/   (Eclipse compile problem (Java 1.5) in RobocodeClassLoader)
2698[Bug-11]:  http://sourceforge.net/p/robocode/bugs/11/   (A bug at updateMovement() in RobotPeer.jav)
2699[Bug-12]:  http://sourceforge.net/p/robocode/bugs/12/   (Autoextract hangs on Mac 10.3.9)
2700[Bug-13]:  http://sourceforge.net/p/robocode/bugs/13/   (Compiling may fail - Mac 10.3.9)
2701[Bug-14]:  http://sourceforge.net/p/robocode/bugs/14/   (Radar color is wrong)
2702[Bug-15]:  http://sourceforge.net/p/robocode/bugs/15/   ("Visible ground" option is not saved)
2703[Bug-16]:  http://sourceforge.net/p/robocode/bugs/16/   (Too many skipped turn because of CPU speed detection)
2704[Bug-17]:  http://sourceforge.net/p/robocode/bugs/17/   (Robot editor's window list retains old windows)
2705[Bug-18]:  http://sourceforge.net/p/robocode/bugs/18/   (Blank console in battles between two bots)
2706[Bug-19]:  http://sourceforge.net/p/robocode/bugs/19/   (Confused updater)
2707[Bug-21]:  http://sourceforge.net/p/robocode/bugs/21/   (Replace function generates extra tab)
2708[Bug-22]:  http://sourceforge.net/p/robocode/bugs/22/   (Bad buildJikes.sh in 1.1.)
2709[Bug-24]:  http://sourceforge.net/p/robocode/bugs/24/   (Robots hangs when running looong battles (and pausing))
2710[Bug-25]:  http://sourceforge.net/p/robocode/bugs/25/   (Wrong score for 1st place results in some battles)
2711[Bug-26]:  http://sourceforge.net/p/robocode/bugs/26/   (Battlefield graphics is not always updated)
2712[Bug-28]:  http://sourceforge.net/p/robocode/bugs/28/   (Enabling sound makes Robocode crash)
2713[Bug-29]:  http://sourceforge.net/p/robocode/bugs/29/   (Runtime exception when opening new battle)
2714[Bug-30]:  http://sourceforge.net/p/robocode/bugs/30/   (ad.Quest robot causes ConcurrentModificationException)
2715[Bug-31]:  http://sourceforge.net/p/robocode/bugs/31/   (Ranking Panel does not save its size and position)
2716[Bug-33]:  http://sourceforge.net/p/robocode/bugs/33/   (Sound is cut off after a round or two)
2717[Bug-34]:  http://sourceforge.net/p/robocode/bugs/34/   (Getting null on getName())
2718[Bug-35]:  http://sourceforge.net/p/robocode/bugs/35/   (robocode.sh contains invalid ^M character)
2719[Bug-36]:  http://sourceforge.net/p/robocode/bugs/36/   (License text in installer has wierd image at the buttom)
2720[Bug-37]:  http://sourceforge.net/p/robocode/bugs/37/   (Bad bullet collision detection)
2721[Bug-39]:  http://sourceforge.net/p/robocode/bugs/39/   (Final results not always ranked correctly)
2722[Bug-40]:  http://sourceforge.net/p/robocode/bugs/40/   (Half of BulletHitBulletEvents are created improperly)
2723[Bug-41]:  http://sourceforge.net/p/robocode/bugs/41/   (More bad bullet collision detections)
2724[Bug-42]:  http://sourceforge.net/p/robocode/bugs/42/   ("Number of rounds" box is not tall enough on Gnome/Linux)
2725[Bug-43]:  http://sourceforge.net/p/robocode/bugs/43/   (Layout is bad for Gnome/Linux)
2726[Bug-46]:  http://sourceforge.net/p/robocode/bugs/46/   (Gun Method returns too soon)
2727[Bug-47]:  http://sourceforge.net/p/robocode/bugs/47/   (Teleportation in version 1.2)
2728[Bug-48]:  http://sourceforge.net/p/robocode/bugs/48/   (isMyFault() returns false despite moving toward the robot)
2729[Bug-49]:  http://sourceforge.net/p/robocode/bugs/49/   (Robot gets stuck off-screen)
2730[Bug-50]:  http://sourceforge.net/p/robocode/bugs/50/   (Bottom-left corner anomaly)
2731[Bug-51]:  http://sourceforge.net/p/robocode/bugs/51/   (Hit wall problems)
2732[Bug-52]:  http://sourceforge.net/p/robocode/bugs/52/   (Extra hit wall events)
2733[Bug-53]:  http://sourceforge.net/p/robocode/bugs/53/   (Teams not always ranked correctly)
2734[Bug-54]:  http://sourceforge.net/p/robocode/bugs/54/   (Flickering when constantly changing colors)
2735[Bug-55]:  http://sourceforge.net/p/robocode/bugs/55/   (Incorrect score after replay)
2736[Bug-57]:  http://sourceforge.net/p/robocode/bugs/57/   (ConcurrentModificationException)
2737[Bug-58]:  http://sourceforge.net/p/robocode/bugs/58/   (NullPointerException during replay)
2738[Bug-59]:  http://sourceforge.net/p/robocode/bugs/59/   (Issue when setting the priority of a BulletHitBulletEvent)
2739[Bug-60]:  http://sourceforge.net/p/robocode/bugs/60/   (ConcurrentModificationException when extracting robots)
2740[Bug-61]:  http://sourceforge.net/p/robocode/bugs/61/   (Hang when checking for new version with no Internet access)
2741[Bug-62]:  http://sourceforge.net/p/robocode/bugs/62/   (Memory "Leak")
2742[Bug-63]:  http://sourceforge.net/p/robocode/bugs/63/   (BulletHitBullet only destroys one bullet)
2743[Bug-64]:  http://sourceforge.net/p/robocode/bugs/64/   (Exception when referencing length of an array of String)
2744[Bug-65]:  http://sourceforge.net/p/robocode/bugs/65/   (Cannot run robocode after installation)
2745[Bug-66]:  http://sourceforge.net/p/robocode/bugs/66/   (Crash: starting a new round while et.Predator 1.8 is playing)
2746[Bug-67]:  http://sourceforge.net/p/robocode/bugs/67/   (Some issues with MessageEvent + priority)
2747[Bug-68]:  http://sourceforge.net/p/robocode/bugs/68/   (Preferences not saved)
2748[Bug-69]:  http://sourceforge.net/p/robocode/bugs/69/   (Robot causes Null Pointer Exception)
2749[Bug-70]:  http://sourceforge.net/p/robocode/bugs/70/   (Version 1.2.6A incompatible with Roboleague)
2750[Bug-71]:  http://sourceforge.net/p/robocode/bugs/71/   (RobocodeEngine becomes slower the more battles that are run)
2751[Bug-72]:  http://sourceforge.net/p/robocode/bugs/72/   (The game won't play sounds on 2nd launch)
2752[Bug-73]:  http://sourceforge.net/p/robocode/bugs/73/   (Sound don't work)
2753[Bug-74]:  http://sourceforge.net/p/robocode/bugs/74/   (Java FilePermission error during startup)
2754[Bug-75]:  http://sourceforge.net/p/robocode/bugs/75/   (getTeammates() problem)
2755[Bug-76]:  http://sourceforge.net/p/robocode/bugs/76/   (Unique error)
2756[Bug-78]:  http://sourceforge.net/p/robocode/bugs/78/   (Robots are disabled with no timer or countdown)
2757[Bug-79]:  http://sourceforge.net/p/robocode/bugs/79/   (Output displayed in bursts)
2758[Bug-80]:  http://sourceforge.net/p/robocode/bugs/80/   (Results file is empty with the command line)
2759[Bug-81]:  http://sourceforge.net/p/robocode/bugs/80/   (Replay recording does not record paintings)
2760[Bug-82]:  http://sourceforge.net/p/robocode/bugs/82/   (Undo comment does not change font color of code)
2761[Bug-83]:  http://sourceforge.net/p/robocode/bugs/83/   (Ranking Panel Does not update number of competitors)
2762[Bug-84]:  http://sourceforge.net/p/robocode/bugs/84/   (Preferences page problem on machine w/out sound card)
2763[Bug-85]:  http://sourceforge.net/p/robocode/bugs/85/   (No window position in-bounding)
2764[Bug-86]:  http://sourceforge.net/p/robocode/bugs/86/   (Using UI removes focus from interactive bots)
2765[Bug-87]:  http://sourceforge.net/p/robocode/bugs/87/   (Round indicator incorrect)
2766[Bug-88]:  http://sourceforge.net/p/robocode/bugs/88/   (Scorch layer)
2767[Bug-90]:  http://sourceforge.net/p/robocode/bugs/90/   (Limit per round, not turn)
2768[Bug-91]:  http://sourceforge.net/p/robocode/bugs/91/   (ConcurrentModificationException)
2769[Bug-92]:  http://sourceforge.net/p/robocode/bugs/92/   (RoboRumble tries to connect with GUI)
2770[Bug-93]:  http://sourceforge.net/p/robocode/bugs/93/   (onPaint(Graphics2D g) called prematurely)
2771[Bug-94]:  http://sourceforge.net/p/robocode/bugs/94/   (Inconsistent Behavoir of RobocodeEngine.setVisible())
2772[Bug-95]:  http://sourceforge.net/p/robocode/bugs/95/   (OutOfMemory: Robots are Being Left on the Stack)
2773[Bug-96]:  http://sourceforge.net/p/robocode/bugs/96/   (Initializing Label even when no display)
2774[Bug-97]:  http://sourceforge.net/p/robocode/bugs/97/   (Exception when packaging robots)
2775[Bug-98]:  http://sourceforge.net/p/robocode/bugs/98/   (When minimized doesn't show actual tps)
2776[Bug-99]:  http://sourceforge.net/p/robocode/bugs/99/   (Clicking on a bottom area results in ClassCastException)
2777[Bug-100]: http://sourceforge.net/p/robocode/bugs/100/  (Double-clicking "restart")
2778[Bug-101]: http://sourceforge.net/p/robocode/bugs/101/  ("Keyboard lockup" with interactive robots)
2779[Bug-102]: http://sourceforge.net/p/robocode/bugs/102/  (Bots can hold memory after being destroyed)
2780[Bug-103]: http://sourceforge.net/p/robocode/bugs/103/  (ConcurrentModificationException)
2781[Bug-104]: http://sourceforge.net/p/robocode/bugs/104/  (Reproducable scoring bug)
2782[Bug-105]: http://sourceforge.net/p/robocode/bugs/105/  (testingCondition flag not reset)
2783[Bug-106]: http://sourceforge.net/p/robocode/bugs/106/  (Incorrect repaint of paused battlefield)
2784[Bug-107]: http://sourceforge.net/p/robocode/bugs/107/  (Bullet hit locations reported inaccurately)
2785[Bug-108]: http://sourceforge.net/p/robocode/bugs/108/  (It is possible to restart a battle without any robots)
2786[Bug-110]: http://sourceforge.net/p/robocode/bugs/110/  (Partial match recording replay)
2787[Bug-111]: http://sourceforge.net/p/robocode/bugs/111/  (Wasted time at end of each round)
2788[Bug-112]: http://sourceforge.net/p/robocode/bugs/112/  (Forcing stop: no score will be generated)
2789[Bug-113]: http://sourceforge.net/p/robocode/bugs/113/  (-battle option runs at full speed)
2790[Bug-114]: http://sourceforge.net/p/robocode/bugs/114/  (Wait Interrupted Message)
2791[Bug-115]: http://sourceforge.net/p/robocode/bugs/115/  (AWTException with RoboRumble on OS X)
2792[Bug-116]: http://sourceforge.net/p/robocode/bugs/116/  (Exclude filter removes bots from the RoboRumble)
2793[Bug-117]: http://sourceforge.net/p/robocode/bugs/117/  (Sound card is being dodgey/not detected by OS causes error)
2794[Bug-118]: http://sourceforge.net/p/robocode/bugs/118/  (Battles fail when executing with Eclipse debugger)
2795[Bug-120]: http://sourceforge.net/p/robocode/bugs/120/  (The renderering is slower on Vista than XP)
2796[Bug-122]: http://sourceforge.net/p/robocode/bugs/122/  (Not all shortcut keys work on MacOS)
2797[Bug-123]: http://sourceforge.net/p/robocode/bugs/123/  (Compiler fails to build due to CR/LF in scripts)
2798[Bug-125]: http://sourceforge.net/p/robocode/bugs/125/  (TimeoutExceptions occur when debugging in Eclipse)
2799[Bug-130]: http://sourceforge.net/p/robocode/bugs/130/  (Various usability issues)
2800[Bug-131]: http://sourceforge.net/p/robocode/bugs/131/  (Sometimes the compiler window hangs)
2801[Bug-134]: http://sourceforge.net/p/robocode/bugs/134/  (Robot problem after Options->Clean robot cache)
2802[Bug-135]: http://sourceforge.net/p/robocode/bugs/135/  (-battle broken)
2803[Bug-137]: http://sourceforge.net/p/robocode/bugs/137/  (Roborumble "ITERATE" broken)
2804[Bug-139]: http://sourceforge.net/p/robocode/bugs/139/  (Bug in RobotPeer.updateMovement?)
2805[Bug-141]: http://sourceforge.net/p/robocode/bugs/141/  (The -DROBOTPATH=<path> option does not work)
2806[Bug-142]: http://sourceforge.net/p/robocode/bugs/142/  (Broken .sh files)
2807[Bug-143]: http://sourceforge.net/p/robocode/bugs/143/  (Blank console window when compiling)
2808[Bug-144]: http://sourceforge.net/p/robocode/bugs/144/  (drawArc does not work as expected)
2809[Bug-146]: http://sourceforge.net/p/robocode/bugs/146/  (Spammy output when running roborumble)
2810[Bug-147]: http://sourceforge.net/p/robocode/bugs/147/  (gunHeat is negative)
2811[Bug-148]: http://sourceforge.net/p/robocode/bugs/148/  (Wrong bullet power)
2812[Bug-149]: http://sourceforge.net/p/robocode/bugs/149/  (Replay exception)
2813[Bug-151]: http://sourceforge.net/p/robocode/bugs/151/  (Exception when changing between Robot to AdvancedRobot)
2814[Bug-153]: http://sourceforge.net/p/robocode/bugs/153/  (Junior Robot turnAheadRight bug)
2815[Bug-154]: http://sourceforge.net/p/robocode/bugs/154/  (Robot name missing when replaying XML record)
2816[Bug-156]: http://sourceforge.net/p/robocode/bugs/156/  (Spammy output on robot console windows)
2817[Bug-158]: http://sourceforge.net/p/robocode/bugs/158/  (Ubuntu throws NullPointerException in main)
2818[Bug-159]: http://sourceforge.net/p/robocode/bugs/159/  (Installation fail on windows if directory contain space)
2819[Bug-160]: http://sourceforge.net/p/robocode/bugs/160/  (Battle Results screen displaying old results)
2820[Bug-161]: http://sourceforge.net/p/robocode/bugs/161/  (Robot disabled by any other than losing energy can recover)
2821[Bug-162]: http://sourceforge.net/p/robocode/bugs/162/  (Team battle)
2822[Bug-163]: http://sourceforge.net/p/robocode/bugs/163/  (Spaces or native names in name of robocode directory)
2823[Bug-164]: http://sourceforge.net/p/robocode/bugs/164/  (Compiler Classpath Suggestion)
2824[Bug-165]: http://sourceforge.net/p/robocode/bugs/165/  (NullPointerException when using -battle option from cmd-line)
2825[Bug-166]: http://sourceforge.net/p/robocode/bugs/166/  (Bots referencing robocode.robocodeGL broken)
2826[Bug-168]: http://sourceforge.net/p/robocode/bugs/168/  (Bots inconviently stop working if they go over time limit)
2827[Bug-169]: http://sourceforge.net/p/robocode/bugs/169/  (pe.SandboxDT_3.02 stopped working in 1.6.2 and later version)
2828[Bug-170]: http://sourceforge.net/p/robocode/bugs/170/  (Robot Colors don't stick between rounds)
2829[Bug-171]: http://sourceforge.net/p/robocode/bugs/171/  (A battleview size exceed 800x600 filled with black)
2830[Bug-172]: http://sourceforge.net/p/robocode/bugs/172/  (Robot console fails to display some deaths/wins)
2831[Bug-173]: http://sourceforge.net/p/robocode/bugs/173/  (Robot packager can be activated once per running)
2832[Bug-174]: http://sourceforge.net/p/robocode/bugs/174/  (Robot console is sometimes empty)
2833[Bug-175]: http://sourceforge.net/p/robocode/bugs/175/  (Development robots cause problems with data files)
2834[Bug-177]: http://sourceforge.net/p/robocode/bugs/177/  (Open battle menu dialog is not loading robots)
2835[Bug-178]: http://sourceforge.net/p/robocode/bugs/178/  (Typing to find bot no longer works)
2836[Bug-179]: http://sourceforge.net/p/robocode/bugs/179/  (Event.setTime() method should not be hidden)
2837[Bug-181]: http://sourceforge.net/p/robocode/bugs/181/  (API: Typo in Documentation onBulletMissed(BulletMissedEvent))
2838[Bug-176]: http://sourceforge.net/p/robocode/bugs/176/  (Editor UNDO does delete the line when no undo left)
2839[Bug-180]: http://sourceforge.net/p/robocode/bugs/180/  (Editor: Find (set cursor position))
2840[Bug-182]: http://sourceforge.net/p/robocode/bugs/182/  (roborumble.sh and teamrumble.sh are broken)
2841[Bug-183]: http://sourceforge.net/p/robocode/bugs/183/  (NullPointerException in BattlesRunner.runBattlesImpl)
2842[Bug-184]: http://sourceforge.net/p/robocode/bugs/184/  (Custom event priority broken)
2843[Bug-185]: http://sourceforge.net/p/robocode/bugs/185/  (Webpage button lay over robot description)
2844[Bug-186]: http://sourceforge.net/p/robocode/bugs/186/  (Rounds number do not saved between run)
2845[Bug-187]: http://sourceforge.net/p/robocode/bugs/187/  (Not enough java memory allocated in launch scripts)
2846[Bug-188]: http://sourceforge.net/p/robocode/bugs/188/  (Meleerumble using 2 bots instead of 10)
2847[Bug-189]: http://sourceforge.net/p/robocode/bugs/189/  (API - cannot subclass Event in 1.7.1)
2848[Bug-190]: http://sourceforge.net/p/robocode/bugs/190/  (Errors with some robot classes when rebuilding database)
2849[Bug-191]: http://sourceforge.net/p/robocode/bugs/191/  (EOFException during repository rebuild)
2850[Bug-192]: http://sourceforge.net/p/robocode/bugs/192/  (Fair Play!)
2851[Bug-193]: http://sourceforge.net/p/robocode/bugs/193/  (TeamRumble uploading result for Robot instead of team)
2852[Bug-194]: http://sourceforge.net/p/robocode/bugs/194/  (JarJar multi-registration)
2853[Bug-195]: http://sourceforge.net/p/robocode/bugs/195/  (Client tries to remove all participants)
2854[Bug-196]: http://sourceforge.net/p/robocode/bugs/196/  (Wrong file path used for development bots)
2855[Bug-197]: http://sourceforge.net/p/robocode/bugs/197/  (Melee rumble doesn't use "smart battles")
2856[Bug-199]: http://sourceforge.net/p/robocode/bugs/199/  (FontMetrics StackOverflowError)
2857[Bug-200]: http://sourceforge.net/p/robocode/bugs/200/  (Graphics2D.setFont() has no effect)
2858[Bug-201]: http://sourceforge.net/p/robocode/bugs/201/  (setMaxVelocity(lower than current) + reverse direction bug)
2859[Bug-202]: http://sourceforge.net/p/robocode/bugs/202/  (Installer says to run robocode.jar)
2860[Bug-204]: http://sourceforge.net/p/robocode/bugs/204/  (Nanobot rumble not sending melee or team parameters)
2861[Bug-205]: http://sourceforge.net/p/robocode/bugs/205/  (Wrong survival scores sent by rumble client)
2862[Bug-206]: http://sourceforge.net/p/robocode/bugs/206/  (Funny behaviors with robot graphics/painting)
2863[Bug-207]: http://sourceforge.net/p/robocode/bugs/207/  (Access denied javax.swing -DNOSECURITY=true)
2864[Bug-208]: http://sourceforge.net/p/robocode/bugs/208/  (Does not extract .properties files into bot data dirs)
2865[Bug-209]: http://sourceforge.net/p/robocode/bugs/209/  ([Codesize] Invalid entry point in codesize-1.1.jar)
2866[Bug-210]: http://sourceforge.net/p/robocode/bugs/210/  (Bullet and Ram Damage Bonuses are wrong)
2867[Bug-212]: http://sourceforge.net/p/robocode/bugs/212/  (Team jar files reported as corrupted)
2868[Bug-213]: http://sourceforge.net/p/robocode/bugs/213/  (NullPointerException when setting classpath directory)
2869[Bug-214]: http://sourceforge.net/p/robocode/bugs/214/  (Accel/decel rules introduced in 1.7.1.3 causes trouble)
2870[Bug-215]: http://sourceforge.net/p/robocode/bugs/215/  (Missed onRobotDeath events)
2871[Bug-216]: http://sourceforge.net/p/robocode/bugs/216/  (Sometimes too few results for robots are displayed)
2872[Bug-218]: http://sourceforge.net/p/robocode/bugs/218/  (Robocode enters infinite loop with the Restart button)
2873[Bug-222]: http://sourceforge.net/p/robocode/bugs/222/  (Some of sound not working)
2874[Bug-226]: http://sourceforge.net/p/robocode/bugs/226/  (java.io.FileNotFoundException in RobotFileSystemManager.init)
2875[Bug-227]: http://sourceforge.net/p/robocode/bugs/227/  (Can't load Katana 1.0 or DrussGT 1.3.1wilo)
2876[Bug-228]: http://sourceforge.net/p/robocode/bugs/228/  (Krabb.sliNk.GarmTeam 0.9v locks up in new beta)
2877[Bug-229]: http://sourceforge.net/p/robocode/bugs/229/  (IllegalArgumentException on painting in some robots?)
2878[Bug-230]: http://sourceforge.net/p/robocode/bugs/230/  (Lockup on start if too many bots in robots dir)
2879[Bug-231]: http://sourceforge.net/p/robocode/bugs/231/  (Lockup on start if too many bots in robots dir (cont'd))
2880[Bug-232]: http://sourceforge.net/p/robocode/bugs/232/  (Graphics2D.getTransform() throws NPE)
2881[Bug-233]: http://sourceforge.net/p/robocode/bugs/233/  ("Teleport")
2882[Bug-234]: http://sourceforge.net/p/robocode/bugs/234/  (Source is not included)
2883[Bug-236]: http://sourceforge.net/p/robocode/bugs/236/  (Robot Editor doesn't accept packagename with dot (.) in it)
2884[Bug-237]: http://sourceforge.net/p/robocode/bugs/237/  (OS X 10.6: Cannot run Robocode from robocode.sh)
2885[Bug-238]: http://sourceforge.net/p/robocode/bugs/238/  (OS X 10.6: The editor cannot see the JD)
2886[Bug-240]: http://sourceforge.net/p/robocode/bugs/240/  (morbid.MorbidPriest_1.0 fails to load)
2887[Bug-243]: http://sourceforge.net/p/robocode/bugs/243/  (Robot console text sometimes disappears)
2888[Bug-244]: http://sourceforge.net/p/robocode/bugs/244/  (Robot static data isn't being GCed after battle)
2889[Bug-245]: http://sourceforge.net/p/robocode/bugs/245/  (Removing directories from "development options" doesn't work)
2890[Bug-247]: http://sourceforge.net/p/robocode/bugs/247/  (Version ordering is somewhat strange with letters)
2891[Bug-250]: http://sourceforge.net/p/robocode/bugs/250/  (Installer installs AutoExtract$1.class)
2892[Bug-252]: http://sourceforge.net/p/robocode/bugs/252/  (yk.JahRoslav 1.1 throws WinException)
2893[Bug-254]: http://sourceforge.net/p/robocode/bugs/254/  (Roborumble doesn't upload with EXECUTE=NOT)
2894[Bug-255]: http://sourceforge.net/p/robocode/bugs/255/  (java.lang.Error: Interrupted attempt to aquire read lock)
2895[Bug-257]: http://sourceforge.net/p/robocode/bugs/257/  (Team RoboRumble uploading is broken)
2896[Bug-258]: http://sourceforge.net/p/robocode/bugs/258/  (isTeammate() called on null gives NullPointerException)
2897[Bug-259]: http://sourceforge.net/p/robocode/bugs/259/  (jlm.javaDisturbance loses substantial score in 1.7.2 Beta)
2898[Bug-260]: http://sourceforge.net/p/robocode/bugs/260/  (ArrayIndexOutOfBoundsException when starting team battle)
2899[Bug-261]: http://sourceforge.net/p/robocode/bugs/261/  ((.NET) condition tested on concurrently modified collection)
2900[Bug-262]: http://sourceforge.net/p/robocode/bugs/262/  (TeamRumble: Cannot find robot in nested .jar files)
2901[Bug-263]: http://sourceforge.net/p/robocode/bugs/263/  (Cannot extract downloaded robot for editing in Robot Editor)
2902[Bug-265]: http://sourceforge.net/p/robocode/bugs/265/  (Occasionally losing the bit of text in the robot console)
2903[Bug-267]: http://sourceforge.net/p/robocode/bugs/267/  (Strange issue first time running roborumble in 1.7.2.0 Beta2)
2904[Bug-269]: http://sourceforge.net/p/robocode/bugs/269/  (Minor visual bug - Currently selected robot gets covered)
2905[Bug-270]: http://sourceforge.net/p/robocode/bugs/270/  (Strange thread exceptions with kid.DeltaSquad in 1.7)
2906[Bug-271]: http://sourceforge.net/p/robocode/bugs/271/  (Battle engine consumes more CPU power over time)
2907[Bug-272]: http://sourceforge.net/p/robocode/bugs/272/  (isTeammate() sometimes returns false with teammates)
2908[Bug-274]: http://sourceforge.net/p/robocode/bugs/274/  ("Ignoring" messages in rumble are duplicated)
2909[Bug-275]: http://sourceforge.net/p/robocode/bugs/275/  (Duplicate version numbers prevents uploading)
2910[Bug-276]: http://sourceforge.net/p/robocode/bugs/276/  (tzu.TheArtOfWar 1.2 gets NullPointerExceptions)
2911[Bug-277]: http://sourceforge.net/p/robocode/bugs/277/  (Problems with Graphics2D.fill/draw(Shape))
2912[Bug-278]: http://sourceforge.net/p/robocode/bugs/278/  (Attempting to install robocode over an existing install NPEs)
2913[Bug-280]: http://sourceforge.net/p/robocode/bugs/280/  (NPE when uploading results)
2914[Bug-281]: http://sourceforge.net/p/robocode/bugs/281/  (The robocode.command is missing the execute permissions bit)
2915[Bug-282]: http://sourceforge.net/p/robocode/bugs/282/  (Cannot see robot with no package in New Battle dialog)
2916[Bug-283]: http://sourceforge.net/p/robocode/bugs/283/  (Possible for robot to kill other robot threads)
2917[Bug-284]: http://sourceforge.net/p/robocode/bugs/284/  (Robot Packager doesn't package source file in Eclipse proj)
2918[Bug-285]: http://sourceforge.net/p/robocode/bugs/285/  (Robot Packaging Wizard doesn't save value for Next & Back)
2919[Bug-286]: http://sourceforge.net/p/robocode/bugs/286/  (ClassNotFoundException at RobotClassLoader.java:271)
2920[Bug-287]: http://sourceforge.net/p/robocode/bugs/287/  (Zipped robots data files are not extracted)
2921[Bug-288]: http://sourceforge.net/p/robocode/bugs/288/  ("skipped" turns at start with -Ddebug=true)
2922[Bug-289]: http://sourceforge.net/p/robocode/bugs/289/  (Exclude filters not working)
2923[Bug-290]: http://sourceforge.net/p/robocode/bugs/290/  (Development Options remove wrong item)
2924[Bug-291]: http://sourceforge.net/p/robocode/bugs/291/  (JavaDoc missing _Robot and similar)
2925[Bug-292]: http://sourceforge.net/p/robocode/bugs/292/  (Robot PrintStream doesn't handle write in a portable fashion)
2926[Bug-293]: http://sourceforge.net/p/robocode/bugs/293/  (Wrong headings with the JuniorRobot)
2927[Bug-297]: http://sourceforge.net/p/robocode/bugs/297/  (x,y coords between BulletHitEvent & HitByBulletEvent differ)
2928[Bug-299]: http://sourceforge.net/p/robocode/bugs/299/  (Custom events no longer firing after clearing event queue)
2929[Bug-301]: http://sourceforge.net/p/robocode/bugs/301/  (getTurnRateRadians incorrect for negative velocity)
2930[Bug-302]: http://sourceforge.net/p/robocode/bugs/302/  (Hide enemy name implementation bug)
2931[Bug-303]: http://sourceforge.net/p/robocode/bugs/303/  (bullet.equals semantic has been change in 1.7.3.0 version)
2932[Bug-304]: http://sourceforge.net/p/robocode/bugs/304/  (setColor(null) causes NPE)
2933[Bug-305]: http://sourceforge.net/p/robocode/bugs/305/  (TeamRumble priority battles bug)
2934[Bug-306]: http://sourceforge.net/p/robocode/bugs/306/  (Rumble sh scripts for launching do not handle spaces in path)
2935[Bug-307]: http://sourceforge.net/p/robocode/bugs/306/  (Console output cannot handle non-ascii names)
2936[Bug-308]: http://sourceforge.net/p/robocode/bugs/308/  (ConcurrentModificationException in URLJarCollector)
2937[Bug-309]: http://sourceforge.net/p/robocode/bugs/309/  (robot in development generates * into filename)
2938[Bug-310]: http://sourceforge.net/p/robocode/bugs/310/  (Interface Robot skips turns at end of round)
2939[Bug-311]: http://sourceforge.net/p/robocode/bugs/311/  (out.write(int) uses up allocated printing quickly)
2940[Bug-312]: http://sourceforge.net/p/robocode/bugs/312/  (Enabling Paint Freezes Robocode)
2941[Bug-313]: http://sourceforge.net/p/robocode/bugs/313/  (Robocode .NET does not work on Java 7)
2942[Bug-315]: http://sourceforge.net/p/robocode/bugs/315/  (Unable to change drawing color in .NET (C#))
2943[Bug-318]: http://sourceforge.net/p/robocode/bugs/318/  (Installer throws NumberFormatException on Linux 3.0)
2944[Bug-319]: http://sourceforge.net/p/robocode/bugs/319/  (Package name allows bad chars)
2945[Bug-320]: http://sourceforge.net/p/robocode/bugs/320/  ("About" window colors are awful)
2946[Bug-323]: http://sourceforge.net/p/robocode/bugs/323/  (Robocode can't find the ECJ (Eclipse Compiler for Java))
2947[Bug-326]: http://sourceforge.net/p/robocode/bugs/326/  (Package of team fails to load in team battles)
2948[Bug-328]: http://sourceforge.net/p/robocode/bugs/328/  (Issue with the robocode.dll + # chars in the path for a dll)
2949[Bug-331]: http://sourceforge.net/p/robocode/bugs/331/  (RoboRumble client has infinite timeout)
2950[Bug-332]: http://sourceforge.net/p/robocode/bugs/332/  (Use OpenGL backend under linux)
2951[Bug-333]: http://sourceforge.net/p/robocode/bugs/333/  (.NET runs release dll not debug dll so can't debug)
2952[Bug-334]: http://sourceforge.net/p/robocode/bugs/334/  (Snapshot API never shows bullets in "HIT_WALL" status)
2953[Bug-335]: http://sourceforge.net/p/robocode/bugs/335/  (Skipped turns ... issues)
2954[Bug-336]: http://sourceforge.net/p/robocode/bugs/336/  (Skipped turns ... issues)
2955[Bug-337]: http://sourceforge.net/p/robocode/bugs/337/  (Hangups with New Editor in 1.7.4.0)
2956[Bug-338]: http://sourceforge.net/p/robocode/bugs/338/  ("Accept-Encoding: gzip" not in Roborumble HTTP Headers)
2957[Bug-339]: http://sourceforge.net/p/robocode/bugs/339/  (All Text Missing)
2958[Bug-340]: http://sourceforge.net/p/robocode/bugs/340/  (Robocode crash on window resize (linux-opengl))
2959[Bug-341]: http://sourceforge.net/p/robocode/bugs/341/  (InteractiveRobots gets error "After the event was added...")
2960[Bug-342]: http://sourceforge.net/p/robocode/bugs/342/  (New bots not given priority)
2961[Bug-344]: http://sourceforge.net/p/robocode/bugs/344/  (BattleAdaptor missing in robocode.control.events)
2962[Bug-345]: http://sourceforge.net/p/robocode/bugs/345/  (Graphics still being rendered when minimized)
2963[Bug-346]: http://sourceforge.net/p/robocode/bugs/346/  (Cannot extract sources from robot packages)
2964[Bug-347]: http://sourceforge.net/p/robocode/bugs/347/  (/bin/sh^M bad interpreter)
2965[Bug-348]: http://sourceforge.net/p/robocode/bugs/348/  (.NET: UnauthorizedAccessException in AppDomainShell.Dispose())
2966[Bug-349]: http://sourceforge.net/p/robocode/bugs/349/  (Instances of RobocodeEngine don't seem to be independant - memory leak and performance decrease)
2967[Bug-350]: http://sourceforge.net/p/robocode/bugs/350/  (Bullet id from battle record XML file is sometimes -1 causing a NumberFormatException)
2968[Bug-351]: http://sourceforge.net/p/robocode/bugs/351/  (Robot.onBattleEnded(BattleEndedEvent) provides wrong scores)
2969[Bug-352]: http://sourceforge.net/p/robocode/bugs/352/  (Results from BattleCompletedEvent.getIndexedResults() are always sorted)
2970[Bug-353]: http://sourceforge.net/p/robocode/bugs/353/  (RobocodeEngine.setVisible() can cause a NullPointerException)
2971[Bug-354]: http://sourceforge.net/p/robocode/bugs/354/  (Replaying an XML record can cause an ArrayIndexOutOfBoundsException)
2972[Bug-355]: http://sourceforge.net/p/robocode/bugs/355/  (Priority battles not accepted for mini/micro/nano rumbles)
2973[Bug-356]: http://sourceforge.net/p/robocode/bugs/356/  (Update Roborumble URLs from Darkcanuck to LiteRumble)
2974[Bug-357]: http://sourceforge.net/p/robocode/bugs/357/  (Tab characters are inserted in the last line of a robot source file when opening it)
2975[Bug-358]: http://sourceforge.net/p/robocode/bugs/358/  (Robot in default package cannot write to files. Should at least get a warning)
2976[Bug-361]: http://sourceforge.net/p/robocode/bugs/361/  (Problem in the text editor related with the .java file modification)
2977[Bug-362]: http://sourceforge.net/p/robocode/bugs/362/  (Rumble client does not remove participants in wrong codesize group)
2978[Bug-363]: http://sourceforge.net/p/robocode/bugs/363/  (No Last Survivor Bonus being given)
2979[Bug-364]: http://sourceforge.net/p/robocode/bugs/364/  (Robot Packager does not include the robot data dir in the .jar file)
2980[Bug-366]: http://sourceforge.net/p/robocode/bugs/366/  (Receiving enemy's real name on HitByBulletEvent)
2981[Bug-368]: http://sourceforge.net/p/robocode/bugs/368/  (Issues with sentries)
2982[Bug-369]: http://sourceforge.net/p/robocode/bugs/369/  (RoboRumble: NoClassDefFoundError for CodeSizeCalculator)
2983[Bug-370]: http://sourceforge.net/p/robocode/bugs/370/  (Robot Packager cannot find robot .properties file in development path)
2984[Bug-371]: http://sourceforge.net/p/robocode/bugs/371/  (High cpu usage on editor)
2985[Bug-372]: http://sourceforge.net/p/robocode/bugs/372/  (Cannot load battle file when -DNOSECURITY=true is enabled - java.lang.IllegalAccessError)
2986[Bug-373]: http://sourceforge.net/p/robocode/bugs/373/  (Wrong robot size calculation in version 1.9.0 - 1.9.2)
2987[Bug-374]: http://sourceforge.net/p/robocode/bugs/374/  (Wrong size report for minirumble in v1.9.2.2)
2988[Bug-375]: http://sourceforge.net/p/robocode/bugs/375/  (Wrong width and height returned for .NET robots)
2989
2990[Req-1]:   http://sourceforge.net/p/robocode/feature-requests/1/    (Multiple or hyperthreading CPUs (most P4s) hangs Robocode)
2991[Req-2]:   http://sourceforge.net/p/robocode/feature-requests/2/    (Keep window size of "New battle" window)
2992[Req-3]:   http://sourceforge.net/p/robocode/feature-requests/3/    (More precise battlefieldsize configuration)
2993[Req-4]:   http://sourceforge.net/p/robocode/feature-requests/4/    (Prevent API from loading unused features)
2994[Req-5]:   http://sourceforge.net/p/robocode/feature-requests/5/    (Keyboard Navigation)
2995[Req-6]:   http://sourceforge.net/p/robocode/feature-requests/6/    (Editor Improvements)
2996[Req-7]:   http://sourceforge.net/p/robocode/feature-requests/7/    (Graphical "debug" facilities like with RobocodeGL)
2997[Req-8]:   http://sourceforge.net/p/robocode/feature-requests/8/    (Debug Graphics - SG Option)
2998[Req-10]:  http://sourceforge.net/p/robocode/feature-requests/10/   (Coloring of bullets and scan arcs)
2999[Req-11]:  http://sourceforge.net/p/robocode/feature-requests/11/   (Explosion on robots dependent on bullet energy)
3000[Req-12]:  http://sourceforge.net/p/robocode/feature-requests/12/   (Faster framerates / Turns per second)
3001[Req-13]:  http://sourceforge.net/p/robocode/feature-requests/13/   (Bullets are sometimes too small)
3002[Req-14]:  http://sourceforge.net/p/robocode/feature-requests/14/   (Restart Button)
3003[Req-15]:  http://sourceforge.net/p/robocode/feature-requests/15/   (Optional sound effects)
3004[Req-16]:  http://sourceforge.net/p/robocode/feature-requests/16/   (Browse button in Development Options)
3005[Req-17]:  http://sourceforge.net/p/robocode/feature-requests/17/   (New splashscreen picture)
3006[Req-18]:  http://sourceforge.net/p/robocode/feature-requests/18/   (Better notification about new Robocode versions)
3007[Req-19]:  http://sourceforge.net/p/robocode/feature-requests/19/   (Possible to install Robocode on Windows Vista)
3008[Req-20]:  http://sourceforge.net/p/robocode/feature-requests/20/   (Robot templates must be updated regarding deprecated methods)
3009[Req-21]:  http://sourceforge.net/p/robocode/feature-requests/21/   (Option for accessing external .jars)
3010[Req-23]:  http://sourceforge.net/p/robocode/feature-requests/23/   (Preference to allow disabling of the scorecard pop-up)
3011[Req-24]:  http://sourceforge.net/p/robocode/feature-requests/24/   (Recording of battles)
3012[Req-25]:  http://sourceforge.net/p/robocode/feature-requests/25/   (Save battle results to file)
3013[Req-26]:  http://sourceforge.net/p/robocode/feature-requests/26/   (Invoke default browser from Help)
3014[Req-30]:  http://sourceforge.net/p/robocode/feature-requests/30/   (UI Control for adjusting the TPS quickly)
3015[Req-31]:  http://sourceforge.net/p/robocode/feature-requests/31/   (Redirecting Robot output, running without GUI)
3016[Req-32]:  http://sourceforge.net/p/robocode/feature-requests/32/   (Bullet size)
3017[Req-33]:  http://sourceforge.net/p/robocode/feature-requests/33/   (Making robots die quicker (graphically))
3018[Req-34]:  http://sourceforge.net/p/robocode/feature-requests/34/   (Provide javadoc for robocode.util.Utils and robocode.control)
3019[Req-35]:  http://sourceforge.net/p/robocode/feature-requests/35/   (Pause Button)
3020[Req-36]:  http://sourceforge.net/p/robocode/feature-requests/36/   (Initial Placement)
3021[Req-37]:  http://sourceforge.net/p/robocode/feature-requests/37/   (Running Score Window)
3022[Req-38]:  http://sourceforge.net/p/robocode/feature-requests/38/   (Codesize)
3023[Req-39]:  http://sourceforge.net/p/robocode/feature-requests/39/   (Support for RR@Hom)
3024[Req-44]:  http://sourceforge.net/p/robocode/feature-requests/44/   (Restart tweak)
3025[Req-45]:  http://sourceforge.net/p/robocode/feature-requests/45/   (Reset compiler cancel button)
3026[Req-49]:  http://sourceforge.net/p/robocode/feature-requests/49/   (Speedup time required for rebuilding robot database)
3027[Req-50]:  http://sourceforge.net/p/robocode/feature-requests/50/   (Recalculate CPU Constant)
3028[Req-52]:  http://sourceforge.net/p/robocode/feature-requests/52/   (The 'New Battle' window sometimes is spamed with .robotcache)
3029[Req-53]:  http://sourceforge.net/p/robocode/feature-requests/53/   (More control over the event queue)
3030[Req-54]:  http://sourceforge.net/p/robocode/feature-requests/54/   (All input received from events)
3031[Req-55]:  http://sourceforge.net/p/robocode/feature-requests/55/   (Exclude Filter for RoboRumble)
3032[Req-56]:  http://sourceforge.net/p/robocode/feature-requests/56/   (Robots Cache Cleaner)
3033[Req-57]:  http://sourceforge.net/p/robocode/feature-requests/57/   (Events processed in chronological order)
3034[Req-58]:  http://sourceforge.net/p/robocode/feature-requests/58/   (HitRobotEvent - damage)
3035[Req-60]:  http://sourceforge.net/p/robocode/feature-requests/60/   (Enhanced CPU constant calculation)
3036[Req-62]:  http://sourceforge.net/p/robocode/feature-requests/62/   (Fix for massive turn skipping when cpu constant < granularity)
3037[Req-63]:  http://sourceforge.net/p/robocode/feature-requests/63/   (Replay should store debug graphics)
3038[Req-64]:  http://sourceforge.net/p/robocode/feature-requests/64/   (Change default battle settings like e.g. "Number of Rounds")
3039[Req-65]:  http://sourceforge.net/p/robocode/feature-requests/65/   (Score % display)
3040[Req-66]:  http://sourceforge.net/p/robocode/feature-requests/66/   ("onBattleIEnd(*)" Event)
3041[Req-70]:  http://sourceforge.net/p/robocode/feature-requests/70/   (Longer package name allowed)
3042[Req-74]:  http://sourceforge.net/p/robocode/feature-requests/74/   (Option for enabling/disabling robot timeouts)
3043[Req-75]:  http://sourceforge.net/p/robocode/feature-requests/75/   (Add client version to POST data sent to server)
3044[Req-77]:  http://sourceforge.net/p/robocode/feature-requests/77/   (Better "lifebar" display)
3045[Req-78]:  http://sourceforge.net/p/robocode/feature-requests/78/   (Visual debugging without cpu penalty)
3046[Req-80]:  http://sourceforge.net/p/robocode/feature-requests/80/   (Screenshot of battleview)
3047[Req-82]:  http://sourceforge.net/p/robocode/feature-requests/82/   (Launch upload result in separate thread)
3048[Req-84]:  http://sourceforge.net/p/robocode/feature-requests/84/   (Added append option in copy method (FileTransfer class))
3049[Req-86]:  http://sourceforge.net/p/robocode/feature-requests/86/   (Rankings should be visible when Robocode is minimized)
3050[Req-88]:  http://sourceforge.net/p/robocode/feature-requests/88/   (Command Line option for saving a battle record file)
3051[Req-89]:  http://sourceforge.net/p/robocode/feature-requests/89/   (Launch Robocode from .br (battle record) files)
3052[Req-90]:  http://sourceforge.net/p/robocode/feature-requests/90/   (Prevent JuniorRobot to be unresponsive)
3053[Req-92]:  http://sourceforge.net/p/robocode/feature-requests/92/   (Scrollable properties)
3054[Req-93]:  http://sourceforge.net/p/robocode/feature-requests/93/   (Rename /robots/.robotcache to /robots/.data)
3055[Req-99]:  http://sourceforge.net/p/robocode/feature-requests/99/   (Move away from Jikes towards ECJ)
3056[Req-101]: http://sourceforge.net/p/robocode/feature-requests/101/  (onRoundEnded())
3057[Req-113]: http://sourceforge.net/p/robocode/feature-requests/113/  (Skipped turn events)
3058[Req-114]: http://sourceforge.net/p/robocode/feature-requests/114/  (RateControlRobot vs. TeamRobot)
3059[Req-115]: http://sourceforge.net/p/robocode/feature-requests/115/  (Installed package should contain readme file)
3060[Req-118]: http://sourceforge.net/p/robocode/feature-requests/118/  (Enable/disable development paths)
3061[Req-121]: http://sourceforge.net/p/robocode/feature-requests/121/  (Issues with editor font)
3062[Req-124]: http://sourceforge.net/p/robocode/feature-requests/124/  (Ability to save the properties file for robots in dev. path)
3063[Req-128]: http://sourceforge.net/p/robocode/feature-requests/128/  (In battle name hiding)
3064[Req-129]: http://sourceforge.net/p/robocode/feature-requests/129/  (Rules.getBulletSpeed)
3065[Req-134]: http://sourceforge.net/p/robocode/feature-requests/134/  (Calculate codesize after compile in editor)
3066[Req-135]: http://sourceforge.net/p/robocode/feature-requests/135/  (Twin Duel configuration files)
3067[Req-144]: http://sourceforge.net/p/robocode/feature-requests/144/  (Mac ... start with icon and name)
3068[Req-156]: http://sourceforge.net/p/robocode/feature-requests/156/  (Codesize added to properties file)
3069[Req-159]: http://sourceforge.net/p/robocode/feature-requests/159/  (Fix overkilled garbage collection on static fields)
3070