iobroker.heos 2.2.3 → 2.2.4
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/README.md +3 -0
- package/io-package.json +14 -14
- package/lib/heos-player.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -144,6 +144,9 @@ Alternative you can use the script from Uhula: https://forum.iobroker.net/post/4
|
|
|
144
144
|
Placeholder for the next version (at the beginning of the line):
|
|
145
145
|
### **WORK IN PROGRESS**
|
|
146
146
|
-->
|
|
147
|
+
### 2.2.4 (2024-10-31)
|
|
148
|
+
* (withstu) improve tidal connect workaround
|
|
149
|
+
|
|
147
150
|
### 2.2.3 (2024-10-30)
|
|
148
151
|
* (withstu) fix audio format
|
|
149
152
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "heos",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.4",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.2.4": {
|
|
7
|
+
"en": "improve tidal connect workaround",
|
|
8
|
+
"de": "verbesserung der tidal-verbindung workaround",
|
|
9
|
+
"ru": "улучшить приливное подключение обход",
|
|
10
|
+
"pt": "melhorar a ligação de maré",
|
|
11
|
+
"nl": "verbetering van de getijdenverbinding",
|
|
12
|
+
"fr": "améliorer la solution de rechange pour la connexion marémotrice",
|
|
13
|
+
"it": "migliorare la connessione tidale",
|
|
14
|
+
"es": "mejorar la unión de marea",
|
|
15
|
+
"pl": "poprawić pracę połączeń pływowych",
|
|
16
|
+
"uk": "поліпшити роботу з під'єднання tidal",
|
|
17
|
+
"zh-cn": "改进潮汐连接工作"
|
|
18
|
+
},
|
|
6
19
|
"2.2.3": {
|
|
7
20
|
"en": "fix audio format",
|
|
8
21
|
"de": "audioformat anpassen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "ustawienie rurociągów i usunięcie węzła 14x",
|
|
81
94
|
"uk": "кріплення трубопроводів і видалення вузла 14.x",
|
|
82
95
|
"zh-cn": "f 配件和取消14x的支助"
|
|
83
|
-
},
|
|
84
|
-
"1.12.2": {
|
|
85
|
-
"en": "optimize error handling",
|
|
86
|
-
"de": "optimierung der fehlerbehandlung",
|
|
87
|
-
"ru": "оптимизировать обработку ошибок",
|
|
88
|
-
"pt": "otimizar o manuseio de erros",
|
|
89
|
-
"nl": "vertaling:",
|
|
90
|
-
"fr": "optimiser la manipulation des erreurs",
|
|
91
|
-
"it": "ottimizzare la gestione degli errori",
|
|
92
|
-
"es": "optimizar el manejo del error",
|
|
93
|
-
"pl": "optymalizowanie błędów",
|
|
94
|
-
"uk": "оптимізація обробки помилок",
|
|
95
|
-
"zh-cn": "优化错误处理"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/lib/heos-player.js
CHANGED
|
@@ -1884,7 +1884,7 @@ class HeosPlayer {
|
|
|
1884
1884
|
|
|
1885
1885
|
//Filter invalid responses
|
|
1886
1886
|
if(jdata.payload.hasOwnProperty('sid') && (jdata.payload.sid != 0 || JSON.stringify(jdata.payload).includes('tidal.com'))){
|
|
1887
|
-
if(JSON.stringify(jdata.payload).includes('tidal.com')) {
|
|
1887
|
+
if(jdata.payload.sid == 0 && JSON.stringify(jdata.payload).includes('tidal.com')) {
|
|
1888
1888
|
jdata.payload.sid = 10;
|
|
1889
1889
|
}
|
|
1890
1890
|
this.muteRegex(JSON.stringify(jdata.payload));
|