Skip to content

Commit

Permalink
Bump version to 8.10.12, update changelog, package.json and versions.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Oct 27, 2021
1 parent ef75ad4 commit 53527cf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.12] - 2021-10-27

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

- Reduce trackball module wake up lag.
- Reduce the audible noise of UHK 60 v2 LED drivers.

## [8.10.11] - 2021-09-16

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 41 files
+353 −517 package-lock.json
+9 −15 package.json
+1 −2 packages/kboot/test/util/usb/decode-command-response.spec.ts
+11 −2 packages/uhk-web/src/app/app.component.html
+29 −0 packages/uhk-web/src/app/app.component.scss
+52 −3 packages/uhk-web/src/app/app.component.ts
+1 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-empty.component.html
+10 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-empty.component.scss
+11 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-empty.component.ts
+12 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-secondary-menu.component.html
+40 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-secondary-menu.component.scss
+27 −0 packages/uhk-web/src/app/components/keymap/add/keymap-add-secondary-menu.component.ts
+12 −33 packages/uhk-web/src/app/components/keymap/add/keymap-add.component.html
+1 −58 packages/uhk-web/src/app/components/keymap/add/keymap-add.component.scss
+28 −29 packages/uhk-web/src/app/components/keymap/add/keymap-add.component.ts
+2 −0 packages/uhk-web/src/app/components/keymap/index.ts
+12 −0 packages/uhk-web/src/app/components/keymap/keymap.routes.ts
+1 −0 packages/uhk-web/src/app/components/side-menu/index.ts
+31 −0 packages/uhk-web/src/app/components/side-menu/second-side-menu-container.component.ts
+6 −1 packages/uhk-web/src/app/components/side-menu/side-menu.component.html
+4 −2 packages/uhk-web/src/app/components/side-menu/side-menu.component.scss
+4 −981 packages/uhk-web/src/app/services/user-config.json
+11 −2 packages/uhk-web/src/app/shared.module.ts
+35 −0 packages/uhk-web/src/app/store/actions/default-user-configuration.actions.ts
+0 −15 packages/uhk-web/src/app/store/actions/keymap.ts
+38 −0 packages/uhk-web/src/app/store/effects/default-user-configuration.effect.ts
+2 −0 packages/uhk-web/src/app/store/effects/index.ts
+2 −16 packages/uhk-web/src/app/store/effects/keymap.ts
+11 −6 packages/uhk-web/src/app/store/index.ts
+47 −0 packages/uhk-web/src/app/store/reducers/default-user-configuration.reducer.ts
+0 −16 packages/uhk-web/src/app/store/reducers/preset.ts
+12 −4 packages/uhk-web/src/app/store/router-util.ts
+4 −1 packages/uhk-web/src/app/web.module.ts
+4 −1 packages/uhk-web/src/renderer/uhk-renderer.module.ts
+0 −332 packages/uhk-web/src/res/presets/DVR.json
+0 −332 packages/uhk-web/src/res/presets/EMY.json
+0 −859 packages/uhk-web/src/res/presets/QTY.json
+0 −346 packages/uhk-web/src/res/presets/VIM.json
+1 −0 packages/uhk-web/src/styles/_variables.scss
+4 −0 packages/uhk-web/src/styles/themes/_dark.scss
+4 −0 packages/uhk-web/src/styles/themes/_light.scss
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.8.4"
},
"firmwareVersion": "8.10.11",
"firmwareVersion": "8.10.12",
"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 11
#define FIRMWARE_PATCH_VERSION 12

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 7
Expand Down

0 comments on commit 53527cf

Please sign in to comment.