Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-red-contrib-sonospollytts

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-sonospollytts - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

8

CHANGELOG.md

@@ -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);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc