diff --git a/CHANGELOG.md b/CHANGELOG.md index 402208f3..7826d1e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,12 @@ 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] + +# [3.5.0] - 2021-04-25 ### Changed + Keyboard: - Split out all aura functionality that isn't dependent on the daemon in to a - new crate `rog-aura` + new crate `rog-aura` (incomplete) - Keyboard LED control now includes: + Enable/disable LED's while laptop is awake + Enable/disable LED animation while laptop is suspended and AC plugged in diff --git a/Cargo.lock b/Cargo.lock index f5f62936..2f194747 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -42,7 +42,7 @@ dependencies = [ [[package]] name = "asusctl" -version = "3.4.0" +version = "3.5.0" dependencies = [ "daemon", "gif", @@ -206,7 +206,7 @@ dependencies = [ [[package]] name = "daemon" -version = "3.4.1" +version = "3.5.0" dependencies = [ "env_logger", "intel-pstate", @@ -230,7 +230,7 @@ dependencies = [ [[package]] name = "daemon-user" -version = "1.0.0" +version = "1.1.0" dependencies = [ "dirs 3.0.1", "rog_anime", @@ -914,7 +914,7 @@ dependencies = [ [[package]] name = "rog_aura" -version = "1.0.0" +version = "1.0.1" dependencies = [ "serde", "serde_derive", diff --git a/asusctl/Cargo.toml b/asusctl/Cargo.toml index 77feedda..ce2431d8 100644 --- a/asusctl/Cargo.toml +++ b/asusctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asusctl" -version = "3.4.0" +version = "3.5.0" authors = ["Luke D Jones "] edition = "2018" diff --git a/daemon-user/Cargo.toml b/daemon-user/Cargo.toml index b491607b..ecb8ca57 100644 --- a/daemon-user/Cargo.toml +++ b/daemon-user/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daemon-user" -version = "1.0.0" +version = "1.1.0" authors = ["Luke D Jones "] edition = "2018" description = "Usermode daemon for user settings, anime, per-key lighting" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 2d32a3bd..b48132a8 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daemon" -version = "3.4.1" +version = "3.5.0" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-aura/Cargo.toml b/rog-aura/Cargo.toml index 31d7e0f1..0bf9ff42 100644 --- a/rog-aura/Cargo.toml +++ b/rog-aura/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog_aura" -version = "1.0.0" +version = "1.0.1" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-dbus/src/zbus_profile.rs b/rog-dbus/src/zbus_profile.rs index c5dde413..994e2bfd 100644 --- a/rog-dbus/src/zbus_profile.rs +++ b/rog-dbus/src/zbus_profile.rs @@ -35,7 +35,7 @@ trait Daemon { /// NextProfile method fn next_profile(&self) -> zbus::Result<()>; - /// Profile method + /// Profile, get the active profile fn profile(&self) -> zbus::Result; /// Profiles method