Releases: EndstoneMC/endstone
Releases · EndstoneMC/endstone
v0.4.1
This release focuses on supporting game version v1.20.80, which adds several new features.
Additionally, we add a few useful functions to Player
and Server
.
Game version: v1.20.80
Added
- Commands executed by players are now logged to the console.
- Message of
/say
command will be logged to the console. PlayerCommandEvent
is called when a player attempts to execute a command.Server::broadcastMessage
for broadcasting messages to all players.BroadcastMessageEvent
is called when a message is broadcast by the server.
Changed
- Support for Minecraft v1.20.80 - Armored Paws (Bedrock)
Fixed
- Player permissions are recalculated when the op status is changed.
- Incorrect UUID for Players corrected.
v0.4.0
In this release, we added an event system and several basic interfaces for game objects like Level
, Actor
and Player
.
Game version: v1.20.73
Added
- Event system that allows plugins to listen for specific events.
ServerLoadEvent
is called when a server is started up.Plugin::registerEventHandler
for registering an event handler in C++ plugins.- Decorator
@event_handler
for registering an event handler in Python plugins. PluginEnableEvent
andPluginDisableEvent
are called when a plugin is enabled or disabled.ServerPingListEvent
can be listened to for customizing how the server appears in the client list.ServerCommandEvent
is called when the server executes a command.WeatherChangeEvent
andThunderChangeEvent
are called when the weather or thunder status changes in a level.- Basic interface
endstone::Level
for a level/world. - Basic interface
endstone::Actor
for entities/actors. - Basic interface
endstone::Player
for players. Server::getPlayer
for getting a player instance by UUID.Player::sendPopup
andPlayer::sendTip
for sending popup and tip messages.- Stack traces are now printed to the console when an unrecoverable error occurs.
PlayerJoinEvent
andPlayerQuitEvent
are called when a player joins and leaves the server.ActorSpawnEvent
is called when an actor is spawned in the level.ActorRemoveEvent
is called when an actor is removed from the level.PlayerChatEvent
is called when a player sends a message.
Changed
- Singletons are now managed using
entt::locator
. - Macro
ENDSTONE_PLUGIN
is improved to simplify the definition of plugin metadata. ColorFormat
andGameMode
have been moved fromendstone.util
toendstone
in the Python package.- Wheels are now built and released with the
RelWithDebInfo
configuration to enable stack trace printing. - Support for Minecraft v1.20.73 (Bedrock)
Fixed
- Server no longer crashes when
/listd
command is executed.
v0.3.0
This is the second release of Endstone with a focus on the permission system and improving the plugin loading
mechanisms.
Game version: v1.20.72
Added
- Basic permission systems.
- Enforced Plugin API version checks for C++ and Python plugins to ensure ABI/API compatibility.
- Commands are now defined within the plugin metadata which will be automatically registered when the associated plugin
is enabled. - PluginDescription properties are extended to support
website
,load_order
,depend
,soft_depend
,load_before
,
andprovides
.
Changed
- Improved
ENDSTONE_PLUGIN
macro to further simplify the definition of plugin metadata. - Plugin names and websites are now displayed when using
/version [plugin: PluginName]
. - Support for Minecraft v1.20.72 (Bedrock)
Fixed
- C++ plugin loader now respects the
prefix
property of a plugin.