Skip to content

Commit

Permalink
Bump firmware version to 8.10.5, update changelog, package.json, and …
Browse files Browse the repository at this point in the history
…versions.h
  • Loading branch information
mondalaci committed Feb 15, 2021
1 parent 82ee736 commit f85f550
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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.10.5] - 2021-02-15

Device Protocol: 4.7.1 | Module Protocol: 4.1.0 | User Config: 4.2.0 | Hardware Config: 1.0.0

- Disable touchpad auto-sleep mode.
- Don't query touchpad delta values, resulting in a much faster refresh rate.
- Change UHK 60 v2 USB product ID from 0x6122 to 0x6124.
- Change USB product name to "UHK 60 v1" and "UHK 60 v2" according to the actual device.

## [8.10.4] - 2021-01-13

Device Protocol: 4.7.**1** | Module Protocol: 4.1.0 | User Config: 4.2.0 | Hardware Config: 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/agent
Submodule agent updated 68 files
+38 −0 .github/workflows/deploy-gh-pages.yml
+1 −1 .stylelintrc.json
+756 −852 package-lock.json
+9 −14 package.json
+7 −7 packages/uhk-agent/package-lock.json
+1 −3 packages/uhk-agent/package.json
+1 −4 packages/uhk-agent/src/electron-main.ts
+3 −25 packages/uhk-agent/src/services/device.service.ts
+0 −5 packages/uhk-agent/src/util/command-line.ts
+7 −2 packages/uhk-agent/src/util/reenumerate-and-exit.ts
+3 −2 packages/uhk-common/src/config-serializer/config-items/index.ts
+70 −0 packages/uhk-common/src/config-serializer/config-items/modules-default-configs.ts
+0 −4 packages/uhk-common/src/models/command-line-args.ts
+25 −0 packages/uhk-common/src/models/halves-info.ts
+2 −0 packages/uhk-common/src/models/index.ts
+4 −0 packages/uhk-common/src/models/left-slot-modules.ts
+6 −0 packages/uhk-common/src/models/right-slot-modules.ts
+0 −1 packages/uhk-usb/src/index.ts
+1 −0 packages/uhk-usb/src/models/index.ts
+10 −0 packages/uhk-usb/src/models/reenumerate-option.ts
+0 −89 packages/uhk-usb/src/uhk-blhost.ts
+26 −10 packages/uhk-usb/src/uhk-hid-device.ts
+21 −61 packages/uhk-usb/src/uhk-operations.ts
+1 −4 packages/uhk-usb/src/util.ts
+3,664 −3,299 packages/uhk-web/package-lock.json
+16 −16 packages/uhk-web/package.json
+0 −1 packages/uhk-web/src/app/components/keyboard/slider/keyboard-slider.component.ts
+13 −11 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.html
+16 −0 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.scss
+146 −46 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.ts
+52 −25 packages/uhk-web/src/app/components/svg/keys/svg-keyboard-key/svg-keyboard-key.component.html
+5 −0 packages/uhk-web/src/app/components/svg/keys/svg-keyboard-key/svg-keyboard-key.component.scss
+20 −7 packages/uhk-web/src/app/components/svg/keys/svg-keyboard-key/svg-keyboard-key.component.ts
+15 −7 packages/uhk-web/src/app/components/svg/keys/svg-keyboard-key/svg-keyboard-key.model.ts
+12 −6 packages/uhk-web/src/app/components/svg/module/svg-module.component.html
+19 −0 packages/uhk-web/src/app/components/svg/module/svg-module.component.ts
+131 −11 packages/uhk-web/src/app/components/svg/module/svg-module.model.ts
+9 −3 packages/uhk-web/src/app/components/svg/wrap/svg-keyboard-wrap.component.ts
+67 −2 packages/uhk-web/src/app/services/svg-module-provider.service.ts
+2 −2 packages/uhk-web/src/app/store/reducers/device.ts
+66 −8 packages/uhk-web/src/app/store/reducers/user-configuration.ts
+7 −0 packages/uhk-web/src/app/util/find-module-by-id.ts
+1 −0 packages/uhk-web/src/app/util/index.ts
+1 −1 packages/uhk-web/src/devices/uhk60-right/layout.svg
+0 −12 packages/uhk-web/src/modules/keycluster/module.svg
+0 −0 packages/uhk-web/src/modules/keyclusterleft/module.json
+19 −0 packages/uhk-web/src/modules/keyclusterleft/module.svg
+0 −0 packages/uhk-web/src/modules/touchpadright/module.json
+1 −1 packages/uhk-web/src/modules/touchpadright/module.svg
+0 −7 packages/uhk-web/src/modules/trackball/module.svg
+0 −0 packages/uhk-web/src/modules/trackballright/module.json
+13 −0 packages/uhk-web/src/modules/trackballright/module.svg
+0 −7 packages/uhk-web/src/modules/trackpoint/module.svg
+0 −0 packages/uhk-web/src/modules/trackpointright/module.json
+13 −0 packages/uhk-web/src/modules/trackpointright/module.svg
+1 −1 packages/uhk-web/src/modules/uhk60-left/layout-ansi.svg
+1 −1 packages/uhk-web/src/modules/uhk60-left/layout-iso.svg
+ packages/usb/blhost/linux/armv7l/blhost
+ packages/usb/blhost/linux/i686/blhost
+ packages/usb/blhost/linux/x86_64/blhost
+ packages/usb/blhost/mac/blhost
+ packages/usb/blhost/win/blhost.exe
+2 −1 packages/usb/get-module-state.ts
+6 −2 packages/usb/reenumerate.ts
+2 −3 packages/usb/src/uhk.ts
+ scripts/certs/mac-cert.p12.enc
+0 −7 scripts/copy-to-tmp-folder.js
+1 −1 scripts/release.js
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"commander": "^2.11.0",
"shelljs": "^0.7.8"
},
"firmwareVersion": "8.10.4",
"firmwareVersion": "8.10.5",
"deviceProtocolVersion": "4.7.1",
"moduleProtocolVersion": "4.1.0",
"userConfigVersion": "4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion shared/versions.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#define FIRMWARE_MAJOR_VERSION 8
#define FIRMWARE_MINOR_VERSION 10
#define FIRMWARE_PATCH_VERSION 4
#define FIRMWARE_PATCH_VERSION 5

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 7
Expand Down

0 comments on commit f85f550

Please sign in to comment.