Skip to content

Commit

Permalink
release: v24.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xeruf committed Mar 14, 2024
1 parent 02a2179 commit 1cc2805
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ The version should always be in sync with the [GUI](https://github.com/software-
- Grey out winning ship so second player can follow
- Improve XML protocol

### 24.2.2 Detailed winner explanation - 2024-03-14

### 24.2.1 Fix issue leading to wrong winner - 2024-03-13

### 24.2.0 Fix GameResult - 2024-03-12
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
socha.gameName=mississippi
socha.version.year=24
socha.version.minor=02
socha.version.patch=01
socha.version.patch=02
4 changes: 2 additions & 2 deletions plugin/src/test/kotlin/sc/plugin2024/GameStateTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ class GameStateTest: FunSpec({
GameState(Board(listOf()), lastMove = Move(Accelerate(1), Advance(2))) shouldSerializeTo """
<state startTeam="ONE" turn="0" currentTeam="ONE">
<board nextDirection="RIGHT"/>
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
<position q="-1" r="-1" s="2"/>
</ship>
<ship team="TWO" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
<ship team="TWO" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
<position q="-2" r="1" s="1"/>
</ship>
<lastMove>
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/test/kotlin/sc/plugin2024/ShipTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ShipTest: FunSpec({
}
test("serializes nicely") {
shipOne shouldSerializeTo """
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0">
<ship team="ONE" direction="RIGHT" speed="1" coal="6" passengers="0" freeTurns="1" points="0" stuck="false">
<position q="-1" r="-1" s="2"/>
</ship>"""
}
Expand Down

0 comments on commit 1cc2805

Please sign in to comment.