2022-11-27 14:47:59 +01:00
|
|
|
## Changelog
|
|
|
|
Not a "proper" versioned changelog, just a list of the changes from Minestom master.
|
|
|
|
Some of these are pending, some deserve PRs, others are just minor tweaks
|
|
|
|
|
2022-12-11 03:16:07 +01:00
|
|
|
* **breaking** Delete extensions (`mworzala/Minestom` @ `no_more_extensions`)
|
|
|
|
* **breaking** Block face in digging events (`mworzala/Minestom` @ `block_break_face`)
|
2022-11-27 14:47:59 +01:00
|
|
|
* Change `Entity#getInstance` to @UnknownNullability
|
2022-12-11 03:16:07 +01:00
|
|
|
* Support custom component translator for serverside translation
|
2023-03-18 17:00:33 +01:00
|
|
|
* **breaking** Remove tinylog and MinestomTerminal implementation
|
|
|
|
* Add `Tag.Transient`
|
|
|
|
* Optionally allow multiple parents in event nodes
|
2023-03-25 14:29:20 +01:00
|
|
|
* **breaking** Add sender to argument parsing chain
|
|
|
|
* This allows for argument parsing based on the sender, such as in argument map. This was already present for suggestions, but not for parsing.
|
|
|
|
* This is a breaking change because it changes the signature of `Argument#parse`, but most use cases should not be affected.
|
2023-06-15 04:00:27 +02:00
|
|
|
Support has been maintained for the old argument map signature, so only completely custom arguments will be affected.
|
|
|
|
* **breaking** [Placement rule api changes](https://github.com/hollow-cube/minestom-ce/pull/20)
|
2023-07-16 14:33:09 +02:00
|
|
|
* **breaking** Block update rework
|
|
|
|
* Block updates are optional, placements in instances can be done without triggering updates (will not call placement rule place or update events)
|
|
|
|
* Block updates are not always triggered by a block place (only if a neighbor update triggers one back)
|
|
|
|
* Block updates now only update adjacent blocks, not diagonals. This is inline with vanilla behvaior
|
|
|
|
* Block placement rules can dictate a max range where updates will be applied. Defaults to 10 to be more compatible with prior behavior.
|
|
|
|
* Block placement updates receive the block face that triggered the update
|
2023-06-18 13:54:50 +02:00
|
|
|
* Optionally use reworked chunk sending algorithm (`minestom.use-new-chunk-sending` system property)
|
2023-06-28 00:03:06 +02:00
|
|
|
* Add an API to check for swept entity collisions. Used in the new PlayerProjectile class
|