minecraft-data 3.106.0 → 3.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +1 -1
- package/.github/workflows/npm-publish.yml +2 -2
- package/data.js +23 -1
- package/doc/history.md +8 -0
- package/minecraft-data/.github/workflows/bedrock-ci.yml +1 -1
- package/minecraft-data/.github/workflows/ci.yml +1 -1
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.26.0/proto.yml +4673 -0
- package/minecraft-data/data/bedrock/1.26.0/types.yml +3070 -0
- package/minecraft-data/data/bedrock/26.10/protocol.json +16251 -0
- package/minecraft-data/data/bedrock/26.10/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +81 -45
- package/minecraft-data/data/bedrock/latest/types.yml +204 -12
- package/minecraft-data/data/dataPaths.json +23 -1
- package/minecraft-data/doc/history.md +6 -0
- package/package.json +1 -1
package/.github/workflows/ci.yml
CHANGED
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
- id: publish
|
|
26
26
|
uses: JS-DevTools/npm-publish@v4
|
|
27
27
|
- name: Create Release
|
|
28
|
-
if: steps.publish.outputs.type
|
|
28
|
+
if: ${{ steps.publish.outputs.type }}
|
|
29
29
|
id: create_release
|
|
30
30
|
uses: actions/create-release@v1
|
|
31
31
|
env:
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
|
|
40
40
|
- name: "Trigger new GH Page creation in mcData repo"
|
|
41
41
|
uses: peter-evans/repository-dispatch@v1
|
|
42
|
-
if: steps.publish.outputs.type
|
|
42
|
+
if: ${{ steps.publish.outputs.type }} || github.event_name == 'workflow_dispatch'
|
|
43
43
|
with:
|
|
44
44
|
token: ${{ secrets.PAT_PASSWORD }}
|
|
45
45
|
repository: PrismarineJS/minecraft-data
|
package/data.js
CHANGED
|
@@ -2781,10 +2781,32 @@ module.exports =
|
|
|
2781
2781
|
get steve () { return require("./minecraft-data/data/bedrock/1.21.70/steve.json") },
|
|
2782
2782
|
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.111/blocksB2J.json") },
|
|
2783
2783
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.111/blocksJ2B.json") },
|
|
2784
|
-
proto: __dirname + '/minecraft-data/data/bedrock/
|
|
2784
|
+
proto: __dirname + '/minecraft-data/data/bedrock/1.26.0/proto.yml',
|
|
2785
2785
|
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
2786
2786
|
get version () { return require("./minecraft-data/data/bedrock/1.26.0/version.json") },
|
|
2787
2787
|
get language () { return require("./minecraft-data/data/bedrock/1.21.70/language.json") }
|
|
2788
|
+
},
|
|
2789
|
+
'26.10': {
|
|
2790
|
+
get blocks () { return require("./minecraft-data/data/bedrock/1.21.111/blocks.json") },
|
|
2791
|
+
get blockStates () { return require("./minecraft-data/data/bedrock/1.21.111/blockStates.json") },
|
|
2792
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.21.111/blockCollisionShapes.json") },
|
|
2793
|
+
get biomes () { return require("./minecraft-data/data/bedrock/1.21.60/biomes.json") },
|
|
2794
|
+
get entities () { return require("./minecraft-data/data/bedrock/1.21.80/entities.json") },
|
|
2795
|
+
get items () { return require("./minecraft-data/data/bedrock/1.21.111/items.json") },
|
|
2796
|
+
get recipes () { return require("./minecraft-data/data/bedrock/1.19.10/recipes.json") },
|
|
2797
|
+
get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
|
|
2798
|
+
get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
|
|
2799
|
+
get enchantments () { return require("./minecraft-data/data/bedrock/1.19.1/enchantments.json") },
|
|
2800
|
+
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
2801
|
+
get protocol () { return require("./minecraft-data/data/bedrock/26.10/protocol.json") },
|
|
2802
|
+
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
2803
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.21.70/steve.json") },
|
|
2804
|
+
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.111/blocksB2J.json") },
|
|
2805
|
+
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.111/blocksJ2B.json") },
|
|
2806
|
+
proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
|
|
2807
|
+
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
2808
|
+
get version () { return require("./minecraft-data/data/bedrock/26.10/version.json") },
|
|
2809
|
+
get language () { return require("./minecraft-data/data/bedrock/1.21.70/language.json") }
|
|
2788
2810
|
}
|
|
2789
2811
|
}
|
|
2790
2812
|
}
|
package/doc/history.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# History
|
|
2
2
|
|
|
3
|
+
## 3.108.0
|
|
4
|
+
|
|
5
|
+
* update `minecraft-data`
|
|
6
|
+
|
|
7
|
+
## 3.107.0
|
|
8
|
+
* [Update CI to Node 24 (#445)](https://github.com/PrismarineJS/node-minecraft-data/commit/cd37593e8ede05f266ef3e3d519f344b16f20ef7) (thanks @rom1504)
|
|
9
|
+
* [Fix publish condition for npm-publish v4 (#444)](https://github.com/PrismarineJS/node-minecraft-data/commit/f63f8f9760f5717bfb530b2e87d6f670b97f7b4d) (thanks @rom1504)
|
|
10
|
+
|
|
3
11
|
## 3.106.0
|
|
4
12
|
* [Use Node 24 for trusted publishing support (#442)](https://github.com/PrismarineJS/node-minecraft-data/commit/f451f6a634f0f7e93344cfe23608fcfacf6d4c8a) (thanks @rom1504)
|
|
5
13
|
* [Upgrade npm for trusted publishing support (#440)](https://github.com/PrismarineJS/node-minecraft-data/commit/d6271bfcd4d1834795ee1f7ab928265839780f53) (thanks @rom1504)
|
package/minecraft-data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Supports
|
|
|
11
11
|
* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
|
|
12
12
|
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4), 1.20 (1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6), 1.21 (1.21, 1.21.1, 1.21.3), 1.21.8, 1.21.9, 1.21.10
|
|
13
13
|
<!--NEXT PC-->
|
|
14
|
-
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40, 1.20.50, 1.20.61, 1.20.71, 1.20.80, 1.21.0, 1.21.2, 1.21.20, 1.21.30, 1.21.42, 1.21.50, 1.21.60, 1.21.70, 1.21.80, 1.21.90, 1.21.93, 1.21.100, 1.21.111, 1.21.120, 1.21.124, 1.21.130, 1.26.0
|
|
14
|
+
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40, 1.20.50, 1.20.61, 1.20.71, 1.20.80, 1.21.0, 1.21.2, 1.21.20, 1.21.30, 1.21.42, 1.21.50, 1.21.60, 1.21.70, 1.21.80, 1.21.90, 1.21.93, 1.21.100, 1.21.111, 1.21.120, 1.21.124, 1.21.130, 1.26.0, 26.10
|
|
15
15
|
<!--NEXT BEDROCK-->
|
|
16
16
|
|
|
17
17
|
## Wrappers
|