Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.18 #514

Draft
wants to merge 23 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b97c953
Update to 1.18
Iaiao Jan 10, 2022
a4834df
Remove hardcoded .nbt files
Iaiao Jan 10, 2022
4305587
Fix a typo
Iaiao Jan 10, 2022
dea6486
Fix dimensions in Server::broadcast_with
Iaiao Jan 10, 2022
78a60db
Update tests and add test for PalettedContainer
Iaiao Jan 10, 2022
57c5704
Merge main
Iaiao Jan 10, 2022
e947675
Fix clippy warning
Iaiao Jan 11, 2022
57b9574
Remove openssl-sys from reqwest dependencies, use rustls instead
Iaiao Jan 11, 2022
a7d4a2f
Use IndexMap to fix generated item order
Iaiao Jan 11, 2022
d02da81
Fix clippy
Iaiao Jan 11, 2022
d4c2113
Remove unused biome code
Iaiao Jan 11, 2022
66508b8
Change "value".parse().unwrap() to quote! syntax in generators
Iaiao Jan 11, 2022
7fcd37c
Change dependency version format in all crates
Iaiao Jan 11, 2022
b86c2ce
Uncomment libcraft/blocks/directions.rs
Iaiao Jan 11, 2022
eff0dc6
Take EntityKind by value in feather_server::entities::add_spawn_packet
Iaiao Jan 12, 2022
ce4d351
Move constants/ to feather_base::consts
Iaiao Jan 12, 2022
4c0f80d
Make PalettedContainer.bits_per_value NonZeroUsize
Iaiao Jan 12, 2022
2d0d90e
Fix tests and clippy
Iaiao Jan 12, 2022
e8803df
Remove From<ItemData> for ItemStack
Iaiao Jan 13, 2022
0df9ca1
Allow non-.json extensions in worldgen/namespace/worldgen/biome/
Iaiao Jan 13, 2022
373e4f6
Replace for if let with .flatten()
Iaiao Jan 13, 2022
1d2c0d2
Make Paletteable::{MIN,MAX}_BITS_PER_ENTRY NonZeroUsize
Iaiao Jan 13, 2022
46be6ea
Improve error handling in biome and dimension loading
Iaiao Jan 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
# Cargo build configuration
.cargo

world/
/worlds/
/generated/
/worldgen/
/config.toml

# Python cache files (libcraft)
**/__pycache__/

# macOS desktop files
**/.DS_STORE
3 changes: 2 additions & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# We use rustfmt, and formatting is checked in CI.
# Please run `cargo fmt` before committing

# Empty config: default settings!
unstable_features = true
format_generated_files = true
Loading