| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-02-24 | fix compile error | mat | |
| 2025-02-24 | fix an error in set_entity_data | mat | |
| 2025-02-24 | add fallback for adding LocalEntity so tests don't fail | mat | |
| 2025-02-24 | don't remove LocalEntity from disconnected players, add new debug logs, and ↵ | mat | |
| make GameProfile clones cheaper | |||
| 2025-02-23 | azalea-language now does a binary search instead of a hashmap lookup | mat | |
| 2025-02-23 | make run_schedule a bounded channel | mat | |
| 2025-02-23 | try to receive packets all at once before sending run_schedule_sender | mat | |
| 2025-02-23 | fix memory leak in simulation tests (lol) | mat | |
| also, change some vecs into boxed slices, and add RelativeEntityUpdate::new | |||
| 2025-02-22 | Refactor azalea-client (#205) | mat | |
| * start organizing packet_handling more by moving packet handlers into their own functions * finish writing all the handler functions for packets * use macro for generating match statement for packet handler functions * fix set_entity_data * update config state to also use handler functions * organize az-client file structure by moving things into plugins directory * fix merge issues | |||
| 2025-02-23 | minor memory usage optimizations | mat | |
| 2025-02-22 | update to rust edition 2024 | mat | |
| 2025-02-22 | update deps | mat | |
| 2025-02-22 | fix brand and client info so they're only sent when leaving login instead of ↵ | mat | |
| entering config closes #206 | |||
| 2025-02-22 | debug log CARGO_PKG_VERSION on swarm start | mat | |
| 2025-02-21 | despawn entities when switching worlds and some testbot fixes | mat | |
| 2025-02-21 | fix some components not being removed from clients and add debugecsleak ↵ | mat | |
| testbot command | |||
| 2025-02-21 | GameTick should only happen after Update | mat | |
| 2025-02-21 | Fix errors on switching dimensions (#204) | mat | |
| * Fix errors on switching dimensions * fix other tests * clippy * fix log feature in test_simulation * fix chunks oops | |||
| 2025-02-17 | update docs for TabList to mention how it works as a resource | mat | |
| 2025-02-16 | use MinecraftEntityId type instead of u32 in az-protocol | mat | |
| 2025-02-14 | upgrade deps | mat | |
| 2025-02-14 | remove stabilized trait_upcasting feature gates | mat | |
| 2025-02-03 | Fix deadlock when changing server (#200) | Kumpelinus | |
| * Fix deadlock when changing server * remove unnecessary clones --------- Co-authored-by: mat <git@matdoes.dev> | |||
| 2025-02-02 | start implementing data driven registries | mat | |
| 2025-02-01 | fix doc errors | mat | |
| 2025-02-01 | set player metadata on init instead of login | mat | |
| 2025-02-01 | add failing test_set_health_before_login test | mat | |
| 2025-01-29 | remove debug log | mat | |
| 2025-01-29 | fix PlayerInput to handle diagonal inputs | mat | |
| 2025-01-29 | change some warns to debugs | mat | |
| 2025-01-29 | add support for tickend and playerinput | mat | |
| 2025-01-27 | don't warn on release mode for unknown PlayerInfoUpdate | mat | |
| 2025-01-25 | Rename Connection::configuration to config and add some clientbound ↵ | mat | |
| functions that already existed serverbound taken from Shay's fork: https://github.com/Shays-Forks/azalea/commit/b0ca6076ed411b31e32a4abaa0350eb297067476 | |||
| 2025-01-21 | fix name of field in CommonPlayerSpawnInfo | mat | |
| 2025-01-21 | fix errors when switching worlds | mat | |
| 2025-01-14 | fix wrong ServerLinkKind and serialize hex colors correctly in nbt | mat | |
| 2025-01-13 | change some warnings to debug logs and improve some entity id index code | mat | |
| 2025-01-10 | Fluid physics (#199) | mat | |
| * start implementing fluid physics * Initial implementation of fluid pushing * different travel function in water * bubble columns * jumping in water * cleanup * change ultrawarm to be required * fix for clippy | |||
| 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 | improve some docs and apis related to pathfinder | mat | |
| 2024-12-19 | fix incorrect packets | mat | |
| 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-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-11-30 | Add missing world border boolean to use item on packet in 1.21.2 (#192) | Shayne Hartford | |
| 2024-11-28 | change DataComponentPatch::get to take in a generic (and add get_kind, has, ↵ | mat | |
| and has_kind) | |||
| 2024-11-27 | Refactor azalea-protocol (#190) | mat | |
| * start updating to 1.21.4 * fix block codegen and stop using block data from burger * rename packet related modules and structs to be simpler * ItemSlot -> ItemStack for more consistency with mojmap * .get() -> .into_packet() * simplify declare_state_packets by removing packet ids * rename read_from and write_into to azalea_read and azalea_write * rename McBufReadable and McBufWritable to AzaleaRead and AzaleaWrite * McBuf -> AzBuf * remove most uses of into_variant * update codegen and use resourcelocation names for packets * implement #[limit(i)] attribute for AzBuf derive macro * fixes for 1.21.4 * fix examples * update some physics code and fix ChatType * remove unused imports in codegen * re-add some things to migrate.py and update +mc version numbers automatically * downgrade to 1.21.3 lol | |||
