You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/intro.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Here's the list of changes to the documentation between each update. You can vie
49
49
- Adds [Velocity](./velocity_intro) page to outline how to set up the CommandAPI for Velocity
50
50
- Updates [CommandArguments](./create-commands/arguments/command-arguments) to document new additions for safe arguments
51
51
- Updates [Potion effect arguments](./argument_potion) to include examples for the newly added `NamespacedKey` variant for the `PotionEffectArgument`
52
-
- Updates [Arguments](./create-commands/arguments/command-arguments) to list the newly added `PotionEffectArgument.NamespacedKey` argument
52
+
- Updates [Arguments](./create-commands/arguments/arguments) to list the newly added `PotionEffectArgument.NamespacedKey` argument
53
53
- Updates [Particles](./argument_particles) page to include both [old particle information](./argument_particle_old) and [new particle information](./argument_particle_new)
54
54
55
55
### 9.2.0 → 9.3.0
@@ -80,7 +80,7 @@ Here's the list of changes to the documentation between each update. You can vie
80
80
81
81
### 9.0.0 → 9.0.1
82
82
83
-
- Updates [Optional arguments](./optional_arguments) page to update the method list for avoiding `null` values
83
+
- Updates [Optional arguments](./create-commands/arguments/optional-arguments) page to update the method list for avoiding `null` values
84
84
- Updates [Normal command executors](./create-commands/executors/normal-executors) page to now mention the existence of the `ExecutionInfo`
85
85
86
86
### 8.8.0 → 9.0.0
@@ -89,7 +89,7 @@ Here's the list of changes to the documentation between each update. You can vie
89
89
9.0.0 is a giant update that is incompatible with 8.8.x and prior versions. A lot of the documentation's code examples and explanations have been changed for the various changes made in this version. Please read the [Upgrading guide](./upgrading) for information on how to upgrade to 9.0.0.
90
90
:::
91
91
92
-
- Adds the new [Optional arguments](./optional_arguments) section
92
+
- Adds the new [Optional arguments](./create-commands/arguments/optional-arguments) section
93
93
- Adds Kotlin DSL code examples to all code examples
94
94
95
95
### 8.7.0 → 8.8.0
@@ -240,7 +240,7 @@ The Maven/Gradle repository URL has changed! See [5. Setting up your development
240
240
241
241
- Adds a section [6. Using the annotation system](./setup_annotations) on setting up your development environment to use the annotation system
242
242
- Adds a whole massive section on using annotations ([16. Annotation-based commands](./annotationsintro), [17. Annotations](./annotations), [18. Registering annotation-based commands](./registeringannotations))
243
-
- Adds a section on argument suggestion deferral in section [9.1. Argument suggestions](./argumentsuggestions#argument-suggestion-deferral)
243
+
- Adds a section on argument suggestion deferral in section [9.1. Argument suggestions](./create-commands/arguments/suggestions/suggestions)
244
244
- Improve warning for `LiteralArgument` - instead of it being "obsolete" compared to the `MultiLiteralArgument`, it is now "more complex" than `MultiLiteralArgument`s
245
245
- Fix issue in the section for custom arguments which should have been updated but wasn't
246
246
@@ -271,7 +271,7 @@ Every page has been rewritten in this update and checked for errors. In general,
271
271
- Mentions listed arguments in section [9.11.1. Literal arguments](./argument_literal)
272
272
- Section [15. Command conversion](./conversion) has been rewritten
273
273
- Executes native is now present in the command registration page
274
-
- Section [8.3. Argument suggestions with tooltips](./tooltips) now mentions the `IStringTooltip` class
274
+
- Section [8.3. Argument suggestions with tooltips](./create-commands/arguments/suggestions/tooltips) now mentions the `IStringTooltip` class
275
275
276
276
### 4.2 → 4.3
277
277
@@ -288,7 +288,7 @@ Every page has been rewritten in this update and checked for errors. In general,
288
288
289
289
### 4.0 → 4.1
290
290
291
-
- Adds a new section [7.3. Argument suggestions with tooltips](./tooltips)
291
+
- Adds a new section [7.3. Argument suggestions with tooltips](./create-commands/arguments/suggestions/tooltips)
292
292
- Adds documentation for the `MultiLiteralArgument` in section [8.11.2. Multi literal arguments](./argument_multiliteral)
293
293
- Adds a new section [4. Shading the CommandAPI into your plugins](./dev-setup/shading)
294
294
- Update documentation for [14. Brigadier + CommandAPI](./brigadier) with new (overloaded) function `argBuildOf`
@@ -301,8 +301,8 @@ Every page has been rewritten in this update and checked for errors. In general,
301
301
- Updated [3. Setting up your development environment](./dev-setup/setup) to include new Maven repository links
302
302
- Fixed stronkage with Java versions - there's now no random warning boxes about incompatibility with Java 12!
303
303
- Arguments now include pictures that showcase how they work!
304
-
- Reorganised the sections - arguments is now split up into two sections: [6. Arguments (in general)](./create-commands/arguments/command-arguments) and [7. Argument types](./argumenttypes)
305
-
- Adds documentation for [6.2. Safe argument suggestions](./safeargumentsuggestions)
304
+
- Reorganised the sections - arguments is now split up into two sections: [6. Arguments (in general)](./create-commands/arguments/arguments) and [7. Argument types](./argumenttypes)
305
+
- Adds documentation for [6.2. Safe argument suggestions](./create-commands/arguments/suggestions/safe-suggestions)
306
306
- Adds documentation for [7.8.3. BlockState arguments](./argument_blockstate)
@@ -329,12 +329,12 @@ Every page has been rewritten in this update and checked for errors. In general,
329
329
330
330
### 3.0 → 3.1
331
331
332
-
- Adds new section [5.1 Argument suggestions](./argumentsuggestions) to cover how to override suggestions - Having it all in section _5. Arguments_ was a bit too content-heavy
333
-
- Adds documentation for the new `.overrideSuggestions()` method in section [5.1 Argument suggestions](./argumentsuggestions#suggestions-depending-on-previous-arguments)
332
+
- Adds new section [5.1 Argument suggestions](./create-commands/arguments/suggestions/suggestions) to cover how to override suggestions - Having it all in section _5. Arguments_ was a bit too content-heavy
333
+
- Adds documentation for the new `.overrideSuggestions()` method in section [5.1 Argument suggestions](./create-commands/arguments/suggestions/suggestions)
334
334
- Simplified the description of the documentation updates
335
335
- Changed the artifact ID for the dependency of the CommandAPI. Instead of being `commandapi`, it is now `commandapi-core`. You can view the changes in section [2 Setting up your development environment](./dev-setup/setup)
336
336
- Changed the repository information for gradle in section [2 Setting up your development environment](./dev-setup/setup). You now have to include the NBTAPI repository because gradle can't automatically detect this for some reason. Kinda stupid tbh.
337
-
- Adds a section on using multiple or optional arguments in section [5 Arguments](./create-commands/arguments/command-arguments)
337
+
- Adds a section on using multiple or optional arguments in section [5 Arguments](./create-commands/arguments/arguments)
338
338
339
339
### 2.1 → 3.0
340
340
@@ -347,7 +347,7 @@ Lots of changes occurred in version 3.0. I highly recommend reading the [Upgradi
347
347
- Dependency section ([2. Setting up your development environment](./dev-setup/setup)) updated to use the new dependency Group ID
348
348
- Command registration section ([3. Command registration](./create-commands/registration)) updated to reflect new API changes
349
349
- Command execution section ([4. Command Executors](./create-commands/executors/command-executors)) updated to reflect new API changes
350
-
- Arguments section ([5. Arguments](./create-commands/arguments/command-arguments)) completely rewritten to reflect new API changes. Adds more detailed examples for each argument
350
+
- Arguments section ([5. Arguments](./create-commands/arguments/arguments)) completely rewritten to reflect new API changes. Adds more detailed examples for each argument
351
351
- Function arguments section ([6.3 Function Arguments](./argument_function)) updated to reflect new API changes
352
352
- Permissions section ([7. Permissions](./permissions)) updated to reflect new API changes
353
353
- Aliases section ([8. Aliases](./aliases)) updated to reflect new API changes
0 commit comments