Skip to content

Commit

Permalink
Bump version to 8.10.3 and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Dec 23, 2020
1 parent c21b6d8 commit 9dc09cb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 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.10.3] - 2020-12-23

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

- Support the UHK 60 v2.
- Migrate the key cluster module MCU back from to MKL17Z32VFM4 to MKL03Z32VFK4.
- Add IS31FL3199 LED driver support which is utilized in the key cluster module.
- Change touchpad module I2C address.
- Increase trackball sensor resolution from 500 CPI to 1000 CPI.

## [8.10.2] - 2020-09-21

Device Protocol: 4.7.0 | 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 47 files
+1 −1 .github/workflows/ci.yml
+1 −1 .nvmrc
+7 −1 CHANGELOG.md
+3,688 −3,844 package-lock.json
+19 −22 package.json
+4 −1 packages/kboot/src/kboot.ts
+39 −48 packages/uhk-agent/package-lock.json
+2 −3 packages/uhk-agent/package.json
+1 −0 packages/uhk-agent/src/electron-main.ts
+1 −1 packages/uhk-agent/src/package.json
+1 −1 packages/uhk-agent/src/services/device.service.ts
+1 −0 packages/uhk-common/src/util/ipcEvents.ts
+113 −67 packages/uhk-web/package-lock.json
+5 −6 packages/uhk-web/package.json
+2 −2 packages/uhk-web/src/app/app.component.html
+6 −0 packages/uhk-web/src/app/app.component.scss
+8 −4 packages/uhk-web/src/app/app.routes.ts
+0 −5 packages/uhk-web/src/app/components/device/recovery-mode/recovery-mode.component.html
+1 −5 packages/uhk-web/src/app/components/device/recovery-mode/recovery-mode.component.ts
+5 −3 packages/uhk-web/src/app/components/linux-privilege-checker/linux-privilege-checker.component.html
+3 −1 packages/uhk-web/src/app/components/mac-privilege-checker/mac-privilege-checker.component.html
+3 −1 packages/uhk-web/src/app/components/missing-device/missing-device.component.html
+1 −1 packages/uhk-web/src/app/components/privilege-checker/privilege-checker.component.scss
+54 −18 packages/uhk-web/src/app/components/side-menu/side-menu.component.html
+41 −3 packages/uhk-web/src/app/components/side-menu/side-menu.component.scss
+19 −2 packages/uhk-web/src/app/components/side-menu/side-menu.component.ts
+6 −3 packages/uhk-web/src/app/components/uhk-message/uhk-message.component.html
+2 −0 packages/uhk-web/src/app/components/uhk-message/uhk-message.component.ts
+7 −0 packages/uhk-web/src/app/models/device-ui-states.ts
+1 −0 packages/uhk-web/src/app/models/index.ts
+3 −0 packages/uhk-web/src/app/models/side-menu-page-state.ts
+1 −0 packages/uhk-web/src/app/pages/loading-page/loading-device.page.ts
+1 −1 packages/uhk-web/src/app/pages/main-page/main.page.html
+5 −0 packages/uhk-web/src/app/services/device-renderer.service.ts
+0 −26 packages/uhk-web/src/app/services/uhk-device-loaded.guard.ts
+0 −2 packages/uhk-web/src/app/shared.module.ts
+9 −0 packages/uhk-web/src/app/store/actions/device.ts
+25 −0 packages/uhk-web/src/app/store/effects/device.ts
+2 −2 packages/uhk-web/src/app/store/effects/user-config.ts
+27 −9 packages/uhk-web/src/app/store/index.ts
+16 −2 packages/uhk-web/src/app/store/reducers/device.ts
+14 −3 packages/uhk-web/src/styles/_global.scss
+1 −0 packages/uhk-web/src/styles/_variables.scss
+2 −0 packages/uhk-web/src/styles/themes/_light.scss
+57 −72 packages/usb/package-lock.json
+2 −2 packages/usb/package.json
+1 −2 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.2",
"firmwareVersion": "8.10.3",
"deviceProtocolVersion": "4.7.0",
"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 2
#define FIRMWARE_PATCH_VERSION 3

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 7
Expand Down

0 comments on commit 9dc09cb

Please sign in to comment.