minecraft-datapack-language 17.0.7__py3-none-any.whl → 17.0.9__py3-none-any.whl
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.
- minecraft_datapack_language/_version.py +2 -2
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/METADATA +21 -16
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/RECORD +7 -7
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/WHEEL +0 -0
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/entry_points.txt +0 -0
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/licenses/LICENSE +0 -0
- {minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '17.0.
|
32
|
-
__version_tuple__ = version_tuple = (17, 0,
|
31
|
+
__version__ = version = '17.0.9'
|
32
|
+
__version_tuple__ = version_tuple = (17, 0, 9)
|
33
33
|
|
34
34
|
__commit_id__ = commit_id = None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: minecraft-datapack-language
|
3
|
-
Version: 17.0.
|
3
|
+
Version: 17.0.9
|
4
4
|
Summary: Compile MDL language with explicit scoping into a Minecraft datapack (1.21+ ready). Features variables, control flow, error handling, and VS Code extension.
|
5
5
|
Project-URL: Homepage, https://www.mcmdl.com
|
6
6
|
Project-URL: Documentation, https://www.mcmdl.com/docs
|
@@ -50,7 +50,7 @@ A **modern, scope-aware language** that lets you write Minecraft datapacks with
|
|
50
50
|
- **📚 Extensive documentation** with examples for every feature
|
51
51
|
|
52
52
|
### 🏗️ Core Features
|
53
|
-
- ✅ **
|
53
|
+
- ✅ **Default pack_format 82** for latest Minecraft features
|
54
54
|
- ✅ **Explicit scoping** - every variable operation specifies its scope
|
55
55
|
- ✅ **Real control structures** - `if/else`, `while` loops
|
56
56
|
- ✅ **Number variables** stored in scoreboards with `$variable<scope>$` substitution
|
@@ -63,7 +63,7 @@ A **modern, scope-aware language** that lets you write Minecraft datapacks with
|
|
63
63
|
- ✅ **Raw blocks** for direct Minecraft command injection
|
64
64
|
- ✅ **Say commands** that auto-convert to `tellraw` with JSON formatting
|
65
65
|
|
66
|
-
> **Note**: Version 1.0+ uses **pack_format
|
66
|
+
> **Note**: Version 1.0+ uses **pack_format 82** by default for the modern MDL syntax.
|
67
67
|
|
68
68
|
---
|
69
69
|
|
@@ -106,16 +106,20 @@ python -m pip install -e .
|
|
106
106
|
|
107
107
|
### Modern MDL (v1.0+)
|
108
108
|
```bash
|
109
|
-
# Build
|
110
|
-
mdl build
|
111
|
-
mdl check my_pack/mypack.mdl
|
109
|
+
# Build (defaults: --mdl . and -o dist)
|
110
|
+
mdl build
|
112
111
|
|
113
|
-
#
|
114
|
-
mdl check
|
112
|
+
# Check (scans current directory)
|
113
|
+
mdl check
|
115
114
|
|
116
|
-
#
|
117
|
-
mdl build --mdl my_pack/
|
118
|
-
|
115
|
+
# Build single file (output still defaults to dist)
|
116
|
+
mdl build --mdl my_pack/mypack.mdl
|
117
|
+
|
118
|
+
# Custom output directory
|
119
|
+
mdl build -o out
|
120
|
+
|
121
|
+
# Optional wrapper directory for output
|
122
|
+
mdl build --wrapper mypack
|
119
123
|
|
120
124
|
# Create new projects
|
121
125
|
mdl new my_awesome_pack
|
@@ -128,10 +132,10 @@ mdl new my_first_pack
|
|
128
132
|
|
129
133
|
# Build it
|
130
134
|
cd my_first_pack
|
131
|
-
mdl build
|
135
|
+
mdl build
|
132
136
|
|
133
137
|
# Check for errors
|
134
|
-
mdl check
|
138
|
+
mdl check
|
135
139
|
```
|
136
140
|
|
137
141
|
---
|
@@ -229,9 +233,10 @@ npm run compile
|
|
229
233
|
|
230
234
|
## 📚 Documentation
|
231
235
|
|
232
|
-
- **[Language Reference](docs/
|
233
|
-
- **[
|
234
|
-
- **[
|
236
|
+
- **[Language Reference](https://www.mcmdl.com/docs/language-reference/)** - Complete language specification
|
237
|
+
- **[CLI Reference](https://www.mcmdl.com/docs/cli-reference/)** - Command usage and options
|
238
|
+
- **[VS Code Extension](https://www.mcmdl.com/docs/vscode-extension/)** - Extension documentation
|
239
|
+
- **[Examples](https://www.mcmdl.com/docs/examples/)** - Sample projects and code snippets
|
235
240
|
|
236
241
|
---
|
237
242
|
|
{minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
minecraft_datapack_language/__init__.py,sha256=0KVXBE4ScRaRUrf83aA2tVB-y8A_jplyaxVvtHH6Uw0,1199
|
2
|
-
minecraft_datapack_language/_version.py,sha256=
|
2
|
+
minecraft_datapack_language/_version.py,sha256=cpmB6hKtXXj3SpT6_1HZu4BjvgdU5d8jYnVRqY-GvNc,706
|
3
3
|
minecraft_datapack_language/ast_nodes.py,sha256=L5izavSeXDr766vsfRvJrcnflXNJyXcy0WSfyJPq2ZA,4484
|
4
4
|
minecraft_datapack_language/cli.py,sha256=oNpiMBIaTXvo-67CN-Jty8Fq4yn8WbyuQxhJi1TxtWU,10375
|
5
5
|
minecraft_datapack_language/dir_map.py,sha256=HmxFkuvWGkzHF8o_GFb4BpuMCRc6QMw8UbmcAI8JVdY,1788
|
@@ -10,9 +10,9 @@ minecraft_datapack_language/mdl_linter.py,sha256=z85xoAglENurCh30bR7kEHZ_JeMxcYa
|
|
10
10
|
minecraft_datapack_language/mdl_parser.py,sha256=1ecbkzvkgwcjfF8tn6Hxg4jBIjyFlk4bCzJ46p0-JR0,27477
|
11
11
|
minecraft_datapack_language/python_api.py,sha256=Iao1jbdeW6ekeA80BZG6gNqHVjxQJEheB3DbpVsuTZQ,12304
|
12
12
|
minecraft_datapack_language/utils.py,sha256=Aq0HAGlXqj9BUTEjaEilpvzEW0EtZYYMMwOqG9db6dE,684
|
13
|
-
minecraft_datapack_language-17.0.
|
14
|
-
minecraft_datapack_language-17.0.
|
15
|
-
minecraft_datapack_language-17.0.
|
16
|
-
minecraft_datapack_language-17.0.
|
17
|
-
minecraft_datapack_language-17.0.
|
18
|
-
minecraft_datapack_language-17.0.
|
13
|
+
minecraft_datapack_language-17.0.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
14
|
+
minecraft_datapack_language-17.0.9.dist-info/METADATA,sha256=Yi1BXD-cB2FjTuMvXYeJTjG3XLSRhG2ML2GJREPb5-o,8417
|
15
|
+
minecraft_datapack_language-17.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
16
|
+
minecraft_datapack_language-17.0.9.dist-info/entry_points.txt,sha256=c6vjBeCiyQflvPHBRyBk2nJCSfYt3Oc7Sc9V87ySi_U,108
|
17
|
+
minecraft_datapack_language-17.0.9.dist-info/top_level.txt,sha256=ADtFI476tbKLLxEAA-aJQAfg53MA3k_DOb0KTFiggfw,28
|
18
|
+
minecraft_datapack_language-17.0.9.dist-info/RECORD,,
|
{minecraft_datapack_language-17.0.7.dist-info → minecraft_datapack_language-17.0.9.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|