mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
add some missing things to the changelog
This commit is contained in:
parent
a06b79a6c1
commit
f64229fcc9
1 changed files with 6 additions and 4 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -13,11 +13,12 @@ is breaking anyways, semantic versioning is not followed.
|
||||||
- This changelog. To see changes before this update, look at the git commits.
|
- This changelog. To see changes before this update, look at the git commits.
|
||||||
- azalea and azalea-client now have a `packet-event` feature, which can be disabled for efficiency if you're not using `Event::Packet`.
|
- azalea and azalea-client now have a `packet-event` feature, which can be disabled for efficiency if you're not using `Event::Packet`.
|
||||||
- `StartJoinServerEvent` can now be used to join servers exclusively from the ECS without a Tokio runtime.
|
- `StartJoinServerEvent` can now be used to join servers exclusively from the ECS without a Tokio runtime.
|
||||||
- `FormattedText::to_html` and `FormattedText::to_custom_format`. (@Kumpelinus)
|
- Add `FormattedText::to_html` and `FormattedText::to_custom_format`. (@Kumpelinus)
|
||||||
- Non-standard legacy hex colors like `§#ff0000` are now supported in azalea-chat.
|
- Non-standard legacy hex colors like `§#ff0000` are now supported in azalea-chat.
|
||||||
- Chat signing.
|
- Chat signing.
|
||||||
- Add auto-reconnecting which is enabled by default.
|
- Add auto-reconnecting which is enabled by default.
|
||||||
- `Client::start_use_item`.
|
- `ClientBuilder` and `SwarmBuilder` are now Send.
|
||||||
|
- Add `Client::start_use_item`.
|
||||||
- The pathfinder no longer avoids slabs, stairs, and dirt path blocks.
|
- The pathfinder no longer avoids slabs, stairs, and dirt path blocks.
|
||||||
- The pathfinder now immediately recalculates if blocks are placed in its path.
|
- The pathfinder now immediately recalculates if blocks are placed in its path.
|
||||||
- Bots that use custom pathfinder moves can now keep arbitrary persistent state by using the `CustomPathfinderState` component and `PathfinderCtx::custom_state`.
|
- Bots that use custom pathfinder moves can now keep arbitrary persistent state by using the `CustomPathfinderState` component and `PathfinderCtx::custom_state`.
|
||||||
|
@ -27,9 +28,11 @@ is breaking anyways, semantic versioning is not followed.
|
||||||
- Proper support for getting biomes at coordinates.
|
- Proper support for getting biomes at coordinates.
|
||||||
- Add a new `Client::entities_by` which sorts entities that match a criteria by their distance to the client.
|
- Add a new `Client::entities_by` which sorts entities that match a criteria by their distance to the client.
|
||||||
- New client event `Event::ReceiveChunk`.
|
- New client event `Event::ReceiveChunk`.
|
||||||
- Several new functions for interacting with inventories.
|
- Several new functions for interacting with inventories (`Client::get_inventory`, `get_held_item`, `ContainerHandleRef::left_click`, `shift_click`, `right_click`, `slots`).
|
||||||
|
- Add `Client::mine_with_auto_tool`.
|
||||||
- Add `Client::set_selected_hotbar_slot` and `Client::selected_hotbar_slot`.
|
- Add `Client::set_selected_hotbar_slot` and `Client::selected_hotbar_slot`.
|
||||||
- Add `Client::attack_cooldown_remaining_ticks` to complement `has_attack_cooldown`.
|
- Add `Client::attack_cooldown_remaining_ticks` to complement `has_attack_cooldown`.
|
||||||
|
- Add `BlockPos::length`, `distance_to`, and `center_bottom`.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@ -38,7 +41,6 @@ is breaking anyways, semantic versioning is not followed.
|
||||||
- Update to [Bevy 0.16](https://bevyengine.org/news/bevy-0-16/).
|
- Update to [Bevy 0.16](https://bevyengine.org/news/bevy-0-16/).
|
||||||
- Rename `InstanceContainer::insert` to `get_or_insert`.
|
- Rename `InstanceContainer::insert` to `get_or_insert`.
|
||||||
- Replace `BlockInteractEvent` with the more general-purpose `StartUseItemEvent`.
|
- Replace `BlockInteractEvent` with the more general-purpose `StartUseItemEvent`.
|
||||||
- `ClientBuilder` and `SwarmBuilder` are now Send.
|
|
||||||
- Replace `wait_one_tick` and `wait_one_update` with `wait_ticks` and `wait_updates`.
|
- Replace `wait_one_tick` and `wait_one_update` with `wait_ticks` and `wait_updates`.
|
||||||
- Functions that took `&Vec3` or `&BlockPos` as arguments now only take them as owned types.
|
- Functions that took `&Vec3` or `&BlockPos` as arguments now only take them as owned types.
|
||||||
- Rename `azalea_block::Block` to `BlockTrait` to disambiguate with `azalea_registry::Block`.
|
- Rename `azalea_block::Block` to `BlockTrait` to disambiguate with `azalea_registry::Block`.
|
||||||
|
|
Loading…
Add table
Reference in a new issue