Skip to content

Commit aacca81

Browse files
committed
release: v24.0.4
1 parent 7af2952 commit aacca81

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,18 @@ The version should always be in sync with the [GUI](https://github.com/software-
1010
A `y` version of 0 marks the beta of the current year
1111
and likely contains breaking changes between patches.
1212

13-
### 24.0.0 - 2023-08-10
13+
### 24.0.4 Eliminating Oversights - 2023-08-23
14+
- Revamp calculation structure for available Moves
15+
- Fix revealing of Segments including nextDirection
16+
- Add some helpers and documentation
17+
18+
### 24.0.3 Rule Fixes - 2023-08-12
19+
- Properly deep copy board
20+
- Allow picking up passengers at speed 2 in current
21+
- Skip player turn if ship is immovable
22+
- Extend tests
23+
24+
### 24.0.0 New Game with adjusted rules - 2023-08-10
1425
- Fix Orientation of Coordinates and Directions for Cartesian, DoubledHex and Cube
1526
- Implement basic version of Mississippi Queen - XML and Rules are subject to change!
1627

gradle.properties

Lines changed: 1 addition & 1 deletion
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=00
4-
socha.version.patch=03
4+
socha.version.patch=04

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class BoardTest: FunSpec({
165165
}
166166
}
167167

168-
xtest("clones segment deeply") {
168+
test("clones segment deeply") {
169169
val clone = board.clone()
170170
board shouldBe clone
171171
board.hashCode() shouldBe clone.hashCode()

0 commit comments

Comments
 (0)