Skip to content

Commit

Permalink
0.9.31
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonN committed Apr 23, 2020
1 parent e474424 commit 8757be6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions doc/history.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
Version history
===============

0.9.31
------

2020-04-23
----------

Compiling yourself: On Windows, Lix requires LDC 1.21.0, LDC or newer to
compile out of the box. For LDC 1.20.1 or older, in Lix's dub.json file, you
must first change all appearances of "-entry:wmainCRTStartup"
with "-entry:mainCRTStartup".
See doc/build/win64.txt, section "Old LDC versions" for details.

Compiling yourself: Increased version of dependency sdlang-d: 0.10.4 -> 0.10.6,
so that Lix still compiles with older versions of DMD, with the current stable
DMD 2.091.0, and with even newer versions.

Fix #394: The editor now sorts tilesets alphabetically by the shown directory,
which is its second-level-nested directory in images/.
Old order: forest/, occult/, abstract/, construction/, ..., because forest and
occult were in images/amanda/ and abstract, construction were in images/geoo/.
New order: abstract/, beach/, bricks/, carnival/, construction/, ..., forest/,
..., occult/, ..., irrespective of the unshown author's name.

Fixed a backroute in Ifo Island. The building at the bottom takes longer now.

0.9.30
------

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

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

struct Version {
Expand Down

0 comments on commit 8757be6

Please sign in to comment.