minecraft-data 3.93.0 → 3.95.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/data.js +38 -16
- package/doc/history.md +8 -0
- package/index.d.ts +5 -2
- package/minecraft-data/README.md +2 -2
- package/minecraft-data/data/bedrock/1.21.100/protocol.json +14329 -0
- package/minecraft-data/data/bedrock/1.21.100/version.json +6 -0
- package/minecraft-data/data/bedrock/1.21.80/blocksB2J.json +9913 -0
- package/minecraft-data/data/bedrock/1.21.80/blocksJ2B.json +27916 -0
- package/minecraft-data/data/bedrock/1.21.90/blockCollisionShapes.json +1588 -0
- package/minecraft-data/data/bedrock/1.21.90/blocks.json +22765 -0
- package/minecraft-data/data/bedrock/1.21.90/items.json +11957 -0
- package/minecraft-data/data/bedrock/1.21.93/proto.yml +4600 -0
- package/minecraft-data/data/bedrock/1.21.93/types.yml +2806 -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 +11 -38
- package/minecraft-data/data/bedrock/latest/types.yml +36 -1
- package/minecraft-data/data/dataPaths.json +38 -16
- package/minecraft-data/data/pc/1.21.4/proto.yml +3242 -0
- package/minecraft-data/data/pc/1.21.4/protocol.json +2 -8
- package/minecraft-data/data/pc/1.21.5/entities.json +2816 -176
- package/minecraft-data/data/pc/1.21.5/protocol.json +9850 -0
- package/minecraft-data/data/pc/common/features.json +11 -6
- package/minecraft-data/data/pc/common/protocolVersions.json +32 -0
- package/minecraft-data/data/pc/latest/proto.yml +306 -169
- package/minecraft-data/doc/history.md +13 -0
- package/package.json +2 -2
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 3.95.0
|
|
2
|
+
* [Add bedrock 1.21.100 protocol data (#1041)](https://github.com/PrismarineJS/minecraft-data/commit/ae4cf26bd9a73478b6129ea404bef40db5e9f03e) (thanks @extremeheat)
|
|
3
|
+
* [Fix pc "nbtNameForEnchant" feature versions (#986)](https://github.com/PrismarineJS/minecraft-data/commit/79ad67106787847f05faa68aaca3f3faea5cf9a1) (thanks @IKorzI)
|
|
4
|
+
* [Mention minebase wrapper lib in readme (#1040)](https://github.com/PrismarineJS/minecraft-data/commit/24a38bc7746a5c280dad0c18567bd03c4afcec9f) (thanks @ItsDrike)
|
|
5
|
+
* [Add 25w32a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/820cdf0c515422b30805fc91ff292861d5152aae) (thanks @github-actions[bot])
|
|
6
|
+
|
|
7
|
+
## 3.94.0
|
|
8
|
+
* [Add pc 1.21.5 protocol data (#1029)](https://github.com/PrismarineJS/minecraft-data/commit/6d6e431dd22cd9d0fb9e8c5b7029f6f1311f7501) (thanks @extremeheat)
|
|
9
|
+
* [Add 25w31a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/60bc124b73d6daa12e80179e963aa93a80a40d45) (thanks @github-actions[bot])
|
|
10
|
+
* [Add bedrock 1.21.90 data (#1027)](https://github.com/PrismarineJS/minecraft-data/commit/e72f74ee618659bbbb15bfa97ae1c5fb194b4ad6) (thanks @bedrock-bot)
|
|
11
|
+
* [Add 1.21.8 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/05369ec2ec1f1f927359e9c4e90c8346111ac1a8) (thanks @github-actions[bot])
|
|
12
|
+
* [Add 1.21.8-rc1 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/a333d737118f65f6161ebdd353b36481d168b5fd) (thanks @github-actions[bot])
|
|
13
|
+
|
|
1
14
|
## 3.93.0
|
|
2
15
|
* [Add bedrock v1.21.93 to versions (#1032)](https://github.com/PrismarineJS/minecraft-data/commit/015c1c53fd4595c2226f729cb019d53514c91c32) (thanks @CreeperG16)
|
|
3
16
|
* [manually update some of 1.21.4 materials.json (#1033)](https://github.com/PrismarineJS/minecraft-data/commit/8dcb6a1b09777ef34a8db8dde879d2a65de4e65c) (thanks @Gjum)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minecraft-data",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.95.0",
|
|
4
4
|
"description": "Provide easy access to minecraft data in node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"tonicExampleFilename": "example.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"minecraft-packets": "^1.4.0",
|
|
40
40
|
"mocha": "^11.0.1",
|
|
41
41
|
"standard": "^17.0.0",
|
|
42
|
-
"typescript": "~5.
|
|
42
|
+
"typescript": "~5.9.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {}
|
|
45
45
|
}
|