mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
Prep for release
This commit is contained in:
@@ -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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
# [3.6.0] - 2021-05-15
|
||||||
### Changed
|
### Changed
|
||||||
- Add GX550L led modes
|
- Add GX550L led modes
|
||||||
- Don't save compute/vfio modes. Option in config for this is removed.
|
- 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)
|
for informational purposes only (will not apply on boot)
|
||||||
- Save state for LEDs enabled + sleep animation enabled
|
- Save state for LEDs enabled + sleep animation enabled
|
||||||
- Save state for AnimMe enabled + boot 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
|
# [3.5.2] - 2021-05-15
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -87,12 +87,7 @@ impl Config {
|
|||||||
.write(true)
|
.write(true)
|
||||||
.create(true)
|
.create(true)
|
||||||
.open(&CONFIG_PATH)
|
.open(&CONFIG_PATH)
|
||||||
.unwrap_or_else(|_| {
|
.unwrap_or_else(|_| panic!("The directory /etc/asusd/ is missing")); // okay to cause panic here
|
||||||
panic!(
|
|
||||||
"The file {} or directory /etc/asusd/ is missing",
|
|
||||||
CONFIG_PATH
|
|
||||||
)
|
|
||||||
}); // okay to cause panic here
|
|
||||||
let mut buf = String::new();
|
let mut buf = String::new();
|
||||||
if let Ok(read_len) = file.read_to_string(&mut buf) {
|
if let Ok(read_len) = file.read_to_string(&mut buf) {
|
||||||
if read_len == 0 {
|
if read_len == 0 {
|
||||||
|
|||||||
Reference in New Issue
Block a user