From cd7e748c88d6018351d7a9bf3559f4194b494d72 Mon Sep 17 00:00:00 2001 From: "Luke D. Jones" Date: Thu, 21 Jul 2022 19:36:17 +1200 Subject: [PATCH] Prep new release --- CHANGELOG.md | 5 +++++ Cargo.lock | 8 ++++---- asusctl/Cargo.toml | 2 +- daemon/Cargo.toml | 2 +- daemon/src/ctrl_aura/zbus.rs | 2 +- rog-anime/Cargo.toml | 2 +- rog-aura/Cargo.toml | 2 +- rog-dbus/src/zbus_led.rs | 4 ++-- 8 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ca1f574..edbee198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased ] +## [4.3.0] - 2022-07-21 ### Added - Clear command for anime `asusctl anime --clear` will clear the display - Re-added support for LED power states on `0x1866` type keyboards ### Changed - Make rog-anime more error tolerent. Remove various asserts and return errors instead - Return error if a pixel-gif is larger than the anime-display dimensions +- Both Anime and Aura dbus interfaces are changed a little + - Aura power has changed, all power related settings are now in one method + - Anime methods will now return an error (if errored) + - /org/asuslinux/Led renamed to /org/asuslinux/Aura ## [4.2.1] - 2022-07-18 ### Added diff --git a/Cargo.lock b/Cargo.lock index d6f3aef3..28a53c01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "asusctl" -version = "4.2.1" +version = "4.3.0" dependencies = [ "daemon", "gif", @@ -278,7 +278,7 @@ dependencies = [ [[package]] name = "daemon" -version = "4.2.1" +version = "4.3.0" dependencies = [ "async-trait", "env_logger", @@ -1018,7 +1018,7 @@ dependencies = [ [[package]] name = "rog_anime" -version = "1.3.4" +version = "1.3.5" dependencies = [ "gif", "glam", @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "rog_aura" -version = "1.1.3" +version = "1.2.0" dependencies = [ "serde", "serde_derive", diff --git a/asusctl/Cargo.toml b/asusctl/Cargo.toml index 1a72d092..051c82d3 100644 --- a/asusctl/Cargo.toml +++ b/asusctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asusctl" -version = "4.2.1" +version = "4.3.0" authors = ["Luke D Jones "] edition = "2018" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 94a14c83..7845adad 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daemon" -version = "4.2.1" +version = "4.3.0" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/daemon/src/ctrl_aura/zbus.rs b/daemon/src/ctrl_aura/zbus.rs index 041913a1..6b5b4184 100644 --- a/daemon/src/ctrl_aura/zbus.rs +++ b/daemon/src/ctrl_aura/zbus.rs @@ -8,7 +8,7 @@ use super::controller::CtrlKbdLedZbus; #[async_trait] impl crate::ZbusAdd for CtrlKbdLedZbus { async fn add_to_server(self, server: &mut Connection) { - Self::add_to_server_helper(self, "/org/asuslinux/Led", server).await; + Self::add_to_server_helper(self, "/org/asuslinux/Aura", server).await; } } diff --git a/rog-anime/Cargo.toml b/rog-anime/Cargo.toml index aea7a9ae..6916bdda 100644 --- a/rog-anime/Cargo.toml +++ b/rog-anime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog_anime" -version = "1.3.4" +version = "1.3.5" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-aura/Cargo.toml b/rog-aura/Cargo.toml index ae985fc3..d885877b 100644 --- a/rog-aura/Cargo.toml +++ b/rog-aura/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog_aura" -version = "1.1.3" +version = "1.2.0" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-dbus/src/zbus_led.rs b/rog-dbus/src/zbus_led.rs index e6db6880..37b962fe 100644 --- a/rog-dbus/src/zbus_led.rs +++ b/rog-dbus/src/zbus_led.rs @@ -1,7 +1,7 @@ //! # DBus interface proxy for: `org.asuslinux.Daemon` //! //! This code was generated by `zbus-xmlgen` `1.0.0` from DBus introspection data. -//! Source: `Interface '/org/asuslinux/Led' from service 'org.asuslinux.Daemon' on system bus`. +//! Source: `Interface '/org/asuslinux/Aura' from service 'org.asuslinux.Daemon' on system bus`. //! //! You may prefer to adapt it, instead of using it verbatim. //! @@ -28,7 +28,7 @@ const BLOCKING_TIME: u64 = 40; // 100ms = 10 FPS, max 50ms = 20 FPS, 40ms = 25 F #[dbus_proxy( interface = "org.asuslinux.Daemon", - default_path = "/org/asuslinux/Led" + default_path = "/org/asuslinux/Aura" )] trait Led { /// NextLedMode method