Skip to content

Commit

Permalink
Bump version to 8.0.0. Update version numbers. Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
mondalaci committed Dec 15, 2017
1 parent 85e92d2 commit 40bf252
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 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.0.0] - 2017-12-15

Device Protocol: 4.**1.0** | Module Protocol: **4.0.0** | User Config: 4.0.0 | Hardware Config: 1.0.0

- Make the modules transfer the module protocol version and firmware version composed of a major, a minor and a patch number. `MODULEPROTOCOL:MAJOR`
- Query module key count and pointer count in separate messages instead of a combined message for improved clarity. `MODULEPROTOCOL:MAJOR`
- Add new UsbCommand_GetModuleProperties() device protocol command. `DEVICEPROTOCOL:MINOR`

## [7.0.0] - 2017-12-14

Device Protocol: **4.0.0** | Module Protocol: 3.0.0 | User Config: 4.0.0 | Hardware Config: 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/agent
Submodule agent updated 42 files
+6 −171 CHANGELOG.md
+2 −3 package-lock.json
+2 −1 package.json
+1 −0 packages/uhk-agent/package.json
+5 −3 packages/uhk-agent/src/electron-main.ts
+4 −0 packages/uhk-agent/src/models/command-line-inputs.ts
+5 −4 packages/uhk-agent/src/package.json
+18 −7 packages/uhk-agent/src/services/app.service.ts
+0 −1 packages/uhk-agent/src/services/device.service.ts
+12 −12 packages/uhk-common/src/config-serializer/config-items/macro-action/keymap.spec.ts
+7 −7 packages/uhk-common/src/config-serializer/config-items/user-configuration.spec.ts
+17 −17 packages/uhk-common/src/config-serializer/config-items/user-configuration.ts
+1 −0 packages/uhk-common/src/models/command-line-args.ts
+4 −3 packages/uhk-common/src/models/version-information.ts
+1 −0 packages/uhk-common/src/util/ipcEvents.ts
+4 −7 packages/uhk-usb/src/constants.ts
+2 −6 packages/uhk-usb/src/uhk-hid-device.ts
+17 −20 packages/uhk-usb/src/uhk-operations.ts
+3 −3 packages/uhk-web/src/app/components/keymap/edit/keymap-edit.component.ts
+5 −0 packages/uhk-web/src/app/services/app-renderer.service.ts
+1 −1 packages/uhk-web/src/app/services/hardware-config.json
+3 −3 packages/uhk-web/src/app/services/user-config.json
+6 −6 packages/uhk-web/src/app/store/actions/app.ts
+23 −6 packages/uhk-web/src/app/store/effects/app.ts
+4 −3 packages/uhk-web/src/app/store/effects/device.ts
+22 −17 packages/uhk-web/src/app/store/effects/user-config.ts
+1 −0 packages/uhk-web/src/app/store/index.ts
+6 −2 packages/uhk-web/src/app/store/reducers/app.reducer.ts
+2 −2 packages/uhk-web/src/app/store/reducers/user-configuration.spec.ts
+3 −3 packages/uhk-web/test/user-config-helper.ts
+ packages/usb/blhost/linux/armv7l/blhost
+ packages/usb/blhost/linux/i686/blhost
+ packages/usb/blhost/linux/x86_64/blhost
+7 −8 packages/usb/get-config-size.js
+1 −1 packages/usb/hidapi-sync-stress-test.js
+6 −10 packages/usb/read-config.js
+2 −1 packages/usb/shared.js
+4 −7 packages/usb/uhk.js
+8 −0 packages/usb/update-all-firmwares.js
+25 −0 packages/usb/update-firmwares-and-configs.js
+26 −13 packages/usb/write-config.js
+2 −2 packages/usb/write-hca.js
6 changes: 3 additions & 3 deletions scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"commander": "^2.11.0",
"shelljs": "^0.7.8"
},
"firmwareVersion": "7.0.0",
"deviceProtocolVersion": "4.0.0",
"moduleProtocolVersion": "3.0.0",
"firmwareVersion": "8.0.0",
"deviceProtocolVersion": "4.1.0",
"moduleProtocolVersion": "4.0.0",
"userConfigVersion": "4.0.0",
"hardwareConfigVersion": "1.0.0",
"devices": [
Expand Down
6 changes: 3 additions & 3 deletions shared/versions.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@

// Variables:

#define FIRMWARE_MAJOR_VERSION 7
#define FIRMWARE_MAJOR_VERSION 8
#define FIRMWARE_MINOR_VERSION 0
#define FIRMWARE_PATCH_VERSION 0

#define DEVICE_PROTOCOL_MAJOR_VERSION 4
#define DEVICE_PROTOCOL_MINOR_VERSION 0
#define DEVICE_PROTOCOL_MINOR_VERSION 1
#define DEVICE_PROTOCOL_PATCH_VERSION 0

#define MODULE_PROTOCOL_MAJOR_VERSION 3
#define MODULE_PROTOCOL_MAJOR_VERSION 4
#define MODULE_PROTOCOL_MINOR_VERSION 0
#define MODULE_PROTOCOL_PATCH_VERSION 0

Expand Down

0 comments on commit 40bf252

Please sign in to comment.