From 2f7ea9047cdc955b8a18d884eacd73feca66c646 Mon Sep 17 00:00:00 2001 From: Simon Naarmann Date: Mon, 1 May 2023 11:14:08 +0200 Subject: [PATCH] 0.10.9 --- doc/history.txt | 28 ++++++++++++++++++++++++++++ doc/thanks.txt | 4 ++++ src/net/version.d | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/doc/history.txt b/doc/history.txt index 19ec7e9b..0e9f49d4 100644 --- a/doc/history.txt +++ b/doc/history.txt @@ -1,6 +1,34 @@ Version history =============== +0.10.9 +------ + +2023-05-01 + +Fix radio buttons: It was possible to select multiple radio buttons by +clicking the squares, not the labels. Now, only one button is ever active. + +Add the 6 singleplayer levels from Lemmings Forums's Level Design Contest 27 +by me and geoo in misc/contests/2023/: Bumper Cave, Inside Your Router, +Pommes Schranke, Rhizome, Hanabi, The Last Shall Be First. + +Add Catalan translation of the Lix user interface. +Thanks for the translation, Rampoina! + +Reduced the filesize of the SVG icon data/images/lix_logo.svg from 3.4 MB +to 30 KB. It looks practically the same. Thanks for re-tracing, Rampoina! + +Allow longer description in the level editor's topology menu for wrap options. +Paint the size warning (level too large can crash 32-bit Lix) in red, possibly +overlapping the descriptions of the wrap checkboxes when both the description +and the warning texts are long. + +Clarify "Alt+Tab is fast" in the options menu. Now the tooltip says: +"Switching windows (e.g., with Alt+Tab) works quickly." + + + 0.10.8 ------ diff --git a/doc/thanks.txt b/doc/thanks.txt index 8fb33466..a434d108 100644 --- a/doc/thanks.txt +++ b/doc/thanks.txt @@ -91,6 +91,10 @@ Sanchez * Swedish translation of Lix's user interface: data/transl/swedish.txt +Rampoina + * Catalan translation of Lix's user interface: + data/transl/catalan.txt + CyberShadow * Contributing code to early D Lix to for better bitmap buttons on large resolutions. diff --git a/src/net/version.d b/src/net/version.d index b47d4c50..aed41750 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, 8); +private immutable _gameVersion = Version(0, 10, 9); const(Version) gameVersion() { return _gameVersion; } struct Version {