Skip to content

Commit

Permalink
Bump version to 8.3.3, update changelog, package.json, versions.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Jul 2, 2018
1 parent 4562a17 commit 014addd
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.3.3] - 2018-07-03

Device Protocol: 4.3.1 | Module Protocol: 4.0.0 | User Config: 4.1.0 | Hardware Config: 1.0.0

- Implement the macro engine.
- Fix the nondeterministic bug that made USB hang.
- Restore the Windows related commits of firmware 8.3.1 because the USB hang bug has been fixed.
- Restore debouncing to 100ms until it gets really fixed.

## [8.3.2] - 2018-06-27

Device Protocol: 4.3.1 | Module Protocol: 4.0.0 | User Config: 4.1.0 | Hardware Config: 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/agent
Submodule agent updated 30 files
+1 −1 package-lock.json
+3 −2 packages/uhk-usb/src/uhk-operations.ts
+0 −1 packages/uhk-web/.angular-cli.json
+8 −43 packages/uhk-web/package-lock.json
+1 −2 packages/uhk-web/package.json
+18 −7 packages/uhk-web/src/app/components/device/firmware/device-firmware.component.html
+12 −3 packages/uhk-web/src/app/components/device/firmware/device-firmware.component.ts
+8 −7 packages/uhk-web/src/app/components/macro/item/macro-item.component.html
+1 −1 packages/uhk-web/src/app/components/macro/item/macro-item.component.scss
+13 −0 packages/uhk-web/src/app/components/macro/item/macro-item.component.ts
+1 −1 packages/uhk-web/src/app/components/popover/popover.component.html
+0 −17 packages/uhk-web/src/app/components/popover/popover.component.scss
+17 −6 packages/uhk-web/src/app/components/popover/tab/keymap/keymap-tab.component.html
+1 −1 packages/uhk-web/src/app/components/popover/tab/keymap/keymap-tab.component.scss
+6 −7 packages/uhk-web/src/app/components/popover/tab/keymap/keymap-tab.component.ts
+44 −13 packages/uhk-web/src/app/components/popover/tab/keypress/keypress-tab.component.html
+10 −0 packages/uhk-web/src/app/components/popover/tab/keypress/keypress-tab.component.scss
+14 −50 packages/uhk-web/src/app/components/popover/tab/keypress/keypress-tab.component.ts
+18 −2 packages/uhk-web/src/app/components/popover/tab/macro/macro-tab.component.html
+1 −1 packages/uhk-web/src/app/components/popover/tab/macro/macro-tab.component.scss
+6 −7 packages/uhk-web/src/app/components/popover/tab/macro/macro-tab.component.ts
+1 −0 packages/uhk-web/src/app/directives/tooltip/tooltip.directive.ts
+7 −0 packages/uhk-web/src/app/models/select-option-data.ts
+9 −6 packages/uhk-web/src/app/services/user-config.json
+2 −2 packages/uhk-web/src/app/shared.module.ts
+2 −6 packages/uhk-web/src/app/store/index.ts
+5 −1 packages/uhk-web/src/app/store/reducers/device.ts
+1 −28 packages/uhk-web/src/styles.scss
+40 −0 packages/uhk-web/src/styles/_ngx-select-ex.scss
+0 −1 packages/uhk-web/webpack.config.js
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"commander": "^2.11.0",
"shelljs": "^0.7.8"
},
"firmwareVersion": "8.3.2",
"firmwareVersion": "8.3.3",
"deviceProtocolVersion": "4.3.1",
"moduleProtocolVersion": "4.0.0",
"userConfigVersion": "4.1.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 3
#define FIRMWARE_PATCH_VERSION 2
#define FIRMWARE_PATCH_VERSION 3

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 3
Expand Down

0 comments on commit 014addd

Please sign in to comment.