activepass
9e34a2660d
lowercase named colours ( #222 )
2025-05-17 01:07:51 -05:00
8dff973d26
support legacy hex colors
2025-05-07 14:24:07 +09:00
4a1fdf0121
fix incorrect chat parsing when legacy color codes are mixed in
2025-05-06 22:35:17 -06:30
mat
9a40b65bc1
Add AutoReconnectPlugin ( #221 )
...
* add AutoReconnectPlugin
* merge main
* start simplifying swarm internals
* fix Swarm::into_iter, handler functions, DisconnectEvent, and add some more docs
* add ClientBuilder/SwarmBuilder::reconnect_after
* fix a doctest
* reword SwarmEvent::Disconnect doc
* better behavior when we try to join twice
* reconnect on ConnectionFailedEvent too
* autoreconnect is less breaking now
2025-05-02 15:55:58 -05:00
Kumpelinus
11a74f215e
Implement a to_html method for FormattedText ( #208 )
...
* Implement a to_html method for FormattedText
Also fix a small issue with ansi formatting where it duplicated
text.
* cargo fmt
* Make format conversion generic
* cargo lint and fmt
* Fix ascii conversion cleanup
* Implement suggested changes
* format, improve sanitization, add xss test
---------
Co-authored-by: mat <git@matdoes.dev>
2025-05-01 13:26:04 -05:00
fd27ca3bec
release 0.12.0+mc1.21.5
2025-04-13 05:30:40 +03:00
960b840536
Revert "Release 0.12.0"
...
This reverts commit e2945b90a9
.
2025-04-12 13:33:07 -12:45
e2945b90a9
Release 0.12.0
...
azalea@0.12.0
azalea-auth@0.12.0
azalea-block@0.12.0
azalea-block-macros@0.12.0
azalea-brigadier@0.12.0
azalea-buf@0.12.0
azalea-buf-macros@0.12.0
azalea-chat@0.12.0
azalea-client@0.12.0
azalea-core@0.12.0
azalea-crypto@0.12.0
azalea-entity@0.12.0
azalea-inventory@0.12.0
azalea-inventory-macros@0.12.0
azalea-language@0.12.0
azalea-physics@0.12.0
azalea-protocol@0.12.0
azalea-protocol-macros@0.12.0
azalea-registry@0.12.0
azalea-registry-macros@0.12.0
azalea-world@0.12.0
Generated by cargo-workspaces
2025-04-12 21:08:44 -05:00
5272db8bb4
remove executable bit from files
2025-04-04 15:56:06 +00:00
34f53baf85
update to rust edition 2024
2025-02-22 23:01:54 +00:00
8d110a9f7c
cleanup, fix warnings
2025-02-02 21:17:28 +00:00
2dcfbe96c3
fix wrong ServerLinkKind and serialize hex colors correctly in nbt
2025-01-14 03:18:38 +00:00
63fef9d94f
fix 'extra' parsing in FormattedText::from_nbt_compound which results in duplicated chat fragments
2024-12-23 02:01:09 +00:00
ad30950f85
Release independent packages
...
Generated by cargo-workspaces
2024-12-20 19:22:29 -06:00
7098375ecf
Release 0.11.0+mc1.21.4
...
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-20 19:18:36 -06:00
EightFactorial
6379035b85
Update Bevy and migrate to workspace dependencies and package attributes ( #181 )
...
* 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-04 18:31:22 -06:00
mat
b71a7af53a
1.21.4 ( #189 )
...
* start updating to 1.21.4
* fix block codegen and stop using block data from burger
* 1.21.4-rc1
* 1.21.4
2024-12-03 14:42:23 -06:00
mat
08958c2278
Refactor azalea-protocol ( #190 )
...
* 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
2024-11-27 19:31:40 -06:00
0817382098
replace once_cell with std:;sync::LazyLock
2024-11-27 10:26:40 +00:00
Shayne Hartford
dfdc3144b6
Update and merge the dependencies ( #187 )
...
* Add rust rover to .gitignore
* Fold dependency feature lists
* Sort dependencies alphabetically
* Update dependencies
* Upgrade dependencies
* Comment out unused dependencies
* Nightly is broken right now :)
* Fix conflict with derive_more
* cargo autoinherit to merge dependencies
* Fix clippy lints
2024-11-23 02:29:30 -06:00
6b0fe5bf63
group imports with rustfmt
2024-10-26 05:29:26 +00:00
abc7b43b8c
Release 0.10.3+mc1.21.1
...
azalea@0.10.3+mc1.21.1
azalea-auth@0.10.3+mc1.21.1
azalea-block@0.10.3+mc1.21.1
azalea-block-macros@0.10.3+mc1.21.1
azalea-brigadier@0.10.3+mc1.21.1
azalea-buf@0.10.3+mc1.21.1
azalea-buf-macros@0.10.3+mc1.21.1
azalea-chat@0.10.3+mc1.21.1
azalea-client@0.10.3+mc1.21.1
azalea-core@0.10.3+mc1.21.1
azalea-crypto@0.10.3+mc1.21.1
azalea-entity@0.10.3+mc1.21.1
azalea-inventory@0.10.3+mc1.21.1
azalea-inventory-macros@0.10.3+mc1.21.1
azalea-language@0.10.3+mc1.21.1
azalea-physics@0.10.3+mc1.21.1
azalea-protocol@0.10.3+mc1.21.1
azalea-protocol-macros@0.10.3+mc1.21.1
azalea-registry@0.10.3+mc1.21.1
azalea-registry-macros@0.10.3+mc1.21.1
azalea-world@0.10.3+mc1.21.1
Generated by cargo-workspaces
2024-10-22 23:05:04 -05:00
e485cf5501
fix incorrect comment in with_microsoft_access_token docs
2024-08-15 23:33:23 +00:00
b445b7c032
cursor_remaining was stabilized
2024-08-06 02:19:32 +00:00
mat
ea64fba7f6
upgrade to simdnbt 0.6 ( #160 )
2024-07-05 00:45:45 -05:00
38eab50b4f
Release 0.10.2
...
azalea-block@0.10.2
azalea-block-macros@0.10.2
azalea-brigadier@0.10.2
azalea-buf@0.10.2
azalea-chat@0.10.2
azalea-client@0.10.2
azalea-core@0.10.2
azalea-entity@0.10.2
azalea-inventory@0.10.2
azalea-physics@0.10.2
azalea-protocol@0.10.2
azalea-registry@0.10.2
azalea-world@0.10.2
Generated by cargo-workspaces
2024-06-13 19:22:11 -05:00
73bcc6639b
fix another edge case in FormattedText::from_nbt_tag that happens with viaversion
2024-05-22 10:28:43 +00:00
729d211406
read Tool blocks as HolderSet
...
fixes an error with viaversion servers
2024-05-22 10:14:35 +00:00
veronoicc
892869ad12
Update simdnbt dep ( #148 )
...
* Update simdnbt dep
* Fix not compiling (rust analyzer is still yapping, i trust you cargo check)
* Update simdnbt to 0.5.2
* finally everything works :prayge:
2024-05-14 16:59:36 -05:00
b00106b7ff
update simdnbt
2024-05-14 09:13:34 +00:00
84f66a55a5
Release 0.10.1
...
azalea@0.10.1
azalea-auth@0.10.1
azalea-buf@0.10.1
azalea-chat@0.10.1
azalea-client@0.10.1
azalea-entity@0.10.1
azalea-inventory@0.10.1
azalea-protocol@0.10.1
azalea-world@0.10.1
Generated by cargo-workspaces
2024-04-24 17:56:35 -05:00
a3169d8ffe
fix some deps
2024-04-24 22:43:44 +00:00
287f493172
Release independent packages
...
Generated by cargo-workspaces
2024-04-24 00:01:16 -05:00
2f51a0a123
Release 0.10.0
...
azalea@0.10.0
azalea-auth@0.10.0
azalea-block@0.10.0
azalea-block-macros@0.10.0
azalea-brigadier@0.10.0
azalea-buf@0.10.0
azalea-buf-macros@0.10.0
azalea-chat@0.10.0
azalea-client@0.10.0
azalea-core@0.10.0
azalea-crypto@0.10.0
azalea-entity@0.10.0
azalea-inventory@0.10.0
azalea-inventory-macros@0.10.0
azalea-language@0.10.0
azalea-physics@0.10.0
azalea-protocol@0.10.0
azalea-protocol-macros@0.10.0
azalea-registry@0.10.0
azalea-registry-macros@0.10.0
azalea-world@0.10.0
Generated by cargo-workspaces
2024-04-23 23:56:30 -05:00
df8068b79c
upgrade deps
2024-04-24 04:20:39 +00:00
7357455cad
Revert "Release 0.10.0"
...
This reverts commit f26aa56f42
.
2024-04-24 04:11:53 +00:00
f26aa56f42
Release 0.10.0
...
azalea@0.10.0
azalea-auth@0.10.0
azalea-block@0.10.0
azalea-block-macros@0.10.0
azalea-brigadier@0.10.0
azalea-buf@0.10.0
azalea-buf-macros@0.10.0
azalea-chat@0.10.0
azalea-client@0.10.0
azalea-core@0.10.0
azalea-crypto@0.10.0
azalea-entity@0.10.0
azalea-inventory@0.10.0
azalea-inventory-macros@0.10.0
azalea-language@0.10.0
azalea-physics@0.10.0
azalea-protocol@0.10.0
azalea-protocol-macros@0.10.0
azalea-registry@0.10.0
azalea-registry-macros@0.10.0
azalea-world@0.10.0
Generated by cargo-workspaces
2024-04-23 23:11:11 -05:00
0ddad8bd9c
fix edge case with reading FormattedText as nbt
2024-04-20 21:06:37 +00:00
f919fb65d6
upgrade deps
2024-04-20 04:12:16 +00:00
fa96af786b
Release 0.9.1
...
azalea@0.9.1
azalea-auth@0.9.1
azalea-block@0.9.1
azalea-block-macros@0.9.1
azalea-brigadier@0.9.1
azalea-buf@0.9.1
azalea-buf-macros@0.9.1
azalea-chat@0.9.1
azalea-client@0.9.1
azalea-core@0.9.1
azalea-crypto@0.9.1
azalea-entity@0.9.1
azalea-inventory@0.9.1
azalea-inventory-macros@0.9.1
azalea-language@0.9.1
azalea-physics@0.9.1
azalea-protocol@0.9.1
azalea-protocol-macros@0.9.1
azalea-registry@0.9.1
azalea-registry-macros@0.9.1
azalea-world@0.9.1
Generated by cargo-workspaces
2024-04-18 20:22:26 -05:00
018ab55bdb
optimize physics
2024-02-25 16:53:08 -06:00
c38957374c
fix parsing textcomponents failing when it's translatable and has a primitive as an argument
2024-02-24 14:00:09 -06:00
be4f13c36c
upgrade deps, bevy 0.13
2024-02-17 14:43:42 -06:00
64d48897af
update deps
2024-01-25 00:44:20 -06:00
fd1c99e74a
upgrade deps
2024-01-08 21:15:12 -06:00
13e6421cf5
fix FormattedText when 'extra' isn't a list of compounds
2023-12-28 18:36:23 -06:00
cbb2ffad92
read nbt as optional in more places
2023-12-28 17:49:47 -06:00
a069ffe982
fix non-u8 gamemodes
...
love you wynncraft
2023-12-16 14:29:49 -06:00
b9829149cb
fix broken doc links
2023-12-09 18:34:00 -06:00
3f341aa114
disable feaatures on azalea-chat by default and fix disabling simdnbt feature
2023-12-06 11:36:25 -06:00