From bffe40d764fe0fd7ca629616908301665e18f518 Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 21 Jul 2020 21:15:13 +1200 Subject: [PATCH] Prep new release Closes #30, #31, #32 --- CHANGELOG.md | 1 + Cargo.lock | 2 +- debian/changelog | 7 +++++++ rog-core/Cargo.toml | 2 +- rog-core/src/laptops.rs | 6 ++++-- rog-core/src/main.rs | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e042e5da..fed9d93c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 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] +## [0.15.2] - 2020-07-21 ## Changed - GX531 now supports same LED features as GX502 diff --git a/Cargo.lock b/Cargo.lock index 116983ff..2fe8adad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -710,7 +710,7 @@ dependencies = [ [[package]] name = "rog-daemon" -version = "0.15.1" +version = "0.15.2" dependencies = [ "dbus", "dbus-tokio", diff --git a/debian/changelog b/debian/changelog index e55e49f1..31877382 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +rog-core (0.15.2) focal; urgency=medium + + - Add G532 support + - Change GX531 to support all LED modes + + -- Luke Jones Tue, 21 Jul 2020 21:13:57 +1200 + rog-core (0.15.1) focal; urgency=medium - Use correct keycode for calc diff --git a/rog-core/Cargo.toml b/rog-core/Cargo.toml index 5fc3926d..f50e7693 100644 --- a/rog-core/Cargo.toml +++ b/rog-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog-daemon" -version = "0.15.1" +version = "0.15.2" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-core/src/laptops.rs b/rog-core/src/laptops.rs index af80e28b..4695d7c9 100644 --- a/rog-core/src/laptops.rs +++ b/rog-core/src/laptops.rs @@ -112,11 +112,13 @@ fn select_1866_device(prod: u16) -> LaptopBase { // GA502 } else if board_name.starts_with("GA502") || board_name.starts_with("GU502") - || board_name.starts_with("G532") { info!("No RGB control available"); // GX502, G712 - } else if board_name.starts_with("GX502") || board_name.starts_with("GX531") { + } else if board_name.starts_with("GX502") + || board_name.starts_with("GX531") + || board_name.starts_with("G532") + { laptop.supported_modes = vec![ SINGLE, BREATHING, STROBE, RAINBOW, STAR, RAIN, HIGHLIGHT, LASER, RIPPLE, PULSE, COMET, FLASH, RGB, diff --git a/rog-core/src/main.rs b/rog-core/src/main.rs index d29db75b..30b97109 100644 --- a/rog-core/src/main.rs +++ b/rog-core/src/main.rs @@ -9,7 +9,7 @@ use rog_client::{ }; use std::io::Write; -static VERSION: &str = "0.15.1"; +static VERSION: &str = "0.15.2"; #[derive(Options)] struct CLIStart {