Skip to content

Commit f430e7f

Browse files
committed
0.1.0
1 parent f8c19df commit f430e7f

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.0 (2023-04-30)
2+
3+
* Fixed a small bug that caused a crash early in the tutorial.
4+
15
## 0.0.7 (2022-12-13)
26

37
* Several improvements have been made to the tactical overlay:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Shattered Plans is a turn-based strategy game by [Jagex Ltd.][jagex] It was orig
99
Running Shattered Plans requires [Java 17 or newer][download-java] and [the latest version of the game JAR][download-shattered-plans]. You can then run the game by running the following command:
1010

1111
```sh
12-
java -jar shatteredplans-0.0.7.jar --local-server
12+
java -jar shatteredplans-0.1.0.jar --local-server
1313
```
1414

1515
As the name suggests, passing the `--local-server` flag will run a Shattered Plans server locally, allowing you to play the game in singleplayer mode. Other players can connect to your server by running
1616

1717
```sh
18-
java -jar shatteredplans-0.0.7.jar --host <HOST>
18+
java -jar shatteredplans-0.1.0.jar --host <HOST>
1919
```
2020

2121
replacing `<HOST>` with your IP address. By default, the server runs on port 43594, but you can specify a different port using the `--port` flag. A few other options are also available, pass `--help` to see them all.
@@ -31,7 +31,7 @@ Limited support for adjusting the UI scale is available by setting one or both o
3131
For example, the following command will force the game to render at 1.5× standard height using a widescreen aspect ratio:
3232

3333
```sh
34-
java -Dfunorb.shatteredplans.client.uiScale=1.5 -Dfunorb.shatteredplans.client.aspectRatio=16:9 -jar shatteredplans-0.0.7.jar
34+
java -Dfunorb.shatteredplans.client.uiScale=1.5 -Dfunorb.shatteredplans.client.aspectRatio=16:9 -jar shatteredplans-0.1.0.jar
3535
```
3636

3737
In-game, the result looks like this:
@@ -69,7 +69,7 @@ If you’d like to find people to play with, or if you have any further question
6969
Shattered Plans and FunOrb are the property of [Jagex Ltd.][jagex] This project is a fan effort to keep a wonderful, creative game from being permanently lost. I do not commercially benefit from this project in any way, and it does not compete in any way with any of Jagex’s current commercial offerings, none of which are even remotely similar to Shattered Plans.
7070

7171
[download-java]: https://www.oracle.com/java/technologies/downloads/
72-
[download-shattered-plans]: https://github.com/lexi-lambda/shattered-plans/releases/download/v0.0.7/shatteredplans-0.0.7.jar
72+
[download-shattered-plans]: https://github.com/lexi-lambda/shattered-plans/releases/download/v0.1.0/shatteredplans-0.1.0.jar
7373
[FunOrb]: https://en.wikipedia.org/wiki/FunOrb
7474
[funorb-discord]: https://discord.gg/MGfDrDf
7575
[funorb-wiki:shattered-plans]: https://funorb.fandom.com/wiki/Shattered_Plans

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.alterorb</groupId>
88
<artifactId>shatteredplans</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010

1111
<name>Shattered Plans</name>
1212
<url>https://alterorb.net</url>

0 commit comments

Comments
 (0)