diff --git a/README.md b/README.md index 1a43dc6..7f6efb6 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,18 @@ An Archive Of Every Cosmic Reach Version # Changelogs +## Pre-Alpha 0.3.16 +- Added Block of Gold +- Changed the colour palette of gold ingots and gold medkits +- Added `/clear` command to clear the inventory of a player +- Language button is now an icon on the bottom right of the main menu +- For modders: RuntimeInfo.java has a String field called `gameVariant` for modloaders to override. +- `xor` condition added for canPlaceChecks and crafting recipes +- Can now set the offline name via an environment variable: `COSMIC_REACH_OFFLINE_DISPLAY_NAME` +- Fixed the preamble screen moving the ok button depending on screen size +- Fixed credits menu not fast-forwarding when holding space or control +- Fixed crashes relating to where the player was looking at blocks + ## Pre-Alpha 0.3.15 - Added Latex, extracted when you use the fluid vacuum on a tree log - Added rubber blocks, a block which bounces you when you fall on it diff --git a/changelogs.json b/changelogs.json index 8b013d3..46b68cc 100644 --- a/changelogs.json +++ b/changelogs.json @@ -1,5 +1,17 @@ { "pre-alpha": { + "0.3.16": [ + "Added Block of Gold", + "Changed the colour palette of gold ingots and gold medkits", + "Added `/clear` command to clear the inventory of a player", + "Language button is now an icon on the bottom right of the main menu", + "For modders: RuntimeInfo.java has a String field called `gameVariant` for modloaders to override.", + "`xor` condition added for canPlaceChecks and crafting recipes", + "Can now set the offline name via an environment variable: `COSMIC_REACH_OFFLINE_DISPLAY_NAME`", + "Fixed the preamble screen moving the ok button depending on screen size", + "Fixed credits menu not fast-forwarding when holding space or control", + "Fixed crashes relating to where the player was looking at blocks" + ], "0.3.15": [ "Added Latex, extracted when you use the fluid vacuum on a tree log", "Added rubber blocks, a block which bounces you when you fall on it", diff --git a/versions.json b/versions.json index 33aa827..f5bcca7 100644 --- a/versions.json +++ b/versions.json @@ -1,8 +1,23 @@ { "latest": { - "pre_alpha": "0.3.15" + "pre_alpha": "0.3.16" }, "versions": [ + { + "id": "0.3.16", + "type": "pre_alpha", + "releaseTime": 1736380800, + "client": { + "url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.16/client/Cosmic-Reach-0.3.16.jar", + "sha256": "20114e2555d81dbd94b6f76decb0da64df8eb400dd278bc75bc905cd840b3bc3", + "size": 53468182 + }, + "server": { + "url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.16/server/Cosmic-Reach-Server-0.3.16.jar", + "sha256": "7c511cb7b6af51d2d2812ff2584f8d50cd3ad5ebf7d244fa3364de8038a00b9d", + "size": 13117918 + } + }, { "id": "0.3.15", "type": "pre_alpha", diff --git a/versions/pre-alpha/0.3.16/client/Cosmic-Reach-0.3.16.jar b/versions/pre-alpha/0.3.16/client/Cosmic-Reach-0.3.16.jar new file mode 100644 index 0000000..4f3bb77 Binary files /dev/null and b/versions/pre-alpha/0.3.16/client/Cosmic-Reach-0.3.16.jar differ diff --git a/versions/pre-alpha/0.3.16/server/Cosmic-Reach-Server-0.3.16.jar b/versions/pre-alpha/0.3.16/server/Cosmic-Reach-Server-0.3.16.jar new file mode 100644 index 0000000..696566e Binary files /dev/null and b/versions/pre-alpha/0.3.16/server/Cosmic-Reach-Server-0.3.16.jar differ