Skip to content

Commit

Permalink
Update changelog, package.json and versions.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Feb 16, 2020
1 parent 6a7cdee commit 97ce994
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0] - 2020-02-16

Device Protocol: 4.**7.0** | Module Protocol: 4.1.0 | User Config: 4.1.1 | Hardware Config: 1.0.0

- Prevent deadlocks and races in USB semaphores. If your UHK frooze every now and then, it shouldn't happen again.
- Implement mouse buttons 4-8.
- Make arrow scancodes stick their modifiers.
- Implement functional trackpoint firmware.
- Expose toggled layer via the GetKeyboardState USB command. `DEVICEPROTOCOL:MINOR`

## [8.7.1] - 2020-01-07

Device Protocol: 4.6.0 | Module Protocol: 4.1.0 | User Config: 4.1.1 | Hardware Config: 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/agent
Submodule agent updated 32 files
+0 −0 .metadata_never_index
+1 −1 .travis.yml
+9 −0 CHANGELOG.md
+798 −627 package-lock.json
+6 −6 package.json
+126 −56 packages/uhk-agent/package-lock.json
+2 −1 packages/uhk-agent/package.json
+1 −0 packages/uhk-agent/src/custom_types/command-line-usage.d.ts
+7 −12 packages/uhk-agent/src/electron-main.ts
+2 −2 packages/uhk-agent/src/models/command-line-inputs.ts
+1 −1 packages/uhk-agent/src/package.json
+1 −1 packages/uhk-agent/src/services/app.service.ts
+1 −1 packages/uhk-agent/src/services/device.service.ts
+47 −0 packages/uhk-agent/src/util/command-line.ts
+1 −0 packages/uhk-agent/src/util/index.ts
+11 −3 packages/uhk-common/src/models/command-line-args.ts
+78 −103 packages/uhk-usb/package-lock.json
+1 −1 packages/uhk-usb/package.json
+5 −0 packages/uhk-usb/src/uhk-hid-device.ts
+0 −1 packages/uhk-web/src/app/components/device/configuration/device-configuration.component.ts
+2 −2 packages/uhk-web/src/app/components/device/firmware/device-firmware.component.html
+3 −3 packages/uhk-web/src/app/components/device/firmware/device-firmware.component.ts
+1 −1 packages/uhk-web/src/app/components/device/recovery-mode/recovery-mode.component.html
+3 −3 packages/uhk-web/src/app/components/device/recovery-mode/recovery-mode.component.ts
+6 −0 packages/uhk-web/src/app/components/macro/action-editor/tab/mouse/macro-mouse.component.scss
+11 −7 packages/uhk-web/src/app/components/macro/item/macro-item.component.ts
+2 −2 packages/uhk-web/src/app/components/side-menu/side-menu.component.html
+7 −2 packages/uhk-web/src/app/components/user-configuration-history/user-configuration-history.component.html
+6 −2 packages/uhk-web/src/app/store/effects/device.ts
+26 −4 packages/uhk-web/src/app/store/index.ts
+1 −1 packages/uhk-web/src/app/store/reducers/app.reducer.ts
+4 −0 packages/uhk-web/src/styles.scss
4 changes: 2 additions & 2 deletions scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"commander": "^2.11.0",
"shelljs": "^0.7.8"
},
"firmwareVersion": "8.7.1",
"deviceProtocolVersion": "4.6.0",
"firmwareVersion": "8.8.0",
"deviceProtocolVersion": "4.7.0",
"moduleProtocolVersion": "4.1.0",
"userConfigVersion": "4.1.1",
"hardwareConfigVersion": "1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions shared/versions.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
// Variables:

#define FIRMWARE_MAJOR_VERSION 8
#define FIRMWARE_MINOR_VERSION 7
#define FIRMWARE_PATCH_VERSION 1
#define FIRMWARE_MINOR_VERSION 8
#define FIRMWARE_PATCH_VERSION 0

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 6
#define DEVICE_PROTOCOL_MINOR_VERSION 7
#define DEVICE_PROTOCOL_PATCH_VERSION 0

#define MODULE_PROTOCOL_MAJOR_VERSION 4
Expand Down

0 comments on commit 97ce994

Please sign in to comment.