mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2024-11-21 17:45:20 +00:00
2.1 KiB
2.1 KiB
For Minecraft: Bedrock Edition 1.19.20
Note about API versions
Plugins which don't touch the protocol and compatible with any previous 4.x.y version will also run on these releases and do not need API bumps. Plugin developers should only update their required API to this version if you need the changes in this build.
WARNING: If your plugin uses the protocol, you're not shielded by API change constraints. You should consider using the mcpe-protocol
directive in plugin.yml
as a constraint if you do.
4.7.0
Released 9th August 2022.
General
- Added support for Minecraft: Bedrock Edition 1.19.20.
- Removed support for older versions.
4.7.1
Released 14th August 2022.
Fixes
- Fixed server crash when loading items from disk which have negative meta values.
- Fixed Turtle Master potions not giving any effects.
- Unimplemented items are no longer craftable.
- Fixed incorrect items appearing in item frames (due to an obsolete workaround for 1.19.10).
4.7.2
Released 16th August 2022.
Fixes
- Fixed crash when processing player skins with invalid geometry data.
- Fixed spectator players being able to pick blocks using mousewheel click.
- Improved supporting requirements for sugarcane.
4.7.3
Released 22nd August 2022.
General
- Added complete translations for Spanish and Vietnamese.
- All continuous integration (static analysis, unit tests, integration tests) are now performed on PHP 8.1 as well as 8.0.
- InventoryTransaction now verifies that stack sizes of items after the transaction don't exceed the maximum stack size of the item type or the containing inventory.
Fixes
- Fixed Normal generator crash on PHP 8.1.
- Fixed a race condition during async worker shutdown that could lead to tasks executing in the wrong order. This (very rarely) led to a crash in
PopulationTask
due to its precedingGeneratorRegisterTask
not being executed. - Fixed
/give
accepting negative amounts or amounts larger than 32767 (vanilla max). - Fixed placement conditions for vines (no longer able to be placed on the side of cacti).
- Fixed incorrect documentation of
SignText::__construct()
.