Skip to content

Commit 35bfb10

Browse files
committed
release v0.4.3
1 parent e27fc37 commit 35bfb10

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Cargo.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "oscavmgr"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
edition = "2021"
55

66
[dependencies]
77
env_logger = "0.11.3"
88
glam = { version = "0.29.0", features = ["mint"] }
99
glob = "0.3.1"
1010
log = "0.4.19"
11-
mdns-sd = "0.11.1"
11+
mdns-sd = "0.12.0"
1212
once_cell = "1.18.0"
1313
regex = "1.10.2"
1414
reqwest = { version = "0.12.3", features = [
@@ -22,7 +22,7 @@ strum = { version = "0.26.2", features = ["derive"] }
2222
tokio = { version = "1.32.0", features = ["full"] }
2323
alvr_events = { git = "https://github.com/alvr-org/ALVR.git", optional = true, branch = "v20" }
2424
alvr_common = { git = "https://github.com/alvr-org/ALVR.git", optional = true, branch = "v20" }
25-
sysinfo = { version = "0.31.2", optional = true }
25+
sysinfo = { version = "0.33.0", optional = true }
2626
websocket-lite = { version = "0.5.2", optional = true, features = [] }
2727
anyhow = "1.0.82"
2828
indicatif = "0.17.8"

src/core/ext_tracking/alvr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ fn receive_until_err(
200200
alvr_events::EventType::ServerRequestsSelfRestart => {
201201
log::warn!("ALVR: Server requested self restart");
202202
// kill steamvr processes and let auto-restart handle it
203-
system.refresh_processes(ProcessesToUpdate::All);
203+
system.refresh_processes(ProcessesToUpdate::All, true);
204204
system.processes().values().for_each(|p| {
205205
for vrp in VR_PROCESSES.iter() {
206206
if p.name().to_string_lossy().contains(vrp) {

0 commit comments

Comments
 (0)