Skip to content

Releases: mikejac/node-red-contrib-google-smarthome

v0.0.59

29 Jan 09:09
34b45df
Compare
Choose a tag to compare
  • Fixed INVALID_ARGUMENT on scenes

v0.0.58

28 Jan 22:23
0fd7968
Compare
Choose a tag to compare
  • Added media devices (@ckhmer1)
  • Added blinds (@albgau)
  • Added kitchen hoods and fireplaces (@homefefeld)
  • several other small fixes

v0.0.57

11 Jan 10:25
fc51ee2
Compare
Choose a tag to compare
  • Fix "ReferenceError: states is not defined"

v0.0.56

10 Jan 18:42
bfb8bdb
Compare
Choose a tag to compare
  • Add support for camera (@ckhmer1)
  • Fix inconsistent node state updates (#77)
  • Fix some small code smells

v0.0.55

07 Jan 15:26
98dc724
Compare
Choose a tag to compare

v0.0.54

01 Jan 15:42
41f63e9
Compare
Choose a tag to compare

v0.0.53

29 Dec 22:38
754a892
Compare
Choose a tag to compare

Breaking change:
The command field in output messages from device nodes was moved outside of the payload. This was done to prevent INVALID_ARGUMENT errors.

Previously a message looked like this:

{
    payload: {
        command: "action.devices.commands.OnOff",
        on: false
    }
}

Now the message looks like this:

{
    // command is now outside of payload
    command: "action.devices.commands.OnOff",
    payload: {
        on: false
    }
}

v0.0.52

23 Dec 11:44
66917db
Compare
Choose a tag to compare
  • Support for shutters (@Chrischi-)
  • Status icon in Node-Red is now updated correctly (#77)

v0.0.51

15 Dec 18:23
e6e5fe6
Compare
Choose a tag to compare
  • Move device files into their own folder
  • Fix Content Security Policy
  • New description in package.json
  • Fix inputs and docs for vacuum cleaner

v0.0.50

09 Dec 22:49
864f044
Compare
Choose a tag to compare
  • Fix problems during login due to incorrect CSP header (#73)