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

1.2.1: Allow use of apm_xgene temperatures #438

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "system76-power"
version = "1.2.0"
version = "1.2.1"
authors = ["Jeremy Soller <[email protected]>"]
edition = "2021"
rust-version = "1.75.0"
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
system76-power (1.2.1) jammy; urgency=medium

* Allow use of apm_xgene temperatures

-- Jeremy Soller <[email protected]> Tue, 20 Aug 2024 15:53:24 -0600

system76-power (1.2.0) jammy; urgency=medium

* Rewrite dbus interface with zbus
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ impl UPowerPowerProfiles {
async fn actions(&self) -> Vec<String> { vec![] }

#[dbus_interface(property)]
async fn version(&self) -> &str { "system76-power 1.2.0" }
async fn version(&self) -> &str { "system76-power 1.2.1" }
}

pub struct NetHadessPowerProfiles(UPowerPowerProfiles);
Expand Down
2 changes: 1 addition & 1 deletion src/fan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl FanDaemon {
"amdgpu" => self.amdgpus.push(hwmon),
"system76" => (), // TODO: Support laptops
"system76_io" | "system76_thelio_io" => self.platforms.push(hwmon),
"coretemp" | "k10temp" => self.cpus.push(hwmon),
"apm_xgene" | "coretemp" | "k10temp" => self.cpus.push(hwmon),
_ => (),
}
}
Expand Down
2 changes: 1 addition & 1 deletion zbus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "system76-power-zbus"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

[dependencies]
Expand Down
Loading