diff --git a/data/desktop/com.lixgame.Lix.metainfo.xml b/data/desktop/com.lixgame.Lix.metainfo.xml index 819a9a61..a49bcce0 100644 --- a/data/desktop/com.lixgame.Lix.metainfo.xml +++ b/data/desktop/com.lixgame.Lix.metainfo.xml @@ -19,6 +19,9 @@ + + https://github.com/SimonN/LixD/releases/tag/v0.10.23 + https://github.com/SimonN/LixD/releases/tag/v0.10.22 diff --git a/doc/history.txt b/doc/history.txt index 10846a13..f62f515b 100644 --- a/doc/history.txt +++ b/doc/history.txt @@ -1,6 +1,29 @@ Version history =============== +0.10.23 +------- + +2024-06-02 + +Keep visible land in-place when you open or close the replay tweaker. Before, +when you opened or closed the tweaker, the land scrolled left or right. + +Fix #476: Chat messages appear in the chatters' player colors. Observers +will continue to chat in white. + +On Windows, Lix shows a native dialog box when an exception flies out of main, +e.g., when you lack important files that Lix needs to run. You can screenshot +the dialog box or copy the error from `user/log.txt`. + +Move some multiplayer maps: For each player count (2p, 3p, ..., 8p), +whenever an author directory held only only one map at player count, +that that map is now in a directory `other/` at that player count. + +Add Sunny Day at the Beach, a multiplayer map by Blitz for 2p-5p. + + + 0.10.22 ------- diff --git a/src/net/version.d b/src/net/version.d index eaef6c7d..79d945d4 100644 --- a/src/net/version.d +++ b/src/net/version.d @@ -12,7 +12,7 @@ import std.conv; import std.range; import std.string; -private immutable _gameVersion = Version(0, 10, 22); +private immutable _gameVersion = Version(0, 10, 23); const(Version) gameVersion() { return _gameVersion; } struct Version {