Skip to content

Commit

Permalink
Bump firmware version to 12.3.1 and update changelog and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Jan 16, 2025
1 parent 94edcd1 commit c4d7443
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 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.

## [12.3.1] - 2025-01-16

Device Protocol: 4.14.0 | Module Protocol: 4.3.0 | User Config: 8.3.0 | Hardware Config: 1.0.0 | Smart Macros: 3.1.0

- Implement high resolution scrolling for the UHK 80.
- Fix horizontal scrolling on the UHK 80.
- Use full keyboard scancode range for the UHK 80, including scancodes such as International 1.

## [12.3.0] - 2025-01-12

Device Protocol: 4.**14.0** | Module Protocol: 4.3.0 | User Config: 8.3.0 | Hardware Config: 1.0.0 | Smart Macros: 3.**1.0**
Expand Down
2 changes: 1 addition & 1 deletion lib/agent
Submodule agent updated 38 files
+14 −0 CHANGELOG.md
+6 −6 package-lock.json
+3 −3 package.json
+0 −0 packages/uhk-agent/src/util/backup-user-configuration.ts
+2 −2 packages/uhk-agent/src/util/command-line.ts
+1 −1 packages/uhk-agent/src/util/index.ts
+4 −0 packages/uhk-common/src/models/device-connection-state.ts
+1 −0 packages/uhk-common/src/util/index.ts
+3 −0 packages/uhk-common/src/util/is-bit-set.ts
+1 −0 packages/uhk-usb/src/models/device-state.ts
+47 −1 packages/uhk-usb/src/uhk-hid-device.ts
+1 −1 packages/uhk-usb/src/uhk-operations.ts
+16 −11 packages/uhk-usb/src/utils/assert-command-line-options.ts
+7 −1 packages/uhk-usb/src/utils/device-vid-pid-interface-filter.ts
+4 −4 packages/uhk-web/package-lock.json
+1 −1 packages/uhk-web/package.json
+5 −0 packages/uhk-web/src/app/app.component.html
+1 −0 packages/uhk-web/src/app/app.component.scss
+19 −2 packages/uhk-web/src/app/app.component.ts
+23 −0 packages/uhk-web/src/app/components/device/ble-pairing-panel/ble-pairing-panel.component.html
+21 −0 packages/uhk-web/src/app/components/device/ble-pairing-panel/ble-pairing-panel.component.scss
+21 −0 packages/uhk-web/src/app/components/device/ble-pairing-panel/ble-pairing-panel.component.ts
+1 −0 packages/uhk-web/src/app/components/device/host-connections/host-connections.component.html
+1 −1 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.html
+3 −4 packages/uhk-web/src/app/components/svg/keyboard/svg-keyboard.component.ts
+14 −0 packages/uhk-web/src/app/models/ble-adding-state.ts
+1 −0 packages/uhk-web/src/app/models/index.ts
+4 −4 packages/uhk-web/src/app/services/key-action-drag-and-drop.service.ts
+44 −44 packages/uhk-web/src/app/services/svg-module-provider.service.ts
+2 −0 packages/uhk-web/src/app/shared.module.ts
+6 −0 packages/uhk-web/src/app/store/actions/user-config.ts
+5 −0 packages/uhk-web/src/app/store/effects/device.ts
+7 −0 packages/uhk-web/src/app/store/effects/user-config.ts
+1 −0 packages/uhk-web/src/app/store/index.ts
+62 −9 packages/uhk-web/src/app/store/reducers/user-configuration.ts
+1 −0 packages/usb/get-device-state.ts
+2 −2 packages/usb/src/command-line.ts
+1 −0 scripts/release.js
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"serialport": "^12.0.0",
"shelljs": "^0.8.4"
},
"firmwareVersion": "12.3.0",
"firmwareVersion": "12.3.1",
"deviceProtocolVersion": "4.14.0",
"moduleProtocolVersion": "4.3.0",
"userConfigVersion": "8.3.0",
Expand Down

0 comments on commit c4d7443

Please sign in to comment.