diff --git a/CHANGELOG.md b/CHANGELOG.md index afd77842..5b1a9049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,16 @@ 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.4.0] - 2021-04-11 ### Changed -- Display PNG images on AniMe with scale, position, angle, and brightness -- AniMe display parts split out to individual crate in preparation for publishing - on crates.io - Revert zbus to 1.9.1 - Use enum to show power states, and catch missing pci path for nvidia. -- Partial user-daemon for anime/per-key done, asusd-user. Includes asusd-user systemd unit. +- Partial user-daemon for anime/per-key done, `asusd-user`. Includes asusd-user systemd unit. - user-daemon provides dbus emthods to insert anime actions, remove from index, set leds on/off + + COnfig file is stored in `~/.config/rog/rog-user.cfg` +- AniMe display parts split out to individual crate in preparation for publishing + on crates.io # [3.3.0] - 2021-04-3 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 76b036ea..b5b31b02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -42,7 +42,7 @@ dependencies = [ [[package]] name = "asusctl" -version = "3.3.1" +version = "3.4.0" dependencies = [ "daemon", "gif", @@ -205,7 +205,7 @@ dependencies = [ [[package]] name = "daemon" -version = "3.3.1" +version = "3.4.0" dependencies = [ "env_logger", "intel-pstate", diff --git a/asusctl/Cargo.toml b/asusctl/Cargo.toml index a91133e8..3530cc05 100644 --- a/asusctl/Cargo.toml +++ b/asusctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asusctl" -version = "3.3.1" +version = "3.4.0" authors = ["Luke D Jones "] edition = "2018" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index bc0148eb..b56eb3d0 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daemon" -version = "3.3.1" +version = "3.4.0" license = "MPL-2.0" readme = "README.md" authors = ["Luke "]