node-red-contrib-tts-ultimate 1.0.45 → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.paypal.me/techtoday)
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
<p>
|
|
7
|
+
<b>Version 1.0.46</b> Mai 2022<br/>
|
|
8
|
+
- Fixed a compatibility issue with Node 18, where a breaking change has been introduced.<br/>
|
|
9
|
+
</p>
|
|
5
10
|
<p>
|
|
6
11
|
<b>Version 1.0.45</b> April 2022<br/>
|
|
7
12
|
- NEW: Additional players now resumes the queue as well (previously, only the main player was doing so).<br/>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-tts-ultimate",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.46",
|
|
4
4
|
"description": "Transforms the text in speech and hear it using Sonos player or generate an audio file to be used with third parties nodes. Works with voices from Amazon, Google (without credentials as well), Microsoft TTS Azure, or your own voice. You can also only create a TTS file to be read by third party nodes. Update of the popular SonosPollyTTS node.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -229,7 +229,7 @@ module.exports = function (RED) {
|
|
|
229
229
|
} else {
|
|
230
230
|
var sAddresses = "";
|
|
231
231
|
oiFaces[ifname].forEach(function (iface) {
|
|
232
|
-
if (iface.internal == false && iface.family
|
|
232
|
+
if (iface.internal == false && iface.family.toString().includes("4")) sAddresses = iface.address;
|
|
233
233
|
});
|
|
234
234
|
if (sAddresses !== "") jListInterfaces.push({ name: ifname, address: sAddresses });
|
|
235
235
|
}
|