diff --git a/README.md b/README.md index a9a6546..98231a7 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,29 @@ An Archive Of Every Cosmic Reach Version # Changelogs +## Pre-Alpha 0.3.2 (The Multiplayer Update) +- Added Multiplayer +- Added account authentication +- Servers can whitelist, add operator status and ban players +- Added ban, ban-ip, unban, unban-ip, kick, op, and de-op commands +- Commands are now synchronized +- Server settings can have a default gamemode for players +- Server now only sends entity positions when they change +- Added brick blocks + +And now for the notable changes of the previous discord-only pre-releases leading up to this one: +- Fixed credits using the wrong charset +- Flying downwards in no-clip is now the same speed as going up +- Fixed block loot drops not dropping on center +- Fixed backspace in chat not deleting on the cursor +- Fixed creative mode consuming blocks in inventory +- Item catalog gives different amounts depending on if shift clicking or not +- Fixed a bug where block with inverted normals had no bounding box +- Air blocks have their own block event separate from default +- The environment variable ITCHIO_API_KEY will now accept itch API keys as well as JWT keys + +Also, @Lee I officially owe you a game of SCP. Yes, this is an important part of the changelog, you know why. + ## Pre-Alpha 0.3.2-pre10 *I'm almost certain this is the last before the official release, just need to do some config setup + auth if nothing goes wrong* - Air blocks now have their own block event separate from default diff --git a/changelogs.json b/changelogs.json index 993e1e6..c8a290c 100644 --- a/changelogs.json +++ b/changelogs.json @@ -1,6 +1,28 @@ { "pre-alpha": { - "0.3.2.pre-10": [ + "0.3.2": [ + "Added Multiplayer", + "Added account authentication", + "Servers can whitelist, add operator status and ban players", + "Added ban, ban-ip, unban, unban-ip, kick, op, and de-op commands", + "Commands are now synchronized", + "Server settings can have a default gamemode for players", + "Server now only sends entity positions when they change", + "Added brick blocks", + "And now for the notable changes of the previous discord-only pre-releases leading up to this one:", + "Fixed credits using the wrong charset", + "Flying downwards in no-clip is now the same speed as going up", + "Fixed block loot drops not dropping on center", + "Fixed backspace in chat not deleting on the cursor", + "Fixed creative mode consuming blocks in inventory", + "Item catalog gives different amounts depending on if shift clicking or not", + "Fixed a bug where block with inverted normals had no bounding box", + "Air blocks have their own block event separate from default", + "The environment variable ITCHIO_API_KEY will now accept itch API keys as well as JWT keys", + "", + "Also, @Lee I officially owe you a game of SCP. Yes, this is an important part of the changelog, you know why." + ], + "0.3.2-pre-10": [ "*I'm almost certain this is the last before the official release, just need to do some config setup + auth if nothing goes wrong*", "Air blocks now have their own block event separate from default", "Fixed client being unable to load in singleplayer", diff --git a/versions.json b/versions.json index 0e14144..4551364 100644 --- a/versions.json +++ b/versions.json @@ -1,8 +1,23 @@ { "latest": { - "pre_alpha": "0.3.1" + "pre_alpha": "0.3.2" }, "versions": [ + { + "id": "0.3.2", + "type": "pre_alpha", + "releaseTime": 1730419200, + "client": { + "url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.2/client/Cosmic-Reach-0.3.2.jar", + "sha256": "b3615aabc64e6eda212334e9104081c9ead318b59e615fe6b09a9efd63273ff6", + "size": 28667507 + }, + "server": { + "url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.2/server/Cosmic-Reach-Server-0.3.2.jar", + "sha256": "0763ba94af4b2a21aad7455db78099d7ef6e466dc9b28090c27f51325bc11e34", + "size": 13126887 + } + }, { "id": "0.3.2-pre10", "type": "pre_alpha", diff --git a/versions/pre-alpha/0.3.2/client/Cosmic-Reach-0.3.2.jar b/versions/pre-alpha/0.3.2/client/Cosmic-Reach-0.3.2.jar new file mode 100644 index 0000000..4452801 Binary files /dev/null and b/versions/pre-alpha/0.3.2/client/Cosmic-Reach-0.3.2.jar differ diff --git a/versions/pre-alpha/0.3.2/server/Cosmic-Reach-Server-0.3.2.jar b/versions/pre-alpha/0.3.2/server/Cosmic-Reach-Server-0.3.2.jar new file mode 100644 index 0000000..90f2569 Binary files /dev/null and b/versions/pre-alpha/0.3.2/server/Cosmic-Reach-Server-0.3.2.jar differ