node-red-contrib-tts-ultimate 2.0.8 → 2.0.9

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,10 @@
2
2
 
3
3
  [![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg?style=flat-square)](https://www.paypal.me/techtoday)
4
4
 
5
+ <p>
6
+ <b>Version 2.0.9</b> November 2024<br/>
7
+ - Fixed little issue with music queue management.<br/>
8
+ </p>
5
9
  <p>
6
10
  <b>Version 2.0.8</b> November 2024<br/>
7
11
  - NEW: ElevenLabs V2 Multilingual TTS Engine has been added.<br/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-tts-ultimate",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
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, ElevenLabs.io TTS 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": {
@@ -117,7 +117,7 @@ module.exports = function (RED) {
117
117
  };
118
118
 
119
119
 
120
- let iWaitAfterSync = 500;
120
+ let iWaitAfterSync = 100;
121
121
  // 24/08/2021 Sync wrapper
122
122
  function PLAYSync(_toPlay, _oPlayer = node.SonosClient) {
123
123
  return new Promise((resolve, reject) => {