Skip to content

Commit 1cc2805

Browse files
committed
release: v24.2.2
1 parent 02a2179 commit 1cc2805

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ The version should always be in sync with the [GUI](https://github.com/software-
1818
- Grey out winning ship so second player can follow
1919
- Improve XML protocol
2020

21+
### 24.2.2 Detailed winner explanation - 2024-03-14
22+
2123
### 24.2.1 Fix issue leading to wrong winner - 2024-03-13
2224

2325
### 24.2.0 Fix GameResult - 2024-03-12

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
socha.gameName=mississippi
22
socha.version.year=24
33
socha.version.minor=02
4-
socha.version.patch=01
4+
socha.version.patch=02

plugin/src/test/kotlin/sc/plugin2024/GameStateTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,10 @@ class GameStateTest: FunSpec({
331331
GameState(Board(listOf()), lastMove = Move(Accelerate(1), Advance(2))) shouldSerializeTo """
332332
<state startTeam="ONE" turn="0" currentTeam="ONE">
333333
<board nextDirection="RIGHT"/>
334-
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
334+
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
335335
<position q="-1" r="-1" s="2"/>
336336
</ship>
337-
<ship team="TWO" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
337+
<ship team="TWO" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
338338
<position q="-2" r="1" s="1"/>
339339
</ship>
340340
<lastMove>

plugin/src/test/kotlin/sc/plugin2024/ShipTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ShipTest: FunSpec({
1616
}
1717
test("serializes nicely") {
1818
shipOne shouldSerializeTo """
19-
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
19+
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
2020
<position q="-1" r="-1" s="2"/>
2121
</ship>"""
2222
}

0 commit comments

Comments
 (0)