Skip to content

Commit

Permalink
0.10.26
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonN committed Aug 17, 2024
1 parent 37b9770 commit 7a322fd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
6 changes: 4 additions & 2 deletions data/desktop/com.lixgame.Lix.metainfo.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<component type="desktop">
<!--Created with jdAppdataEdit 4.2-->
<id>com.lixgame.Lix</id>
<name>Lix</name>
<summary>Lemmings-like game with puzzles, editor, multiplayer</summary>
Expand All @@ -10,7 +9,7 @@
<project_license>CC0-1.0</project_license>
<description>
<p>Lix is a puzzle game inspired by Lemmings (DMA Design, 1991). Lix is free and open source.</p>
<p>Assign skills to guide the lix through over 700 singleplayer puzzles. Design your own levels with the included editor.</p>
<p>Assign skills to guide the lix through over 850 singleplayer puzzles. Design your own levels with the included editor.</p>
<p>Attack and defend in real-time multiplayer for 2 to 8 players: Who can save the most lix?</p>
</description>
<screenshots>
Expand All @@ -19,6 +18,9 @@
</screenshot>
</screenshots>
<releases>
<release version="v0.10.26" date="2024-08-17" type="stable">
<url>https://github.com/SimonN/LixD/releases/tag/v0.10.26</url>
</release>
<release version="v0.10.25" date="2024-07-24" type="stable">
<url>https://github.com/SimonN/LixD/releases/tag/v0.10.25</url>
</release>
Expand Down
17 changes: 17 additions & 0 deletions doc/history.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Version history
===============

0.10.26
-------

2024-08-17

In multiplayer, when you've selected a spawn delay handicap, the in-game panel
shows you the remaining time until your first lix spawns.

Fix an animation regression from Lix 0.10.25: Amanda's occult-style hatch
animated only through its first row of frames, then disappeared. This didn't
affect physics, the lix continued to spawn correctly from thin air. Now, all
hatches animate correctly through all frames again.

Refactor permutations to be allocation-free.



0.10.25
-------

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, 10, 25);
private immutable _gameVersion = Version(0, 10, 26);
const(Version) gameVersion() { return _gameVersion; }

struct Version {
Expand Down

0 comments on commit 7a322fd

Please sign in to comment.