node-red-contrib-sonospollytts
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -1,2 +0,2 @@ | ||
# Node-Red | ||
![Sample Node](img/logo.png) | ||
@@ -8,2 +8,6 @@ [![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg?style=flat-square)](https://www.paypal.me/techtoday) | ||
<p> | ||
<b>Version 1.1.4</b><br/> | ||
- Updated underlying sonos API to 1.12.6<br/> | ||
</p> | ||
<p> | ||
<b>Version 1.1.3</b><br/> | ||
@@ -23,3 +27,3 @@ - Added "msg.connectionerror" to the output messages: <b>true</b> when the node cannot connect to the Sonos device, <b>false</b> if the connection is restored.<br/> | ||
<b>Version 1.1.0</b><br/> | ||
- Now support HTTPS installations.<br/> | ||
- Now support HTTPS installations-<br/> | ||
- MAJOR CHANGE IN HANDLING COMMUNICATIONS BETWEEN NODE-RED AND SONOS. Due to added support for HTTPS installation, the node behaviour has been changed. The node will now create his own webserver, instead of using node-red webserver. This permits to overcome SSL certificate problems with Sonos. If your node-red run behind a firewall, REMEMBER TO FORMWARD the node webserver port (default port is 1980)<br/> | ||
@@ -26,0 +30,0 @@ </p> |
{ | ||
"name": "node-red-contrib-sonospollytts", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Node-Red TTS with Sonos and Amazon Polly", | ||
@@ -40,3 +40,3 @@ "main": "index.js", | ||
"path": "^0.12.7", | ||
"sonos": ">=1.10.0", | ||
"sonos": ">=1.12.6", | ||
"util": ">=0.10.1" | ||
@@ -43,0 +43,0 @@ }, |
@@ -1139,3 +1139,3 @@ module.exports = function(RED) { | ||
node.msg.connectionerror=false; | ||
node.send({ "connectionerror": node.msg.connectionerror }); | ||
node.send({"connectionerror": node.msg.connectionerror }); | ||
} | ||
@@ -1151,3 +1151,3 @@ node.oTimerSonosConnectionCheck = setTimeout(function () { CheckSonosConnection(node); }, 2000); | ||
node.msg.connectionerror = true; | ||
node.send({ "connectionerror": node.msg.connectionerror }); | ||
node.send({"connectionerror": node.msg.connectionerror }); | ||
} | ||
@@ -1154,0 +1154,0 @@ node.oTimerSonosConnectionCheck = setTimeout(function () { CheckSonosConnection(node); }, 2000); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
472675
Updatedsonos@>=1.12.6