Skip to content

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

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)

v0.0.49

05 Dec 18:22
bb78a3a
Compare
Choose a tag to compare
  • Update npm depencies
  • Extend error message for invalid client id
  • Fix INVALID_ARGUMENT on ColorTemp lights (#65)

v0.0.48

01 Dec 10:10
6b20acf
Compare
Choose a tag to compare
  • Fix inputs for thermostats (@Aragur)
  • Extend error message from HttpAtions::reportState()
  • Link page with possible errors from Readme

v0.0.47

30 Nov 12:52
5c519bb
Compare
Choose a tag to compare
  • Fix device inputs with topic "set"

v0.0.46

26 Nov 07:10
73a8efb
Compare
Choose a tag to compare
  • Sensors (temperature and humidity) added (@ferlipaz)