| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-12-27 | implement BlockState::outline_shape | mat | |
| 2024-12-27 | better astar WeightedNode::cmp | mat | |
| 2024-12-27 | don't save Movement type while pathfinding as an optimization, recalculate ↵ | mat | |
| it later in reconstruct_path | |||
| 2024-12-27 | resolve some todos in az-core | mat | |
| 2024-12-26 | patch path on timeout instead of recalculating everything | mat | |
| 2024-12-26 | better pathfinder timeouts | mat | |
| 2024-12-26 | make a_star function use an IndexMap like the pathfinding crate | mat | |
| 2024-12-26 | replace priority_queue crate with std BinaryHeap | mat | |
| 2024-12-25 | patch pathfinder obstructions instead of just truncating the path | mat | |
| 2024-12-25 | partial fix for sending Config packets during Game | mat | |
| 2024-12-25 | close tcp connection on bot disconnect and add swarms to testbot cli | mat | |
| 2024-12-25 | remove dependency on bytes crate for azalea-protocol and fix memory leak | mat | |
| 2024-12-25 | optimize pathfinder | mat | |
| 2024-12-24 | optimize cost_for_breaking_block by making its cache an UnsafeCell instead | mat | |
| 2024-12-24 | make BlockState a u16 and add a BlockStateIntegerRepr type | mat | |
| 2024-12-24 | fix parsing Dust particle and treat waterlogged blocks as liquid in pathfinder | mat | |
| 2024-12-24 | add additional pathfinder test and fix pathfinder failure | mat | |
| 2024-12-24 | improve some docs and apis related to pathfinder | mat | |
| 2024-12-23 | update outdated doc in Swarm and remove unnecessary generics | mat | |
| 2024-12-23 | lift requirement on anyhow for handler function | mat | |
| 2024-12-23 | rename metadata::State to metadata::SnifferState | mat | |
| 2024-12-23 | add a bit more logging to handshake_proxy | mat | |
| 2024-12-23 | add a test for 2b2t queue chat message | mat | |
| 2024-12-23 | fix 'extra' parsing in FormattedText::from_nbt_compound which results in ↵ | mat | |
| duplicated chat fragments | |||
| 2024-12-23 | exit get_block_state early if below the world | mat | |
| 2024-12-23 | make testbot take cli args | mat | |
| 2024-12-21 | fix unlinked link in comment | mat | |
| 2024-12-21 | update trust-dns -> hickory-dns | mat | |
| 2024-12-21 | fix flakey pathfinder tests by moving stop_pathfinding_on_instance_change to ↵ | mat | |
| be before path_found_listener | |||
| 2024-12-21 | fix compiling azalea-registry | mat | |
| 2024-12-20 | Release independent packages | mat | |
| Generated by cargo-workspaces | |||
| 2024-12-20 | Release 0.11.0+mc1.21.4 | mat | |
| azalea@0.11.0+mc1.21.4 azalea-auth@0.11.0+mc1.21.4 azalea-block@0.11.0+mc1.21.4 azalea-block-macros@0.11.0+mc1.21.4 azalea-brigadier@0.11.0+mc1.21.4 azalea-buf@0.11.0+mc1.21.4 azalea-buf-macros@0.11.0+mc1.21.4 azalea-chat@0.11.0+mc1.21.4 azalea-client@0.11.0+mc1.21.4 azalea-core@0.11.0+mc1.21.4 azalea-crypto@0.11.0+mc1.21.4 azalea-entity@0.11.0+mc1.21.4 azalea-inventory@0.11.0+mc1.21.4 azalea-inventory-macros@0.11.0+mc1.21.4 azalea-language@0.11.0+mc1.21.4 azalea-physics@0.11.0+mc1.21.4 azalea-protocol@0.11.0+mc1.21.4 azalea-protocol-macros@0.11.0+mc1.21.4 azalea-registry@0.11.0+mc1.21.4 azalea-registry-macros@0.11.0+mc1.21.4 azalea-world@0.11.0+mc1.21.4 Generated by cargo-workspaces | |||
| 2024-12-21 | more verbose login_disconnect error | mat | |
| 2024-12-20 | fix incorrect tags codegen | mat | |
| 2024-12-20 | update entity metadata | mat | |
| 2024-12-20 | update deps | mat | |
| 2024-12-19 | fix incorrect packets | mat | |
| 2024-12-12 | chore(core): Derive Serialize and Deserialize for `direction` types (#197) | Gaspard Culis | |
| When crate's `serde` feature is enabled | |||
| 2024-12-11 | Implement EntityPositionSync (#196) | mat | |
| * implement EntityPositionSync * fix EntityPositionSync setting the wrong vec_delta_codec and also move into a RelativeEntityUpdate | |||
| 2024-12-11 | remove the generic_const_exprs feature since it's unused and to make the ↵ | mat | |
| rust compiler devs happy | |||
| 2024-12-11 | fix incorrect EntityDataValue::Long | mat | |
| 2024-12-11 | fix for latest nightly by changing the FixedBitSet generic to take bytes ↵ | mat | |
| instead of bits | |||
| 2024-12-10 | Disable the `deadlock_detection` feature by default (#195) | EightFactorial | |
| * Disable the `deadlock_detection` feature by default Fixes conflicts with any packages that enable parking_lot's `send_guard` feature * move testbot deadlock detection to a function and add additional comments --------- Co-authored-by: mat <git@matdoes.dev> | |||
| 2024-12-07 | Emit a build warning if the compiler may fail to build (#194) | EightFactorial | |
| This should be reverted when the latest nightly can build again | |||
| 2024-12-05 | fix container_set_content, player_position, and recipe_book_remove packets | mat | |
| 2024-12-04 | Update Bevy and migrate to workspace dependencies and package attributes (#181) | EightFactorial | |
| * Use workspace `Cargo.toml` for dependencies and package atributes * Fix a couple clippy warnings * Update bevy, update build script, move deps to workspace, and fix clippy warnings * Remove carrots from crate versions The default behavior is the same * Remove unused dependencies Compiles and all tests pass, so it should be fine * Update codegen to use `std::sync::LazyLock` instead of `once_cell::sync::Lazy` * Update Bevy to `0.15.0-rc.3` Surprisingly little needed to be changed * Update to bevy 0.15.0 * Fix leftover merge issues * Clarify the reason the swarm can't connect * Fix duplicate lint, remove `log` dependency | |||
| 2024-12-03 | add link to 1.21.3 branch in readme | mat | |
| 2024-12-03 | 1.21.4 (#189) | mat | |
| * start updating to 1.21.4 * fix block codegen and stop using block data from burger * 1.21.4-rc1 * 1.21.4 | |||
| 2024-11-30 | Add missing world border boolean to use item on packet in 1.21.2 (#192) | Shayne Hartford | |
| 2024-11-30 | Impl FromStr for BlockPos & Vec (again) (#191) | Shayne Hartford | |
