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
Aditya Kumar
13afc1d6a4
Auth Customization Options ( #159 )
...
* Added Support for Custom Auth using `client_id` and `scope`
* fix: `Account::microsoft` and added lifetime to `Account::microsoft_with_custom_client_id`
* Added function `with_microsoft_access_token_and_custom_client_id`
* Removed Custom Scope.
* I got carried away, and made scope also customizable, later realized no customization is needed.
* Better Documentation and Minor fixes
* Added Custom Scope
* Added RpsTicket format for custom `client_id`
* Moved to non-static str
* fix example
Co-authored-by: mat <27899617+mat-1@users.noreply.github.com>
* fix doc grammer
* changed function signature
* fmt
* fixed example
* removed dead code
* Removed `d=` insertion in `client_id`
* removed unnecessary `mut`
---------
Co-authored-by: mat <27899617+mat-1@users.noreply.github.com>
2024-08-11 16:54:45 -05:00
mat
ea64fba7f6
upgrade to simdnbt 0.6 ( #160 )
2024-07-05 00:45:45 -05: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
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
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
1zuna
38bb98707e
fix: GameOwnershipResponse key_id format ( #138 )
2024-03-21 13:36:15 -05: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
5ea1271145
add doc comment about d=
2024-01-06 18:16:11 -06:00
veronoicc
cacb04718d
Make check_ownership pub ( #126 )
2023-12-28 15:50:55 -06:00
a069ffe982
fix non-u8 gamemodes
...
love you wynncraft
2023-12-16 14:29:49 -06:00
92d33ad0a3
force user to reauth when refresh fails
2023-12-16 13:54:57 -06:00
6567cf9e5c
Release 0.9.0
...
azalea@0.9.0
azalea-auth@0.9.0
azalea-block@0.9.0
azalea-block-macros@0.9.0
azalea-brigadier@0.9.0
azalea-buf@0.9.0
azalea-buf-macros@0.9.0
azalea-chat@0.9.0
azalea-client@0.9.0
azalea-core@0.9.0
azalea-crypto@0.9.0
azalea-entity@0.9.0
azalea-inventory@0.9.0
azalea-inventory-macros@0.9.0
azalea-language@0.9.0
azalea-physics@0.9.0
azalea-protocol@0.9.0
azalea-protocol-macros@0.9.0
azalea-registry@0.9.0
azalea-registry-macros@0.9.0
azalea-world@0.9.0
Generated by cargo-workspaces
2023-12-05 11:06:51 -06:00
ab5f6d598d
upgrade deps
2023-12-05 11:06:24 -06:00
4355e7f74b
clippy
2023-12-03 20:31:36 -06:00
3e168a33c9
let plugins override query responses
2023-12-03 16:17:46 -06:00
1f46ef8c11
make it so plugins can send and receive packets during the login state
2023-12-03 02:41:09 -06:00
f114c78dba
fix typo in auth docs
2023-11-29 19:53:14 -06:00
89f5053b47
upgrade all dependencies
2023-11-18 01:02:52 -06:00
9633508a3a
replace log with tracing
2023-11-18 00:58:47 -06:00
ee55453fbf
bevy 0.12
2023-11-06 18:04:57 -06:00
5212ba4d5d
update repo links
2023-10-08 03:58:57 -05:00
0ef15254c4
also upgrade deps everywhere else lol
2023-10-03 01:37:00 -05:00
c8aad8bdfe
Release 0.8.0
...
azalea@0.8.0
azalea-auth@0.8.0
azalea-block@0.8.0
azalea-block-macros@0.8.0
azalea-brigadier@0.8.0
azalea-buf@0.8.0
azalea-buf-macros@0.8.0
azalea-chat@0.8.0
azalea-client@0.8.0
azalea-core@0.8.0
azalea-crypto@0.8.0
azalea-entity@0.8.0
azalea-inventory@0.8.0
azalea-inventory-macros@0.8.0
azalea-language@0.8.0
azalea-nbt@0.8.0
azalea-physics@0.8.0
azalea-protocol@0.8.0
azalea-protocol-macros@0.8.0
azalea-registry@0.8.0
azalea-registry-macros@0.8.0
azalea-world@0.8.0
Generated by cargo-workspaces
2023-09-14 19:01:20 -05:00
35d6ac565d
upgrade deps
2023-09-08 16:51:32 -05:00
4ed4be529f
upgrade thiserror and other deps
2023-08-15 22:21:04 -05:00
a985cc7442
remove unused deps
2023-07-19 17:13:46 -05:00
mat
d1afd02aa8
Update to Bevy 0.11 ( #94 )
...
* update to bevy 0.11
* clippy
---------
Co-authored-by: mat <git@matdoes.dev>
2023-07-09 19:11:29 -05:00
Adam Reisenauer
5e46996882
Add functions auth_with_link_code
, get_ms_link_code
, and get_ms_auth_token
. ( #88 )
...
* Add option for grabbing authentication code for Microsoft seperately. Created two new functions, one that outputs the DeviceCodeResponse and one that uses this response to authenticate an actual account.
* Added documentation and cleaned up function names. Still wondering about code repeition
* reduce code duplication, more docs, cleanup
* clippy
---------
Co-authored-by: mat <git@matdoes.dev>
2023-06-24 17:09:43 -05:00
dbfbffac14
Vec3::distance_to and clippy
2023-06-14 23:43:54 -05:00
8813330359
random fixes mostly related to auth and crypto
2023-05-27 01:57:31 -05:00
6188230009
add stuff related to chat signing
...
and also some stuff related to digging because i forgot to do a different branch lol
2023-05-26 15:18:04 -05:00
8ef57aa698
chore: Release
2023-05-17 00:04:16 -05:00
3f8177a302
chore: Release
2023-05-16 23:49:08 -05:00
1fb4418f2c
fix conflicts that happen sometimes with serde
2023-05-01 18:36:40 -05:00