Skip to content

Commit

Permalink
0.9.43
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonN committed Mar 29, 2022
1 parent 8c2a257 commit 409d997
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions doc/history.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
Version history
===============

0.9.43
------

2022-03-29

Fix server-side permutation bug: In 0.9.42, the server re-rolled the
permutation of starting points for every player. This desynched the maps --
unless you were only playing 2-player on perfectly symmetrical maps and never
used directional force.

Don't send up to 300 nullbytes on short chat packets, send only the necessary
bytes. Keep max chat length at 300 UTF-8 code units.

In the lobby, sort the list of players. First criterion: Players sort higher
than observers. Second criterion: Red sorts higher than orange, yellow, ...
Third criterion: Within each color, sort by player name. Ready/unready doesn't
affect sorting. It's easier now to see which/how many colors are in use, but
I'll leave open github issue #407: Color buttons in lobby, show current usage.

Disable the expensive level-drawing unittest that also didn't clean up
its file in ./export/.

macOS: Rely on pkg-config according to Allegro's documentation here:
https://github.com/liballeg/allegro5/blob/master/README_pkgconfig.txt
Before, on macOS ARM64, ld didn't find the Allegro libs even with pkg-confic
installed; see github issue #430.

Remove obsolete build documentation ./doc/build/allegro5.txt and
cross-reference more clearly between other files in ./doc/build/.



0.9.42
------

Expand Down
2 changes: 1 addition & 1 deletion src/net/version.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import std.conv;
import std.range;
import std.string;

private immutable _gameVersion = Version(0, 9, 42);
private immutable _gameVersion = Version(0, 9, 43);
const(Version) gameVersion() { return _gameVersion; }

struct Version {
Expand Down

0 comments on commit 409d997

Please sign in to comment.