Releases: arachnetech/homebridge-mqttthing
Releases · arachnetech/homebridge-mqttthing
Version 1.1.7
- Allow temperature sensor current temperature range to be overriden (using minTemperature and maxTemperature)
- Added confirmationIndicateOffline option
- Moved history options from history to historyOptions object
- Added config-ui-x support for historyOptions
Version 1.1.6
- Added history support for switch (thanks, @tobekas)
- Fixed #223 and #207 - history not working if getTotalConsumption used (thanks, @tobekas)
- Fixed history last activation in motion and contact sensor (thanks, @tobekas)
- Allowed config.url string without protocol, now defaulting to mqtt:// (thanks, @tobekas)
Version 1.1.5
- Don't throw an exception at start-up if the configuration is invalid (as this stops Homebridge unnecessarily)
Version 1.1.4
- Fixed excessive MQTT logging (introduced in 1.1.2). Thanks, @nzbullet.
Version 1.1.3
- Added lightbulb sub-types to configuration schema, allowing easier configuration of different lightbulb types.
- Added missing otherValueOff to configuration schema.
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.
- Added option to configure garage door target values independently of current values - thanks, Charles Powell