Skip to content

Commit

Permalink
Merge pull request #20 from Crab-K1ng/main
Browse files Browse the repository at this point in the history
Added 0.3.20
  • Loading branch information
StartsMercury authored Jan 27, 2025
2 parents 8481778 + 3939099 commit 7428d10
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 2 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ An Archive Of Every Cosmic Reach Version

# Changelogs

## Pre-Alpha 0.3.20
- Added doors
- Interceptors now have emissive textures
- Interceptors now change textures via animations rather than code directly
- Friendly interceptor traps now have a consistent colour with the flying interceptors
- Gold ore texture is now consistent with the bar and block textures
- Fixed jump running being dependent on FPS
- Disabled shared indices on non-Nvidia GPUs
- Improved batch renderer reliability
- Blocks no longer drop in creative

Notes for data modding:
- Added new block event: base:copy_block_state_params- this copies parameters from one block to another
- Added new block event: base:cycle_block_state_params- this cycles between parameter values
- Added if condition to block events. A block event will only trigger if the condition is true.
- Added condition root: srcPlayer: information about the player who caused the trigger, if any
- Has gamemode: information about the gamemode of a player
- Has allows_items_drop_on_break: Whether the gamemode is allowed to drop items when a block is broken
- Added condition root: srcBlockState: information about the block causing the trigger
- Has has_tag: Whether a blockstate contains a tag or not
- Added condition root: block_at: information about a block at a given position
- Treated the same as the blockstate condition, but has xOff, yOff, and zOff parameters
- The canPlace predicate is subject to change to be more in line with the if conditions, so be aware!


## Pre-Alpha 0.3.19b
- Player moves fast on ice while jumping again
- UI changes colour with world lighting when inventory is closed
Expand Down
22 changes: 22 additions & 0 deletions changelogs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
{
"pre-alpha": {
"0.3.20":[
"Added doors",
"Interceptors now have emissive textures",
"Interceptors now change textures via animations rather than code directly",
"Friendly interceptor traps now have a consistent colour with the flying interceptors",
"Gold ore texture is now consistent with the bar and block textures",
"Fixed jump running being dependent on FPS",
"Disabled shared indices on non-Nvidia GPUs",
"Improved batch renderer reliability",
"Improved batch renderer reliability",
"Added new block event: base:copy_block_state_params- this copies parameters from one block to another",
"Added new block event: base:cycle_block_state_params- this cycles between parameter values",
"Added if condition to block events. A block event will only trigger if the condition is true",
"Added condition root: srcPlayer: information about the player who caused the trigger, if any",
"Has gamemode: information about the gamemode of a player",
"Has allows_items_drop_on_break: Whether the gamemode is allowed to drop items when a block is broken",
"Added condition root: srcBlockState: information about the block causing the trigger",
"Has has_tag: Whether a blockstate contains a tag or not",
"Added condition root: block_at: information about a block at a given position",
"Treated the same as the blockstate condition, but has xOff, yOff, and zOff parameters",
"The canPlace predicate is subject to change to be more in line with the if conditions, so be aware!"
],
"0.3.19b": [
"Player moves fast on ice while jumping again",
"UI changes colour with world lighting when inventory is closed",
Expand Down
17 changes: 16 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
{
"latest": {
"pre_alpha": "0.3.19"
"pre_alpha": "0.3.20"
},
"versions": [
{
"id": "0.3.20",
"type": "pre_alpha",
"releaseTime": 1737849600,
"client": {
"url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.20/client/Cosmic-Reach-0.3.20.jar",
"sha256": "a765b29e8ee687dd6e150631f8ec7a48d88e0850bad38d70d633a141d28bb977",
"size": 54189687
},
"server": {
"url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.20/server/Cosmic-Reach-Server-0.3.20.jar",
"sha256": "7045a419fb1c04f45608779d6c17db39d769cfeb7fb85c804bfcc4dd3f9d267b",
"size": 13824584
}
},
{
"id": "0.3.19b",
"type": "pre_alpha",
Expand Down
Binary file not shown.
Binary file not shown.
18 changes: 17 additions & 1 deletion versions_v2.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
{
"latest": {
"pre_alpha": "0.3.19"
"pre_alpha": "0.3.20"
},
"versions": [
{
"id": "0.3.20",
"type": "release",
"phase": "pre_alpha",
"releaseTime": 1737849600,
"client": {
"url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.20/client/Cosmic-Reach-0.3.20.jar",
"sha256": "a765b29e8ee687dd6e150631f8ec7a48d88e0850bad38d70d633a141d28bb977",
"size": 54189687
},
"server": {
"url": "https://raw.githubusercontent.com/CRModders/CosmicArchive/main/versions/pre-alpha/0.3.20/server/Cosmic-Reach-Server-0.3.20.jar",
"sha256": "7045a419fb1c04f45608779d6c17db39d769cfeb7fb85c804bfcc4dd3f9d267b",
"size": 13824584
}
},
{
"id": "0.3.19b",
"type": "snapshot",
Expand Down

0 comments on commit 7428d10

Please sign in to comment.