minecraft-data 3.87.0 → 3.89.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/doc/history.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # History
2
2
 
3
+ ## 3.89.0
4
+
5
+ * update `minecraft-data`
6
+
7
+ ## 3.88.0
8
+
9
+ * update `minecraft-data`
10
+
3
11
  ## 3.87.0
4
12
 
5
13
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -1369,6 +1369,21 @@ declare namespace MinecraftData {
1369
1369
  /** `1.21.3 - latest`
1370
1370
  * Server does not send ack on creative_set_slot packets */
1371
1371
  "noAckOnCreateSetSlotPacket": boolean;
1372
+ /** `1.8 - 1.17`
1373
+ * title system uses legacy title packets */
1374
+ "titleUsesLegacyPackets": boolean;
1375
+ /** `1.17.1 - latest`
1376
+ * title system uses new set_title_text and set_title_subtitle packets */
1377
+ "titleUsesNewPackets": boolean;
1378
+ /** `1.9 - latest`
1379
+ * the /playsound command uses resource location syntax */
1380
+ "playsoundUsesResourceLocation": boolean;
1381
+ /** `1.13 - latest`
1382
+ * the note block is named 'note_block' */
1383
+ "noteBlockNameIsNoteBlock": boolean;
1384
+ /** `1.8 - 1.8.9`
1385
+ * uses the old sound packet format */
1386
+ "usesOldSoundPacket": boolean;
1372
1387
  }
1373
1388
 
1374
1389
  type Object = { [key: string]: any }
@@ -855,5 +855,30 @@
855
855
  "name": "noAckOnCreateSetSlotPacket",
856
856
  "description": "Server does not send ack on creative_set_slot packets",
857
857
  "versions": ["1.21.3", "latest"]
858
+ },
859
+ {
860
+ "name": "titleUsesLegacyPackets",
861
+ "description": "title system uses legacy title packets",
862
+ "versions": ["1.8", "1.17"]
863
+ },
864
+ {
865
+ "name": "titleUsesNewPackets",
866
+ "description": "title system uses new set_title_text and set_title_subtitle packets",
867
+ "versions": ["1.17.1", "latest"]
868
+ },
869
+ {
870
+ "name": "playsoundUsesResourceLocation",
871
+ "description": "the /playsound command uses resource location syntax",
872
+ "versions": ["1.9", "latest"]
873
+ },
874
+ {
875
+ "name": "noteBlockNameIsNoteBlock",
876
+ "description": "the note block is named 'note_block'",
877
+ "versions": ["1.13", "latest"]
878
+ },
879
+ {
880
+ "name": "usesOldSoundPacket",
881
+ "description": "uses the old sound packet format",
882
+ "versions": ["1.8", "1.8.9"]
858
883
  }
859
884
  ]
@@ -1,3 +1,9 @@
1
+ ## 3.89.0
2
+ * [Add some sound features](https://github.com/PrismarineJS/minecraft-data/commit/431245e650d88863f867b156a6b418b56797658b) (thanks @rom1504)
3
+
4
+ ## 3.88.0
5
+ * [Add title features.](https://github.com/PrismarineJS/minecraft-data/commit/33ac15edaa7da6c4252b52fc8f3c05803437dd64) (thanks @rom1504)
6
+
1
7
  ## 3.87.0
2
8
  * [Fix bug in packet experience.](https://github.com/PrismarineJS/minecraft-data/commit/a32f3880296467fbed19e5205b1d1d23331fffa8) (thanks @rom1504)
3
9
  * [Add 25w20a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/9ba5dfb80f37415e2ac79c3dc15c5581d5738bfa) (thanks @github-actions[bot])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.87.0",
3
+ "version": "3.89.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",