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

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