mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
anime: fix init
This commit is contained in:
@@ -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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
# [3.4.0] - 2021-04-11
|
||||||
### Changed
|
### 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.
|
- 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
|
- 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
|
- AniMe display parts split out to individual crate in preparation for publishing
|
||||||
on crates.io
|
on crates.io
|
||||||
|
|
||||||
|
|||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -205,7 +205,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "daemon"
|
name = "daemon"
|
||||||
version = "3.4.0"
|
version = "3.4.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"intel-pstate",
|
"intel-pstate",
|
||||||
@@ -897,7 +897,7 @@ checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rog_anime"
|
name = "rog_anime"
|
||||||
version = "1.0.2"
|
version = "1.0.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"gif",
|
"gif",
|
||||||
"glam",
|
"glam",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "daemon"
|
name = "daemon"
|
||||||
version = "3.4.0"
|
version = "3.4.1"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["Luke <luke@ljones.dev>"]
|
authors = ["Luke <luke@ljones.dev>"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rog_anime"
|
name = "rog_anime"
|
||||||
version = "1.0.2"
|
version = "1.0.3"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["Luke <luke@ljones.dev>"]
|
authors = ["Luke <luke@ljones.dev>"]
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
//! Step 1 need to applied only on fresh system boot.
|
//! Step 1 need to applied only on fresh system boot.
|
||||||
|
|
||||||
const INIT_STR: [u8; 15] = [
|
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 PACKET_SIZE: usize = 640;
|
||||||
const DEV_PAGE: u8 = 0x5e;
|
const DEV_PAGE: u8 = 0x5e;
|
||||||
|
|||||||
Reference in New Issue
Block a user