diff --git a/CHANGELOG.md b/CHANGELOG.md index 2098886e..745bbcb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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] +### Changed +- Fix incorrect power-profile validation +- Update asusd-ledmodes.toml to support Asus Rog Strix G15 G513QE (@LordVicky) +- Update patch notes and links # [4.0.6] - 2021-11-01 ### Changed diff --git a/asusctl/src/main.rs b/asusctl/src/main.rs index d6cdc267..87a294fc 100644 --- a/asusctl/src/main.rs +++ b/asusctl/src/main.rs @@ -420,10 +420,6 @@ fn handle_profile( return Err(ProfileError::NotSupported.into()); } - println!("Warning: Profiles now depend on power-profiles-daemon v0.9+ which may not be in your install"); - println!(" If you have unexpected behaviour or have only two profiles in your desktop control"); - println!(" you need to manually install from https://gitlab.freedesktop.org/hadess/power-profiles-daemon"); - println!(" Fedora and Arch distros will get the update soon...\n"); if !cmd.next && !cmd.list && cmd.profile_set.is_none() && !cmd.profile_get { if !cmd.help { println!("Missing arg or command\n"); @@ -462,6 +458,9 @@ fn handle_fan_curve( ) -> Result<(), Box> { if !supported.fan_curves { println!("Fan-curves not supported by either this kernel or by the laptop."); + println!( + "This requires kernel 5.17 (unlreleased) or the fan curve patch listed in the readme." + ); return Err(ProfileError::NotSupported.into()); }