From ef7e2135bf32c4a6f7823969d4a8764c11a303e6 Mon Sep 17 00:00:00 2001 From: "Luke D. Jones" Date: Mon, 24 May 2021 22:10:30 +1200 Subject: [PATCH] Prep for release --- CHANGELOG.md | 8 ++++++++ daemon/src/config.rs | 7 +------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b09239f5..4ca5c182 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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.6.0] - 2021-05-15 ### Changed - Add GX550L led modes - Don't save compute/vfio modes. Option in config for this is removed. @@ -12,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 for informational purposes only (will not apply on boot) - Save state for LEDs enabled + sleep animation enabled - Save state for AnimMe enabled + boot animation enabled +- Add extra config options and dbus methods +- Add power state signals for anime and led +- Refactor to use channels for dbus signal handler send/recv +- Split out profiles independant parts to a rog-profiles crate +- Cleanup dependencies +- Fix some dbus Supported issues # [3.5.2] - 2021-05-15 ### Changed diff --git a/daemon/src/config.rs b/daemon/src/config.rs index a1792353..8b34693d 100644 --- a/daemon/src/config.rs +++ b/daemon/src/config.rs @@ -87,12 +87,7 @@ impl Config { .write(true) .create(true) .open(&CONFIG_PATH) - .unwrap_or_else(|_| { - panic!( - "The file {} or directory /etc/asusd/ is missing", - CONFIG_PATH - ) - }); // okay to cause panic here + .unwrap_or_else(|_| panic!("The directory /etc/asusd/ is missing")); // okay to cause panic here let mut buf = String::new(); if let Ok(read_len) = file.read_to_string(&mut buf) { if read_len == 0 {