Compare commits

..

1 Commits
3.4.0 ... 3.4.1

Author SHA1 Message Date
Luke D Jones
cc28cee8bd anime: fix init 2021-04-11 22:47:21 +12:00
5 changed files with 9 additions and 6 deletions

View File

@@ -5,6 +5,9 @@ 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
- Split out all aura functionality that isn't dependent on the daemon in to a
new crate `rog-aura`
# [3.4.0] - 2021-04-11
### Changed
@@ -12,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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.
- 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`
+ 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

4
Cargo.lock generated
View File

@@ -205,7 +205,7 @@ dependencies = [
[[package]]
name = "daemon"
version = "3.4.0"
version = "3.4.1"
dependencies = [
"env_logger",
"intel-pstate",
@@ -897,7 +897,7 @@ checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
[[package]]
name = "rog_anime"
version = "1.0.2"
version = "1.0.3"
dependencies = [
"gif",
"glam",

View File

@@ -1,6 +1,6 @@
[package]
name = "daemon"
version = "3.4.0"
version = "3.4.1"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]

View File

@@ -1,6 +1,6 @@
[package]
name = "rog_anime"
version = "1.0.2"
version = "1.0.3"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]

View File

@@ -8,7 +8,7 @@
//! Step 1 need to applied only on fresh system boot.
const INIT_STR: [u8; 15] = [
0x5e, b'A', b'S', b'U', b'S', b' ', b'T', b'E', b'C', b'H', b'.', b'I', b'N', b'C', b'.',
0x5e, b'A', b'S', b'U', b'S', b' ', b'T', b'e', b'c', b'h', b'.', b'I', b'n', b'c', b'.',
];
const PACKET_SIZE: usize = 640;
const DEV_PAGE: u8 = 0x5e;