The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-12-09 | 868 Bytes | |
| robocode-1.10.1-setup.jar | 2025-12-09 | 21.4 MB | |
| Totals: 2 Items | 21.4 MB | 176 | |
Version 1.10.1 (09-Dec-2025)
Bugfix
- #71: Replaced
Thread.stop()call withThread.interrupt()in theRobotThreadManager- The
Thread.stop()call has been removed as of Java 21, so the old call to stop() would cause the rest of the battle to be aborted; e.g., if you were running 100 rounds, but after the second a robot's thread needs to be terminated, then that would abort the rest of the rounds. By swapping in interrupt, the thread should still terminate, but gracefully. - Thanks go to Jeremiah Blanchard for fixing this ❤️. Nice catch!
- The
Changes
- Improved documentation and comments with all sample bots.
- Updated libraries (dependencies) to the latest versions (including Eclipse Compiler for Java and Codesize).