Skip to content

Commit

Permalink
Automated commit: v0.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bgkillas committed Dec 4, 2024
1 parent 692dd1f commit 809cc43
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 22 deletions.
29 changes: 12 additions & 17 deletions last_release_notes.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@
## Noita Entangled Worlds v0.31.0 - UI changes, fix item sync, fix/sync some perks
## Noita Entangled Worlds v0.31.1

- allow peaking at peers mod list
- add in game chat system, enter to start/end

- allow unbanning players
- fix projectiles duplicating from bombs materialized fix

- fix item sync removing and respawning items
- fix enemies duping when host/player restarts

- fix enemies not dropping wands sometimes
- teleport wands if grabbed sometimes since we cant remove them due to a crash, remove items faster when safe

- allow seeing spells of other players while spectating
- allow picking up wands from greater distances

- fix ability action materialized
- add share gold option(prob buggy)

- fix homunculus

- sync position of homunculus and lukki minion

- allow disabling controller binds in the in game settings menu

- allow cli to use proxy ron
- add no notplayer option(has issues i prob wont fix)

## Accepted pull requests


No pull requests have been accepted in this release.

- Revert "Add apt caching to release workflow" by @bgkillas in #258
- Add apt caching to release workflow by @kcalbxof in #255
- Changed file dialog to native via rfd by @kcalbxof in #254
- make ewext compileable on old systems UPD: added as feature flag by @kcalbxof in #236
## Installation


Expand Down
2 changes: 1 addition & 1 deletion noita-proxy/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion noita-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"
[package]
name = "noita-proxy"
description = "Noita Entangled Worlds companion app."
version = "0.31.0"
version = "0.31.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
3 changes: 1 addition & 2 deletions noita-proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ impl GameSettings {
}
ui.add_space(1.0);
{
let mut temp =
game_settings.no_notplayer.unwrap_or(def.no_notplayer);
let mut temp = game_settings.no_notplayer.unwrap_or(def.no_notplayer);
if ui.checkbox(&mut temp, "no minua").changed() {
game_settings.no_notplayer = Some(temp)
}
Expand Down
5 changes: 4 additions & 1 deletion noita-proxy/src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,10 @@ impl NetManager {
} else {
info!("No nickname chosen");
}
state.try_ws_write_option("friendly_fire", settings.friendly_fire.unwrap_or(def.friendly_fire));
state.try_ws_write_option(
"friendly_fire",
settings.friendly_fire.unwrap_or(def.friendly_fire),
);
state.try_ws_write_option("share_gold", settings.share_gold.unwrap_or(def.share_gold));
state.try_ws_write_option("debug", settings.debug_mode.unwrap_or(def.debug_mode));
state.try_ws_write_option(
Expand Down

0 comments on commit 809cc43

Please sign in to comment.