From 6f2b45c27c7109ea4c1b212714dc04988207bb01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 4 Oct 2018 22:46:01 +0200 Subject: [PATCH] Update changelog, package.json, versions.h and Agent reference. --- CHANGELOG.md | 12 ++++++++++++ lib/agent | 2 +- scripts/package.json | 4 ++-- shared/versions.h | 6 +++--- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71fcd31d0..4dc7836df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.5.0] - 2018-10-04 + +Device Protocol: 4.**5.0** | Module Protocol: 4.0.0 | User Config: 4.1.0 | Hardware Config: 1.0.0 + +- Send primary role modifiers consistently. +- Only allow layer switcher keys to deactivate toggled layers. +- Deactivate secondary roles when switching keymaps. +- Use the correct scancode so that commas are outputted for macros. +- Move the pointer not by 1 but by 5 pixels when testing the USB stack to make the pointer easier to see. +- Expose UsbReportUpdateSemaphore via UsbCommand_{Get,Set}Variable() `DEVICEPROTOCOL:MINOR` +- Extract CurrentTime and remove Timer_{Get,Set}CurrentTime() + ## [8.4.5] - 2018-08-21 Device Protocol: 4.4.0 | Module Protocol: 4.0.0 | User Config: 4.1.0 | Hardware Config: 1.0.0 diff --git a/lib/agent b/lib/agent index b41f14192..6e2b1fb18 160000 --- a/lib/agent +++ b/lib/agent @@ -1 +1 @@ -Subproject commit b41f14192a2666cf7f6b18034338bcf4254c943e +Subproject commit 6e2b1fb18d783d63dfb53fb717218562711ef580 diff --git a/scripts/package.json b/scripts/package.json index 4ad6e2da4..ae44f4e72 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,8 +15,8 @@ "commander": "^2.11.0", "shelljs": "^0.7.8" }, - "firmwareVersion": "8.4.5", - "deviceProtocolVersion": "4.4.0", + "firmwareVersion": "8.5.0", + "deviceProtocolVersion": "4.5.0", "moduleProtocolVersion": "4.0.0", "userConfigVersion": "4.1.0", "hardwareConfigVersion": "1.0.0", diff --git a/shared/versions.h b/shared/versions.h index adc48e642..f9315c716 100644 --- a/shared/versions.h +++ b/shared/versions.h @@ -19,11 +19,11 @@ // Variables: #define FIRMWARE_MAJOR_VERSION 8 - #define FIRMWARE_MINOR_VERSION 4 - #define FIRMWARE_PATCH_VERSION 5 + #define FIRMWARE_MINOR_VERSION 5 + #define FIRMWARE_PATCH_VERSION 0 #define DEVICE_PROTOCOL_MAJOR_VERSION 4 - #define DEVICE_PROTOCOL_MINOR_VERSION 4 + #define DEVICE_PROTOCOL_MINOR_VERSION 5 #define DEVICE_PROTOCOL_PATCH_VERSION 0 #define MODULE_PROTOCOL_MAJOR_VERSION 4