Skip to content

Commit

Permalink
Merge branch 'master' of github.com:farin/JCloisterZone
Browse files Browse the repository at this point in the history
  • Loading branch information
farin committed Dec 27, 2021
2 parents 47bf043 + f86c2db commit 4a38e3b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## upcoming

* Under The Big Top support

## 5.9.1
*2021-12-12*
* fixes engine run when user profile path includes non-ascii characters
* engine support for Robber's son fan expansion (community addon)
* game setup tlle preview shows again C1/C2 tile variant (depending on Abbot figure disabled/enabled)
* fixes score overlay (feature highlight on score mouseover) for garden tiles
* addons can provide link type ('download' and 'wiki' are handled with apropriate icon now)
* dev: Theme inspector improvements - fixed header, remembers last setting on page reload / app restart


## 5.9.0
*2021-11-18*
* responsive final stats
* improved tunnel tokens positions, artwork addon can defines tunnel shape and position
* fix bazaar - all tiles in auction are now random and chosen independently
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcloisterzone/engine/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class Engine implements Runnable {
private ArrayList<String> tileDefinitions = new ArrayList<>();

public Engine(InputStream in, PrintStream out, PrintStream err, PrintStream log) {
this.in = new Scanner(in);
this.in = new Scanner(in, "UTF-8");
this.out = out;
this.err = err;
this.log = log;
Expand Down

0 comments on commit 4a38e3b

Please # to comment.