Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ Version history below is based on the repository tag history, local commit histo
### Added

- Added `updatehome` and `updatewarp` so existing homes and warps can be moved to the current location without recreating them.
- Added pagination support and page-picker navigation for `homes` and `warps`, with improved interactive list display for large result sets.
- Added pagination support and interactive page-picker navigation for `homes` and `warps`, with improved clickable list display for large result sets.

### Changed

- Refactored shared command execution, suggestion, pagination, and chat UI helpers to reduce duplication across `home`, `warp`, and related command flows.
- Refactored config handling by splitting `ConfigManager` responsibilities and updated command registration to the newer direct-registration path.
- Improved internal storage concurrency with synchronized asynchronous file I/O, asynchronous config writes, and safer shared-state handling.
- Refactored shared command execution, suggestion, pagination, visibility, and chat UI helpers to reduce duplication across `back`, `home`, `warp`, and related command flows.
- Refactored config and storage handling by splitting manager, migrator, and data responsibilities into dedicated classes and helpers.
- Updated command registration to use Fabric's direct registration callback path instead of the older mixin-based command registration hook.
- Updated persistence flow to use dirty tracking, synchronized asynchronous file I/O, asynchronous config writes, and a forced storage flush during shutdown.

### Fixed

- Fixed a shutdown cleanup issue that could terminate background threads unexpectedly while the server was closing.
- Fixed a shutdown issue where background save or cleanup work could terminate unexpectedly while the server was closing.
- Fixed translation lookup fallback so missing keys now fall back to `en_us` immediately.
- Fixed teleport-related state cleanup and unsafe-block checking to improve reliability during teleport processing and shutdown.
- Fixed disconnect and reconnect edge cases by delaying cleanup of previous-teleport and cooldown state instead of removing it immediately on logout.
- Fixed asynchronous config and storage read edge cases to improve reliability under concurrent access.
- Improved unsafe teleport block checking and related world-resolution reliability.

## [1.5] - 2026-03-21

Expand All @@ -31,20 +34,24 @@ Version history below is based on the repository tag history, local commit histo
- Added `/gwarpmap` for administrators to manage global warp visibility on the map separately from each player's personal hide/show state.
- Added `/back tp` to return to the location recorded before the last teleport command execution.
- Added direct integration from Xaero death waypoint teleport into `/back death`.
- Added stable UUID identity for homes and warps, together with storage migration support for existing saved data.

### Changed

- Refactored the command implementation into dedicated command, formatter, message, and service helpers for more consistent behavior across `back`, `home`, `warp`, `tpa`, `rtp`, and admin flows.
- Changed Xaero waypoint sync behavior to work cleanly with default waypoint-set usage while keeping TeleportCommands-managed waypoints identifiable.
- Changed home and warp persistence to use stable UUID-based identity, including migration of default-home references away from name-only matching.
- Changed Xaero teleport interception in the default `Default` waypoint-set flow to recognize only TeleportCommands-tagged waypoints instead of matching generic `W` / `H` symbols.
- Updated Xaero waypoint deletion handling so deleting synced waypoints can silently map back to `mapwarp` and `maphome` visibility changes instead of only removing the local marker.
- Improved Xaero-related command interception and trusted command flow for smoother client-side interaction.
- Improved Xaero-related command interception, trusted-command flow, and chat interaction formatting for smoother client-side use.
- Refined global and per-player map visibility management so warp administration and personal visibility control are handled separately.

### Fixed

- Fixed several Xaero interaction edge cases around waypoint teleport, deletion, and command routing.
- Fixed command-side name matching for TeleportCommands-managed Xaero waypoints so normal default-set waypoints are less likely to be mistaken for `warp` or `home` entries.
- Fixed clickable `rename`, `delete`, `maphome`, `mapwarp`, and related chat actions so names containing escaped characters such as `\\` and `\"` are passed correctly.
- Fixed confusing Xaero waypoint-set configuration cases by normalizing blank, `Current`, and legacy TeleportCommands set names back to `Default`.

## [1.4] - 2026-03-16

Expand Down
Loading