Skip to content

Commit

Permalink
Bump version to 8.10.2 and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Sep 20, 2020
1 parent 9cf9420 commit 58b6310
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.2] - 2020-09-21

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

- Migrate key cluster module MCU from MKL03Z32VFK4 to MKL17Z32VFM4.
- Fix trackball module right button port.
- Handle touchpad module single tap, two finger tap, and scroll events.

## [8.10.1] - 2020-06-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 81 files
+3 −0 .github/workflows/ci.yml
+1 −0 .gitignore
+33 −2 CHANGELOG.md
+2,795 −1,912 package-lock.json
+22 −21 package.json
+6 −41 packages/kboot/package-lock.json
+2 −2 packages/kboot/package.json
+2 −1 packages/kboot/src/kboot.ts
+55 −62 packages/uhk-agent/package-lock.json
+3 −3 packages/uhk-agent/package.json
+38 −12 packages/uhk-agent/src/electron-main.ts
+1 −1 packages/uhk-agent/src/package.json
+4 −4 packages/uhk-agent/src/polyfills.ts
+1 −1 packages/uhk-agent/src/services/app-update.service.ts
+3 −2 packages/uhk-agent/src/services/logger.service.ts
+8 −0 packages/uhk-agent/src/util/command-line.ts
+1 −0 packages/uhk-agent/src/util/index.ts
+74 −0 packages/uhk-agent/src/util/reenumerate-and-exit.ts
+3 −3 packages/uhk-common/package-lock.json
+1 −1 packages/uhk-common/package.json
+5 −0 packages/uhk-common/src/models/command-line-args.ts
+63 −36 packages/uhk-usb/package-lock.json
+2 −2 packages/uhk-usb/package.json
+36 −32 packages/uhk-usb/src/uhk-hid-device.ts
+2,957 −2,594 packages/uhk-web/package-lock.json
+42 −42 packages/uhk-web/package.json
+1 −1 packages/uhk-web/src/app/app.routes.ts
+3 −1 packages/uhk-web/src/app/components/agent/about/about.component.html
+2 −0 packages/uhk-web/src/app/components/agent/about/about.component.ts
+1 −1 packages/uhk-web/src/app/components/device/configuration/device-configuration.component.html
+10 −0 packages/uhk-web/src/app/components/device/configuration/device-configuration.component.scss
+5 −2 packages/uhk-web/src/app/components/device/configuration/device-configuration.component.ts
+32 −26 packages/uhk-web/src/app/components/device/mouse-speed/mouse-speed.component.html
+0 −1 packages/uhk-web/src/app/components/device/mouse-speed/mouse-speed.component.scss
+4 −0 packages/uhk-web/src/app/components/keyboard/slider/keyboard-slider.component.html
+4 −1 packages/uhk-web/src/app/components/macro/action-editor/tab/macro-base.component.ts
+1 −1 packages/uhk-web/src/app/components/macro/list/macro-list.component.ts
+4 −1 packages/uhk-web/src/app/components/popover/tab/tab.ts
+1 −1 packages/uhk-web/src/app/components/popover/widgets/icon/icon.component.html
+6 −3 packages/uhk-web/src/app/components/slider-wrapper/slider-wrapper.component.scss
+1 −0 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.html
+13 −3 packages/uhk-web/src/app/components/svg/keys/svg-icon-text-key/svg-icon-text-key.component.ts
+27 −3 packages/uhk-web/src/app/components/svg/keys/svg-keyboard-key/svg-keyboard-key.component.ts
+16 −0 packages/uhk-web/src/app/components/svg/keys/svg-keystroke-key/svg-keystroke-key.component.html
+18 −3 packages/uhk-web/src/app/components/svg/keys/svg-keystroke-key/svg-keystroke-key.component.ts
+1 −0 packages/uhk-web/src/app/components/svg/keys/svg-one-line-text-key/svg-one-line-text-key.component.html
+3 −1 packages/uhk-web/src/app/components/svg/keys/svg-one-line-text-key/svg-one-line-text-key.component.ts
+1 −0 packages/uhk-web/src/app/components/svg/keys/svg-text-icon-key/svg-text-icon-key.component.html
+13 −5 packages/uhk-web/src/app/components/svg/keys/svg-text-icon-key/svg-text-icon-key.component.ts
+2 −1 packages/uhk-web/src/app/components/svg/keys/svg-two-line-text-key/svg-two-line-text-key.component.html
+6 −0 packages/uhk-web/src/app/components/svg/keys/svg-two-line-text-key/svg-two-line-text-key.component.ts
+22 −0 packages/uhk-web/src/app/components/svg/keys/util/calculate-fit-font-size.ts
+2 −0 packages/uhk-web/src/app/components/svg/keys/util/index.ts
+0 −0 packages/uhk-web/src/app/components/svg/keys/util/is-rectangle-as-secondary-role-key.ts
+2 −1 packages/uhk-web/src/app/components/svg/wrap/svg-keyboard-wrap.component.html
+1 −6 packages/uhk-web/src/app/components/user-configuration-history/user-configuration-history.component.html
+3 −3 packages/uhk-web/src/app/custom-fa-icons/fa-square-a.ts
+14 −0 packages/uhk-web/src/app/models/exchange-keys-action.model.ts
+2 −0 packages/uhk-web/src/app/models/index.ts
+9 −0 packages/uhk-web/src/app/models/load-user-configuration-from-file-payload.ts
+4 −1 packages/uhk-web/src/app/services/device-renderer.service.ts
+306 −0 packages/uhk-web/src/app/services/key-action-drag-and-drop.service.ts
+20 −16 packages/uhk-web/src/app/services/mapper.service.ts
+2 −0 packages/uhk-web/src/app/shared.module.ts
+10 −0 packages/uhk-web/src/app/store/actions/keymap.ts
+14 −4 packages/uhk-web/src/app/store/actions/user-config.ts
+22 −10 packages/uhk-web/src/app/store/effects/user-config.ts
+1 −1 packages/uhk-web/src/app/store/reducers/user-configuration-history.reducer.ts
+123 −50 packages/uhk-web/src/app/store/reducers/user-configuration.ts
+18 −18 packages/uhk-web/src/polyfills.ts
+2 −1 packages/uhk-web/src/renderer/services/electron-log.service.ts
+1 −1 packages/uhk-web/src/styles/_variables.scss
+1 −1 packages/uhk-web/src/tsconfig.app.json
+44 −36 packages/usb/package-lock.json
+2 −2 packages/usb/package.json
+0 −4 packages/usb/zadic/50-uhk60-rules.cmd
+0 −1 packages/usb/zadic/install-win-driver-ia32.bat
+0 −1 packages/usb/zadic/install-win-driver-x64.bat
+ packages/usb/zadic/wdi-simple.exe
+ packages/usb/zadic/zadic-ia32.exe
+ packages/usb/zadic/zadic-x64.exe
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.1",
"firmwareVersion": "8.10.2",
"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 1
#define FIRMWARE_PATCH_VERSION 2

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 7
Expand Down

0 comments on commit 58b6310

Please sign in to comment.