Skip to content

Commit

Permalink
release 1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
smack42 committed Jul 25, 2020
1 parent 17d937b commit acbd9b3
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ CHANGES



1.3.8 (2020-07-25)

+ don't apply "ricochet rule" on custom boards; in response to bug #13
- active robot has to ricochet at least once before reaching the goal,
according to the rules of the Ricochet Robots board game
- however, this rule is not applied on custom boards, when the active robot can
reach the goal in a straight line, but requires at least one other robot to be
moved into position (one-move solutions are still not allowed)
+ fixed a GUI-related bug (multi-threading problem, could "freeze" randomly)



1.3.7 (2018-09-17)

+ speedup of "solution01 solver mode"; in response to bug #12
Expand Down
4 changes: 2 additions & 2 deletions LIESMICH.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DriftingDroids - noch ein weiteres Ricochet Robots Lösungsprogramm.

Version 1.3.7 (2018-09-17)
Version 1.3.8 (2020-07-25)
Homepage https://github.com/smack42/DriftingDroids/wiki


Expand Down Expand Up @@ -38,7 +38,7 @@ Für mehr Informationen lies bitte die beiliegende Dokumentation.
## Lizenz

DriftingDroids - yet another Ricochet Robots solver program.
Copyright (C) 2011-2018 Michael Henke <smack42@gmail.com>
Copyright (C) 2011-2020 Michael Henke <smack42@gmail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DriftingDroids - yet another Ricochet Robots solver program.

Version 1.3.7 (2018-09-17)
Version 1.3.8 (2020-07-25)
Homepage https://github.com/smack42/DriftingDroids/wiki


Expand Down Expand Up @@ -36,7 +36,7 @@ For more info please read the included documentation.
## license

DriftingDroids - yet another Ricochet Robots solver program.
Copyright (C) 2011-2018 Michael Henke <smack42@gmail.com>
Copyright (C) 2011-2020 Michael Henke <smack42@gmail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion buildjar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ OUTPUT=lib/driftingdroids.jar

rm -f $OUTPUT

java -jar $HOME/Programme/proguard6.0/lib/proguard.jar @proguard_config -outjars $OUTPUT
java -jar $HOME/Programme/proguard6.2/lib/proguard.jar @proguard_config -outjars $OUTPUT

chmod u+x $OUTPUT

Binary file modified doc/DriftingDroids_Nutzerdokumentation.odt
Binary file not shown.
Binary file modified doc/DriftingDroids_Nutzerdokumentation.pdf
Binary file not shown.
Binary file modified doc/DriftingDroids_user_documentation.odt
Binary file not shown.
Binary file modified doc/DriftingDroids_user_documentation.pdf
Binary file not shown.
Binary file added releases/DriftingDroids_1.3.8.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/driftingdroids/ui/Starter.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
public class Starter {

public static void main(String[] args) throws InterruptedException, InvocationTargetException {
new SwingGUI("DriftingDroids 1.3.7 (2018-09-17)");
new SwingGUI("DriftingDroids 1.3.8 (2020-07-25)");
// runTestRandom1000();
// runTestKeyDepthMap();
// runTestKeyInt();
Expand Down

0 comments on commit acbd9b3

Please sign in to comment.