minecraft-data 3.5.0 → 3.5.1

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.
@@ -36,14 +36,9 @@ jobs:
36
36
  draft: false
37
37
  prerelease: false
38
38
 
39
- - name: Check if version has been updated
40
- if: github.event_name != 'workflow_dispatch'
41
- id: check
42
- uses: EndBug/version-check@v1
43
-
44
39
  - name: "Trigger new GH Page creation in mcData repo"
45
40
  uses: peter-evans/repository-dispatch@v1
46
- if: steps.check.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'
41
+ if: steps.publish.outputs.type != 'none' || github.event_name == 'workflow_dispatch'
47
42
  with:
48
43
  token: ${{ secrets.PAT_PASSWORD }}
49
44
  repository: PrismarineJS/minecraft-data
package/doc/history.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.5.1
2
+ * update mcdata
3
+
1
4
  ## 3.5.0
2
5
  * update mcdata
3
6
 
@@ -1,4 +1,25 @@
1
1
  [
2
+ {
3
+ "minecraftVersion": "1.19.1-pre2",
4
+ "version": 1073741919,
5
+ "dataVersion": 3110,
6
+ "usesNetty": true,
7
+ "majorVersion": "1.19"
8
+ },
9
+ {
10
+ "minecraftVersion": "1.19.1-rc1",
11
+ "version": 1073741918,
12
+ "dataVersion": 3109,
13
+ "usesNetty": true,
14
+ "majorVersion": "1.19"
15
+ },
16
+ {
17
+ "minecraftVersion": "1.19.1-pre1",
18
+ "version": 1073741917,
19
+ "dataVersion": 3107,
20
+ "usesNetty": true,
21
+ "majorVersion": "1.19"
22
+ },
2
23
  {
3
24
  "minecraftVersion": "22w24a",
4
25
  "version": 1073741916,
@@ -1,3 +1,6 @@
1
+ ## 3.5.1
2
+ * Fix Github pages docs
3
+
1
4
  ## 3.5.0
2
5
  * Add 1.19 Data (all but protocol) @u9g
3
6
  * Add blockloot for 1.18 and 1.19 @Eejit43
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",