From 1b9ec89e209d9b506d196ac2486871217418b24c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 10 Apr 2018 22:32:11 +0200 Subject: [PATCH] Bump firmware version to 8.1.6 - Update package.json, changelog, versions.h --- CHANGELOG.md | 10 ++++++++++ lib/agent | 2 +- scripts/package.json | 4 ++-- shared/versions.h | 4 ++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba923b7..54f8ab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to the [UHK Versioning](VERSIONING.md) conventions. +## [8.1.6] - 2018-04-10 + +Device Protocol: 4.**3.0** | Module Protocol: 4.0.0 | User Config: 4.0.0 | Hardware Config: 1.0.0 + +- Change the scheduling of USB reports which changes mouse pointer speeds. +- Disable LEDs while the host sleeps. +- Make any key wake up the host while it sleeps. +- Add UsbCommand_SwitchKeymap(). `DEVICEPROTOCOL:MINOR` +- Make GCC optimize the release builds for execution speed (-O3). + ## [8.1.5] - 2018-04-04 Device Protocol: 4.2.0 | Module Protocol: 4.0.0 | User Config: 4.0.0 | Hardware Config: 1.0.0 diff --git a/lib/agent b/lib/agent index b8f35df..9b815ed 160000 --- a/lib/agent +++ b/lib/agent @@ -1 +1 @@ -Subproject commit b8f35df1556a32325daf5cb470f77bd894539e53 +Subproject commit 9b815ed9c1170b8d5ead206926b6986e619aad82 diff --git a/scripts/package.json b/scripts/package.json index d227571..3f09cce 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,8 +15,8 @@ "commander": "^2.11.0", "shelljs": "^0.7.8" }, - "firmwareVersion": "8.1.5", - "deviceProtocolVersion": "4.2.0", + "firmwareVersion": "8.1.6", + "deviceProtocolVersion": "4.3.0", "moduleProtocolVersion": "4.0.0", "userConfigVersion": "4.0.0", "hardwareConfigVersion": "1.0.0", diff --git a/shared/versions.h b/shared/versions.h index 65dc883..2b90bc1 100644 --- a/shared/versions.h +++ b/shared/versions.h @@ -20,10 +20,10 @@ #define FIRMWARE_MAJOR_VERSION 8 #define FIRMWARE_MINOR_VERSION 1 - #define FIRMWARE_PATCH_VERSION 5 + #define FIRMWARE_PATCH_VERSION 6 #define DEVICE_PROTOCOL_MAJOR_VERSION 4 - #define DEVICE_PROTOCOL_MINOR_VERSION 2 + #define DEVICE_PROTOCOL_MINOR_VERSION 3 #define DEVICE_PROTOCOL_PATCH_VERSION 0 #define MODULE_PROTOCOL_MAJOR_VERSION 4