node-red-contrib-sonospollytts
Advanced tools
Comparing version 1.0.2 to 1.0.4
# Node-Red | ||
<p> | ||
<b>Version 1.0.4</b><br/> | ||
- Little minor update<br/> | ||
</p> | ||
<p> | ||
<b>Version 1.0.3</b><br/> | ||
- Bugfix (Fixed bug where sometime setting the hailing to none, causes a problem)<br/> | ||
</p> | ||
<p> | ||
<b>Version 1.0.2</b><br/> | ||
@@ -4,0 +12,0 @@ - Added capability to set volume by passing a message msg.volume to the node<br/> |
{ | ||
"name": "node-red-contrib-sonospollytts", | ||
"version": "1.0.2", | ||
"version": "1.0.4", | ||
"description": "Node-Red TTS with Sonos and Amazon Polly", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -31,3 +31,3 @@ # Node-Red | ||
<p> | ||
<b>Known Issues:</b><<br/> | ||
<b>Known Issues:</b><br/> | ||
- When the node-red's host is restarted, the cache TTS Polly folder is emptied<br/> | ||
@@ -34,0 +34,0 @@ - When an mp3 from shared folder is played by sonos, TTS waits for it to finish before speech<br/> |
@@ -476,3 +476,3 @@ module.exports = function(RED) { | ||
node.error(JSON.stringify(err)); | ||
node.status({fill:"red", shape:"dot", text:"failed to set volume"}); | ||
node.status({fill:"red", shape:"dot", text:"Error: failed to set volume"}); | ||
}); | ||
@@ -528,3 +528,3 @@ | ||
readStream.on('error', function(err) { | ||
RED.log.info('Error moving hailing.mp3 to temp dir: ' + err); | ||
RED.log.info('Error moving hailing.mp3 to temp dir : ' + err); | ||
}); | ||
@@ -531,0 +531,0 @@ } |
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
304829