Prep new release

Closes #30, #31, #32
This commit is contained in:
Luke
2020-07-21 21:15:13 +12:00
parent 73ab17bf7d
commit bffe40d764
6 changed files with 15 additions and 5 deletions

View File

@@ -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

2
Cargo.lock generated
View File

@@ -710,7 +710,7 @@ dependencies = [
[[package]]
name = "rog-daemon"
version = "0.15.1"
version = "0.15.2"
dependencies = [
"dbus",
"dbus-tokio",

7
debian/changelog vendored
View File

@@ -1,3 +1,10 @@
rog-core (0.15.2) focal; urgency=medium
- Add G532 support
- Change GX531 to support all LED modes
-- Luke Jones <luke@ljones.dev> Tue, 21 Jul 2020 21:13:57 +1200
rog-core (0.15.1) focal; urgency=medium
- Use correct keycode for calc

View File

@@ -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 <luke@ljones.dev>"]

View File

@@ -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,

View File

@@ -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 {