Skip to content

Commit

Permalink
1.2.1: Allow use of apm_xgene temperatures
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Aug 22, 2024
1 parent 03a9495 commit 8b9184c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
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 <jackpot51@gmail.com>"]
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 <jeremy@system76.com> 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

0 comments on commit 8b9184c

Please sign in to comment.