Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
051f4f9e2c chore(dev): activate [patch.libcosmic] + version marker +perf-bundle-v2
Includes silencing unused-var warning in network-manager subscription
(ap -> _ap). Pre-yoda-fork snapshot.
2026-04-22 21:14:48 +02:00
4 changed files with 24 additions and 8 deletions

18
Cargo.lock generated
View file

@ -1660,7 +1660,7 @@ dependencies = [
[[package]]
name = "cosmic-settings"
version = "1.0.2"
version = "1.0.2+perf-bundle-v2"
dependencies = [
"accounts-zbus",
"anyhow",
@ -9591,3 +9591,19 @@ dependencies = [
"syn 2.0.114",
"winnow 0.7.14",
]
[[patch.unused]]
name = "cosmic-config"
version = "1.0.0"
[[patch.unused]]
name = "cosmic-theme"
version = "1.0.0"
[[patch.unused]]
name = "iced_futures"
version = "0.14.0"
[[patch.unused]]
name = "libcosmic"
version = "1.0.0"

View file

@ -62,11 +62,11 @@ debug = true
# cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon//", branch = "input_nobuild" }
# For development and testing purposes
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }
# iced_futures = { path = "../libcosmic/iced/futures" }
[patch.'https://github.com/pop-os/libcosmic']
libcosmic = { path = "/home/lionel/Devels/libcosmic" }
cosmic-config = { path = "/home/lionel/Devels/libcosmic/cosmic-config" }
cosmic-theme = { path = "/home/lionel/Devels/libcosmic/cosmic-theme" }
iced_futures = { path = "/home/lionel/Devels/libcosmic/iced/futures" }
# [patch.'https://github.com/pop-os/dbus-settings-bindings']
# cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" }

View file

@ -1,6 +1,6 @@
[package]
name = "cosmic-settings"
version = "1.0.2"
version = "1.0.2+perf-bundle-v2"
edition = "2024"
license = "GPL-3.0-only"
publish = false

View file

@ -925,7 +925,7 @@ impl NetworkManagerState {
}
}
let Some(ap) = self
let Some(_ap) = self
.wireless_access_points
.iter()
.find(|ap| ap.ssid.as_ref() == ssid && ap.hw_address == hw_address)