From 0ee6cdb058d4bd2e058352b3a710177366019c03 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 15 Dec 2022 21:08:23 +0000 Subject: [PATCH] Release 4.12.2 --- changelogs/4.12.md | 12 ++++++++++++ src/VersionInfo.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/changelogs/4.12.md b/changelogs/4.12.md index efd53e528..eaf4c8d25 100644 --- a/changelogs/4.12.md +++ b/changelogs/4.12.md @@ -18,3 +18,15 @@ Released 4th December 2022. ## Fixes - Fixed items glitching when dragging a stack of items across the crafting grid (desync issues). + +# 4.12.2 +Released 15th December 2022. + +## Fixes +- Folder used for plugins (optionally specified by `--plugins`) is no longer required to be writable. +- Fixed broken writable check for server data folder (`is_writable()` broken on NFS and similar filesystems). +- `Filesystem::createLockFile()` exceptions now include more information about why the lock file could not be created. +- Fixed client-side item predictions not being rolled back when cancelling events such as `PlayerItemUseEvent`. + +## Dependencies +- Updated BedrockProtocol to [17.1.0](https://github.com/pmmp/BedrockProtocol/releases/tag/17.1.0+bedrock-1.19.50). This adds some missing `LevelSoundEvent` constants and fixes the values for `ContainerUIIds`. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 3519fd039..edb2c14af 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.12.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){