Prep release

This commit is contained in:
Luke
2020-06-29 21:50:22 +12:00
parent 32e9e63809
commit b751ceb29e
7 changed files with 63 additions and 10 deletions

31
debian/changelog vendored
View File

@@ -1,3 +1,34 @@
rog-core (0.13.0) focal; urgency=medium
- Dbus command `LedWriteBytes` renamed to `SetKeyBacklight`
- Dbus command `SetKeyBacklight` will now take a JSON string instead of an array of bytes
+ Example:
```
{
"Breathe": {
"help": false,
"colour": [
254,
5,
171
],
"colour2": [
0,
156,
156
],
"speed": "High"
}
}
```
note that `help` is unused but required as a side-effect of using `gumdrop`
for CLI.
- Dbus signal `LedCancelEffect` renamed to `KeyBacklightChanged`
- Config file is now in JSON format, and will store only the LED modes that a laptop
supports rather than the whole set
-- Luke Jones <luke@ljones.dev> Mon, 29 Jun 2020 21:45:51 +1200
rog-core (0.12.2) focal; urgency=medium
* Changed "FanMode", "ChargeLimit" to "SetFanMode", "SetChargeLimit"