diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c9b139..e8ed90a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,15 +10,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for GU604V LED modes - Support for GX650P LED modes - Support for GV604I LED modes -- Add device code for the Z13 ACRNM keyboard -- Add device code for the plain Z13 keyboard +- Support for FX516P LED modes (this laptop still has further issues, will require a patched kernel when patch is ready) +- Add device code for the Z13 ACRNM keyboard (requires kernel patch, in progress) +- Support for GV301VIC LED modes +- Add device code for the plain Z13 keyboard (requires kernel patch, in progress) +- Support for GV301V LED modes ### Changed - Adjustments to Anime system events thread - Add "sleep" animetion config options to anime config - rog-control-center dark/light mode persistency - Adjustments to keyboard detection - Better support of using supergfxctl when available (tray icon and menu) -- Check supergfx version before enabling use in tray +- Check supergfx version before enabling use in tray (require 5.1.0+) - Update allowed Aura modes on asusd restart if changed - Set tray icon for dgpu to "On" if in Vfio mode to prevent confusion - Add support for Logout/Reboot in notification for KDE diff --git a/Cargo.lock b/Cargo.lock index 17086843..e71b8b89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" [[package]] name = "asusctl" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "daemon", @@ -677,7 +677,7 @@ dependencies = [ [[package]] name = "config-traits" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "log", @@ -768,7 +768,7 @@ dependencies = [ [[package]] name = "daemon" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "async-trait", "cargo-husky", @@ -792,7 +792,7 @@ dependencies = [ [[package]] name = "daemon-user" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "config-traits", @@ -2547,7 +2547,7 @@ checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "rog-control-center" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "daemon", @@ -2580,7 +2580,7 @@ dependencies = [ [[package]] name = "rog_anime" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "gif", @@ -2597,7 +2597,7 @@ dependencies = [ [[package]] name = "rog_aura" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "log", @@ -2610,7 +2610,7 @@ dependencies = [ [[package]] name = "rog_dbus" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "rog_anime", @@ -2622,7 +2622,7 @@ dependencies = [ [[package]] name = "rog_platform" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "concat-idents", @@ -2639,7 +2639,7 @@ dependencies = [ [[package]] name = "rog_profiles" -version = "4.6.1-RC1" +version = "4.6.1" dependencies = [ "cargo-husky", "serde", diff --git a/Cargo.toml b/Cargo.toml index 62783844..f1e7b515 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = ["asusctl", "config-traits", "daemon", "daemon-user", "rog-platform", "rog-dbus", "rog-anime", "rog-aura", "rog-profiles", "rog-control-center"] [workspace.package] -version = "4.6.1-RC1" +version = "4.6.1" [workspace.dependencies] async-trait = "^0.1" diff --git a/rog-aura/data/aura_support.ron b/rog-aura/data/aura_support.ron index 30e73ac5..89a2714c 100644 --- a/rog-aura/data/aura_support.ron +++ b/rog-aura/data/aura_support.ron @@ -41,6 +41,13 @@ basic_zones: [], advanced_type: None, ), + ( + board_name: "FX516P", + layout_name: "fa506i", + basic_modes: [Static, Breathe, Strobe], + basic_zones: [], + advanced_type: None, + ), ( board_name: "G512", layout_name: "g512", @@ -433,6 +440,20 @@ basic_zones: [], advanced_type: None, ), + ( + board_name: "GV301V", + layout_name: "ga401q", + basic_modes: [Static, Breathe, Pulse], + basic_zones: [], + advanced_type: None, + ), + ( + board_name: "GV301VIC", + layout_name: "ga401q", + basic_modes: [Static, Breathe, Pulse], + basic_zones: [], + advanced_type: None, + ), ( board_name: "GV601R", layout_name: "ga401q", @@ -496,4 +517,18 @@ basic_zones: [], advanced_type: None, ), + ( + board_name: "GZ301V", + layout_name: "ga401q", + basic_modes: [Static, Breathe, Pulse], + basic_zones: [], + advanced_type: None, + ), + ( + board_name: "GZ301VIC", + layout_name: "ga401q", + basic_modes: [Static, Breathe, Pulse], + basic_zones: [], + advanced_type: None, + ), ]) \ No newline at end of file