Compare commits

..

3 Commits

Author SHA1 Message Date
Luke D Jones 4cdb06959b Bump rog-fan-curve to new versiont o support GA401IV 2020-09-10 22:52:17 +12:00
Luke D Jones 781ad30eb5 Merge branch 'fluke/fixup' into next 2020-09-10 21:58:11 +12:00
Luke D Jones 84d056f2ed Fix AMD turbo setting 2020-09-10 21:56:22 +12:00
5 changed files with 18 additions and 9 deletions
+9
View File
@@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
# [1.1.2] - 2020-09-10
### Changed
- Bump rog-fan-curve to new versiont o support GA401IV
# [1.1.1] - 2020-09-10
### Changed
- Correction to AMD turbo setting
# [1.1.0] - 2020-09-10
### Changed
- Uses string instead of debug print for some errors
Generated
+5 -5
View File
@@ -31,7 +31,7 @@ dependencies = [
[[package]]
name = "asus-nb-ctrl"
version = "1.1.0"
version = "1.1.2"
dependencies = [
"asus-nb",
"async-trait",
@@ -367,9 +367,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.76"
version = "0.2.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "755456fae044e6fa1ebbbd1b3e902ae19e73097ed4ed87bb79934a867c007bc3"
checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
[[package]]
name = "libdbus-sys"
@@ -635,9 +635,9 @@ checksum = "cabe4fa914dec5870285fa7f71f602645da47c486e68486d2b4ceb4a343e90ac"
[[package]]
name = "rog_fan_curve"
version = "0.1.4"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38efab84f3f5a9f4ff26eb916b32810a263eb2d340d62acb8d64d8a37795c5b9"
checksum = "b9d3867a0df47bf57c6eebe8b2fb3c2e5c09586a23c715cd7963c2f090c9983f"
dependencies = [
"serde",
]
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "asus-nb-ctrl"
version = "1.1.0"
version = "1.1.2"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]
@@ -45,6 +45,6 @@ toml = "0.4.6"
# Device control
sysfs-class = "^0.1.2" # used for backlight control and baord ID
rog_fan_curve = { version = "0.1.4", features = ["serde"] }
rog_fan_curve = { version = "0.1.5", features = ["serde"] }
# cpu power management
intel-pstate = "^0.2.1"
+1 -1
View File
@@ -262,7 +262,7 @@ impl CtrlFanAndCPU {
err
})?;
let boost = if mode_config.turbo { "0" } else { "1" }; // opposite of Intel
let boost = if mode_config.turbo { "1" } else { "0" }; // opposite of Intel
file.write_all(boost.as_bytes())
.unwrap_or_else(|err| error!("Could not write to {}, {}", AMD_BOOST_PATH, err));
info!("AMD CPU Turbo: {}", boost);
+1 -1
View File
@@ -23,7 +23,7 @@ use std::sync::Arc;
use tokio::sync::{mpsc::Receiver, Mutex};
use tokio::task::JoinHandle;
pub static VERSION: &str = "1.1.0";
pub static VERSION: &str = "1.1.2";
use ::dbus::{nonblock::SyncConnection, tree::Signal};