Skip to content

Latest commit

 

History

History
265 lines (186 loc) · 9.5 KB

HISTORY.md

File metadata and controls

265 lines (186 loc) · 9.5 KB

Revision Change History

[0.6.8]

Fixes

  • Fixed incorrect handling of FanLinc speed change (Issue #126)

  • Fixed incorrect exception log statement in Protocol (Issue #132)

  • Fixed incorrect scene names in the config loader for IOLinc, Outlet, and Switch. This prevented customizing the MQTT scene topic and payload for those devices (Issue #130)

  • Fixed incorrect set-backlight command parsing (Issue #136)

[0.6.7]

Fixes

[0.6.6]

Fixes

  • Fixed incorrect Switch.set() calling sequence. (Issue #119)

[0.6.5]

Additions

  • Initial support for Insteon thermostats has been added (thanks @krkeegan).

  • Support for fast on and off commands and reporting has been added. The on/off mode (normal, fast, instant) is now a command input as well as an output flag in the state templates. This allows double-clicking of switches to be used in automation triggers (thanks @NickWaterton). (Issue #66).

  • Added support for manual mode state reporting (holding buttons down). Supported by dimmer, keypadlinc, remote, and switch (thanks @NickWaterton). (Issue #104).

  • New command 'get_model' added to the command line tool to retrieve and save the Insteon device cat, sub_cat, and firmware revision (thanks @krkeegan). (Issue #55).

  • New command 'join' added to the command line tool to perform a two-way pairing and refresh to link a device to the modem. This combines the previous linknig and pair command into a single command (thanks @krkeegan). (Issue #97).

  • New improved NAK error response codes makes it easier to understand errors when the devices can't communicate (thanks @krkeegan). (Issue #95).

  • Added a new command line input (get-devices) to get a list of the curren Insteon devices in JSON format. (Issue #84).

  • Added a new command line input to factory reset the modem.

Fixes

  • Added better messages when the pair command fails because the modem db is out of date (Issue #69).

  • Updated docs and example config file because of breaking HomeAssistant MQTT light change for dimmers (Issue #88).

[0.6.4]

Additions

  • Added on_level flag support for dimmers and KeyPadLinc's to set the light level when the on button is pressed (Issue #70).

Fixes

  • Multiple output messages queued to the Insteon devices causes some messages to be lost (Issue #86).

[0.6.3]

Additions

  • Added on_level flag support for dimmers and KeyPadLinc's to set the light level when the on button is pressed (Issue #70).

Breaking Changes

  • KeypadLinc now supports both dimmer and on/off device types. This required changing the KeypadLinc inputs in the MQTT portion of the config.yaml file. See the file in the repository for the new input fields (Issue #33).

Additions

  • HassIO and docker support and is now available. See the main doc page for a link to the docs (thanks @lnr0626) (Issue #63, PR #76).

  • Added on/off outlet support (Issue #48).

  • Added support for older I1 devices (thanks @krkeegan). This should allow refresh command and database manipulation for 5+ year old devices. (Issue #17).

  • Added support for automatic maximum hop computations in messages. This should reduce delays and load on the insteon network (thanks @krkeegan). (Issue #43).

  • Added support for waiting to write messages until the maximum number of hops have elapsed. This should reduce subtle bugs where the Insteon network could get overloaded by sending messages to quickly. (thanks @krkeegan). (Issue #45]I45).

[0.6.2]

Additions

  • Added leak sensor heartbeat reporting support (thanks @djfjeff).

  • Added get_engine() command to find the Insteon device engine revision (thanks @krkeegan).

  • Added automatic message de-duplication (thanks @krkeegan)

Fixes

  • Fixed a bug where the MQTT client might close in an area that triggered an exception instead of a reconnect (Issue #32).

  • Fixed bug where the KeypadLinc was using the wrong handler for input MQTT scene simulation commands (Issue #34).

  • Fixed bug where the FanLinc would not report speed changes at all (Issue #37).

  • Fixed issues with the leak sensor topic documentation (thanks @djfjeff).

  • Fixed a bug in the command line script that would not read the MQTT user name from the config.yaml file (Issue #59).

[0.6.1]

Fixes

  • Fixed ordering of config.yaml in command line examples (Issue #27 and Issue #28).

  • Changed default retain flag to True in config file (Issue #29).

Additions

  • Switch, Dimmer, and KeypadLinc LED backlight levels can be changed with the set-flags command using the keyword "backlight" (Issue #13).

[0.6]

Additions

  • Battery powered devices will now attempt to download the all link database if it doesn't exist locally when a broadcast message from that device is seen (since the device is awake). This way you can trip a battery device (motino sensor or push a remote button) and it will initiate a database download.

  • Added FanLinc support (Issue #4). Thanks to @masterdka for testing.

  • Added battery powered sensors (door and window sensors) support (Issue #5).

  • Added leak sensor support (Issue #6).

  • Added KeypadLinc support (Issue #8).

  • Added IOLinc support (Issue #12).

  • Added reply system to the command line tool. Messages are now sent from the server back to the command line tool to indicate the result of running the command.

  • Added !include tag support to the yaml loader which reads the configuration file to allow the file to be split into multiple files (Issue #11).

  • Added linking command to put a modem/device into linking mode without touching it. This lets a new device be added purely through software commands (Issue #7).

  • Updated the modem db delete commands so that specific records can be removed. Removed the modem only db_delete command and replaced it with db_del_ctrl_of and db_del_resp_of just like the devices.

  • Low level MQTT commands now accept "nice" names from the config file for all inputs including the topic. "modem" is the nice name for the PLM modem.

  • Added support for simulating button presses on devices to trigger device scenes (Issue #9).

  • Added support for triggering virtual scenes defined on the modem. (Issue #24).

  • Added support for creating multi-group controller/responder links to allow linking between different buttons on multi-button devices. (Issue #20).

Fixes

  • Issue #21: Fixed incorrect device database entries being created on the last record of the database.

[0.5.2] - 2017-12-22

Fixes

  • Issue #16: Python3.4 doesn't allow circular imports

[0.5.1] - 2017-12-07

Fixes

  • Issue #3: Dimmer on/off topic using wrong template from config file

[0.5.0] - 2017-12-06

  • Initial release