diff --git a/last_release_notes.md b/last_release_notes.md index 790f5f55..d8b46992 100644 --- a/last_release_notes.md +++ b/last_release_notes.md @@ -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 diff --git a/noita-proxy/Cargo.lock b/noita-proxy/Cargo.lock index db645daa..36fddd1b 100644 --- a/noita-proxy/Cargo.lock +++ b/noita-proxy/Cargo.lock @@ -2271,7 +2271,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "noita-proxy" -version = "0.31.0" +version = "0.31.1" dependencies = [ "argh", "bitcode", diff --git a/noita-proxy/Cargo.toml b/noita-proxy/Cargo.toml index bc35d358..95637fd8 100644 --- a/noita-proxy/Cargo.toml +++ b/noita-proxy/Cargo.toml @@ -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 diff --git a/noita-proxy/src/lib.rs b/noita-proxy/src/lib.rs index 63ff8fc6..91ad036c 100644 --- a/noita-proxy/src/lib.rs +++ b/noita-proxy/src/lib.rs @@ -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) } diff --git a/noita-proxy/src/net.rs b/noita-proxy/src/net.rs index ae5a02c9..5d939ed5 100644 --- a/noita-proxy/src/net.rs +++ b/noita-proxy/src/net.rs @@ -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(