Skip to content

Commit

Permalink
Version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arachnetech committed Apr 4, 2020
1 parent 732209c commit 812b2f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ The following settings apply to all device types:
"integerValue": true,
"onlineValue": "Online",
"chargingStateValues": [ "NotCharging", "Charging", "NotChargeable" ],
"startPub": {
"topic1": "message1",
"topic2": "message2"
},
"startPub": [
{ "topic": "topic1", "message": "message1" },
{ "topic": "topic2", "message": "message2" }
],
"confirmationPeriodms": 1000,
"retryLimit": 5
}
Expand Down Expand Up @@ -1294,6 +1294,10 @@ Window covering position state can be **DECREASING**, **INCREASING** or **STOPPE

# Release notes

Version 1.1.2
+ Added configuration schema, supporting configuration of most settings through config-ui-x (thanks, @oznu). Note that 'apply' functions are not supported.
+ Added new 'startPub' format, allowing configuration through config-ui-x.

Version 1.1.1
+ Changed Boolean value handling to support bare JavaScript Booleans returned from incoming MQTT apply() functions (`"true" != true` but both are now accepted).
+ Boolean property values passed to outgoing MQTT apply() functions are no-longer converted to strings first (for consistency with the change above). This allows easier publishing of JSON containing correctly typed values, but **may change outgoing message format with existing configurations in some situations**.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-mqttthing",
"version": "1.1.1",
"version": "1.1.2",
"description": "Homebridge plugin supporting various services over MQTT",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 812b2f8

Please sign in to comment.