iobroker.squeezeboxrpc 2.0.2 → 3.0.0

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 CHANGED
@@ -71,13 +71,23 @@ or `NAS`, connect to different streaming providers like `Spotify`, `Deezer`,
71
71
 
72
72
  ### Main settings
73
73
 
74
- | Option | Default | Description |
75
- | --------------- | --------- | --------------------------------------------------------------------------------------------------------------- |
76
- | LMS server | `0.0.0.0` | Hostname or IP address of the Logitech/Lyrion Media Server. An automatically discovered server can be selected. |
77
- | LMS port | `9000` | HTTP/JSON-RPC port of the LMS. |
78
- | LMS Telnet port | `9090` | CLI/Telnet port of the LMS. It is used only when Telnet signaling is enabled. |
79
- | Username | empty | Optional LMS username. |
80
- | Password | empty | Optional LMS password. |
74
+ | Option | Default | Description |
75
+ | --------------- | ---------- | --------------------------------------------------------------------------------------------------------------- |
76
+ | LMS server | `0.0.0.0` | Hostname or IP address of the Logitech/Lyrion Media Server. An automatically discovered server can be selected. |
77
+ | LMS port | `9000` | HTTP port used by JSON-RPC or the experimental WebSocket plugin. |
78
+ | Connection type | `JSON-RPC` | Uses stable HTTP JSON-RPC or the experimental LMS WebSocket plugin. |
79
+ | WebSocket URL | empty | Optional independent plugin web-server URL, for example `http://192.168.1.87/`. |
80
+ | LMS Telnet port | `9090` | CLI/Telnet port. Used only with JSON-RPC when Telnet signaling is enabled. |
81
+ | Username | empty | Optional LMS username. |
82
+ | Password | empty | Optional LMS password. |
83
+
84
+ WebSocket mode requires the experimental
85
+ [LMS WebSocket plugin](https://github.com/LMS-Community/slimserver/tree/d1d0a683d8301c04e64be0425e0aec51fc4e8397/Slim/Plugin/WebSocket).
86
+ It carries commands and notifications over the same connection, so the Telnet
87
+ settings are ignored in this mode. The regular player polling remains enabled
88
+ as a fallback for missing or incomplete notifications. HTTP(S) WebSocket URLs
89
+ are converted to WS(S), and `/ws` is added automatically when only a root URL
90
+ is configured.
81
91
 
82
92
  ### Timer settings
83
93
 
@@ -96,7 +106,7 @@ Short refresh intervals increase the number of requests sent to the LMS.
96
106
  | ---------------------------- | -------- | ------------------------------------------------------------------------------------------------ |
97
107
  | Provide playlist information | enabled | Creates and updates the `Playlist` JSON state for every player. |
98
108
  | Search for other LMS servers | enabled | Enables discovery of other LMS servers on the local network. |
99
- | Use Telnet signaling | disabled | Uses the LMS CLI/Telnet connection for additional player connection and disconnection signaling. |
109
+ | Use Telnet signaling | disabled | With JSON-RPC, uses LMS CLI/Telnet for additional player connection and disconnection signaling. |
100
110
  | Request favorites | enabled | Periodically retrieves the favorites tree from the LMS. |
101
111
 
102
112
  Disable information that is not required to reduce LMS requests and adapter processing.
@@ -801,12 +811,12 @@ are contained in the following CLI documentation:
801
811
  - ~~add browse widget to browse in `LMS`-Menu~~
802
812
  - ~~reduce dependencys to other packages (squeezenode)~~
803
813
  - ~~cmdGeneral für Server.~~
804
- - ~~add telnet communication to get push events from the server to\
805
- optimize the polling~~
806
- - ~~implement a command state to place user individual commands (via json)\
807
- for server and player~~
808
- - ~~implement more control features (select playlist pos to play,ffwd,frew,\
809
- jump to a time position in song,repeat song,random song)~~
814
+ - ~~add telnet communication to get push events from the server to~~
815
+ ~~optimize the polling~~
816
+ - ~~implement a command state to place user individual commands (via json)~~
817
+ ~~for server and player~~
818
+ - ~~implement more control features (select playlist pos to play,ffwd,frew,~~
819
+ ~~jump to a time position in song,repeat song,random song)~~
810
820
  - ~~add the playlist to playerdata as json array~~
811
821
  - ~~add artwork (station-logo/playlist-cover) for favorites~~
812
822
  - ~~implement more levels (subdirectories) of favorites~~
@@ -819,6 +829,11 @@ are contained in the following CLI documentation:
819
829
  ### **WORK IN PROGRESS**
820
830
 
821
831
  -->
832
+ ### 3.0.0 (2026-09-07)
833
+
834
+ - complete rework of the LMS API
835
+ - add experimental websocket support, only usable with LMS 9.2 build after 5.9.2026
836
+
822
837
  ### 2.0.2 (2026-09-07)
823
838
 
824
839
  - fix io-package.json
@@ -838,10 +853,6 @@ are contained in the following CLI documentation:
838
853
 
839
854
  - fix tests
840
855
 
841
- ### 2.0.0-alpha.4 (2026-08-31)
842
-
843
- - Add announcement feature.
844
-
845
856
  Older entries are in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
846
857
 
847
858
  ## License
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "sb-announcetab": "Durchsage-Einstellungen",
3
+ "sb-connectiontype": "LMS-Verbindungsart",
4
+ "sb-connectiontype-help": "WebSocket ist experimentell und erfordert das LMS-WebSocket-Plugin. Im WebSocket-Modus werden keine Telnet-Benachrichtigungen verwendet.",
5
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stabil)",
6
+ "sb-connectiontype-websocket": "WebSocket (experimentell)",
7
+ "sb-websocketurl": "WebSocket-Webserver-URL",
8
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
9
+ "sb-websocketurl-help": "Optionale unabhängige URL des LMS-WebSocket-Webservers, zum Beispiel http://192.168.1.87/. HTTP(S) wird in WS(S) umgewandelt und /ws bei einer Root-URL ergänzt.",
3
10
  "sb-announceweburl": "ioBroker-Web-Basis-URL",
4
11
  "sb-announceweburl-help": "Für lokale Dateien erforderlich. Beispiel: http://192.168.1.10:8082",
5
12
  "sb-announcevolume": "Durchsage-Lautstärke",
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "sb-announcetab": "Announcement settings",
3
+ "sb-connectiontype": "LMS connection type",
4
+ "sb-connectiontype-help": "WebSocket is experimental and requires the LMS WebSocket plugin. Telnet notifications are not used in WebSocket mode.",
5
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
6
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
7
+ "sb-websocketurl": "WebSocket web-server URL",
8
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
9
+ "sb-websocketurl-help": "Optional independent URL of the LMS WebSocket web server, for example http://192.168.1.87/. HTTP(S) is converted to WS(S), and /ws is added to a root URL.",
3
10
  "sb-announceweburl": "ioBroker web base URL",
4
11
  "sb-announceweburl-help": "Required for local files. Example: http://192.168.1.10:8082",
5
12
  "sb-announcevolume": "Announcement volume",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "URL independiente opcional del servidor web WebSocket de LMS, por ejemplo http://192.168.1.87/. HTTP(S) se convierte en WS(S) y /ws se añade a una URL raíz.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket es experimental y requiere el complemento WebSocket de LMS. Las notificaciones Telnet no se utilizan en modo WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Ajustes de anuncios",
3
10
  "sb-announceweburl": "URL base web de ioBroker",
4
11
  "sb-announceweburl-help": "Necesaria para archivos locales. Ejemplo: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "URL indépendante facultative du serveur WebSocket LMS, par exemple http://192.168.1.87/. HTTP(S) est converti en WS(S) et /ws est ajouté à une URL racine.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket est expérimental et nécessite le plugin WebSocket LMS. Les notifications Telnet ne sont pas utilisées en mode WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Paramètres des annonces",
3
10
  "sb-announceweburl": "URL de base web ioBroker",
4
11
  "sb-announceweburl-help": "Requise pour les fichiers locaux. Exemple : http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "URL indipendente opzionale del server WebSocket LMS, ad esempio http://192.168.1.87/. HTTP(S) viene convertito in WS(S) e /ws viene aggiunto a un URL radice.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket è sperimentale e richiede il plugin WebSocket LMS. Le notifiche Telnet non vengono utilizzate in modalità WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Impostazioni annunci",
3
10
  "sb-announceweburl": "URL base web ioBroker",
4
11
  "sb-announceweburl-help": "Necessario per i file locali. Esempio: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "Optionele onafhankelijke URL van de LMS WebSocket-webserver, bijvoorbeeld http://192.168.1.87/. HTTP(S) wordt omgezet naar WS(S) en /ws wordt toegevoegd aan een root-URL.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket is experimenteel en vereist de LMS WebSocket-plug-in. Telnet-meldingen worden niet gebruikt in WebSocket-modus.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Omroepinstellingen",
3
10
  "sb-announceweburl": "ioBroker-webbasis-URL",
4
11
  "sb-announceweburl-help": "Vereist voor lokale bestanden. Voorbeeld: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "Opcjonalny niezależny adres URL serwera WebSocket LMS, na przykład http://192.168.1.87/. HTTP(S) jest konwertowany na WS(S), a /ws jest dodawane do głównego adresu URL.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket jest eksperymentalny i wymaga wtyczki WebSocket LMS. Powiadomienia Telnet nie są używane w trybie WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Ustawienia komunikatów",
3
10
  "sb-announceweburl": "Bazowy URL ioBroker web",
4
11
  "sb-announceweburl-help": "Wymagany dla plików lokalnych. Przykład: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "URL independente opcional do servidor WebSocket LMS, por exemplo http://192.168.1.87/. HTTP(S) é convertido em WS(S) e /ws é adicionado a um URL raiz.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "O WebSocket é experimental e requer o plugin WebSocket do LMS. As notificações Telnet não são utilizadas no modo WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Definições de anúncios",
3
10
  "sb-announceweburl": "URL base web do ioBroker",
4
11
  "sb-announceweburl-help": "Necessário para ficheiros locais. Exemplo: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "Необязательный независимый URL-адрес WebSocket-сервера LMS, например http://192.168.1.87/. HTTP(S) преобразуется в WS(S), а /ws добавляется к корневому URL-адресу.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket является экспериментальным и требует плагин WebSocket для LMS. Уведомления Telnet не используются в режиме WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Настройки объявлений",
3
10
  "sb-announceweburl": "Базовый URL ioBroker web",
4
11
  "sb-announceweburl-help": "Требуется для локальных файлов. Пример: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "Необов’язкова незалежна URL-адреса WebSocket-сервера LMS, наприклад http://192.168.1.87/. HTTP(S) перетворюється на WS(S), а /ws додається до кореневої URL-адреси.",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket є експериментальним і потребує плагіна WebSocket для LMS. Сповіщення Telnet не використовуються в режимі WebSocket.",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "Налаштування оголошень",
3
10
  "sb-announceweburl": "Базова URL-адреса ioBroker web",
4
11
  "sb-announceweburl-help": "Потрібна для локальних файлів. Приклад: http://192.168.1.10:8082",
@@ -1,4 +1,11 @@
1
1
  {
2
+ "sb-websocketurl": "WebSocket web-server URL",
3
+ "sb-websocketurl-placeholder": "http://192.168.1.87/",
4
+ "sb-websocketurl-help": "可选的独立 LMS WebSocket 网络服务器 URL,例如 http://192.168.1.87/。HTTP(S) 会转换为 WS(S),并为根 URL 添加 /ws。",
5
+ "sb-connectiontype": "LMS connection type",
6
+ "sb-connectiontype-help": "WebSocket 为实验性功能,需要 LMS WebSocket 插件。WebSocket 模式下不使用 Telnet 通知。",
7
+ "sb-connectiontype-jsonrpc": "JSON-RPC (stable)",
8
+ "sb-connectiontype-websocket": "WebSocket (experimental)",
2
9
  "sb-announcetab": "播报设置",
3
10
  "sb-announceweburl": "ioBroker Web 基础 URL",
4
11
  "sb-announceweburl-help": "本地文件必填。例如:http://192.168.1.10:8082",
@@ -43,6 +43,40 @@
43
43
  "xl": 4,
44
44
  "newLine": true
45
45
  },
46
+ "connectionType": {
47
+ "type": "select",
48
+ "label": "sb-connectiontype",
49
+ "help": "sb-connectiontype-help",
50
+ "options": [
51
+ {
52
+ "label": "sb-connectiontype-jsonrpc",
53
+ "value": "jsonrpc"
54
+ },
55
+ {
56
+ "label": "sb-connectiontype-websocket",
57
+ "value": "websocket"
58
+ }
59
+ ],
60
+ "xs": 12,
61
+ "sm": 12,
62
+ "md": 6,
63
+ "lg": 4,
64
+ "xl": 4,
65
+ "newLine": true
66
+ },
67
+ "webSocketUrl": {
68
+ "type": "text",
69
+ "label": "sb-websocketurl",
70
+ "help": "sb-websocketurl-help",
71
+ "placeholder": "sb-websocketurl-placeholder",
72
+ "hidden": "data.connectionType !== 'websocket'",
73
+ "xs": 12,
74
+ "sm": 12,
75
+ "md": 6,
76
+ "lg": 4,
77
+ "xl": 4,
78
+ "newLine": true
79
+ },
46
80
  "telnetport": {
47
81
  "type": "text",
48
82
  "label": "sb-telnetport",
@@ -51,6 +85,7 @@
51
85
  "md": 6,
52
86
  "lg": 4,
53
87
  "xl": 4,
88
+ "hidden": "data.connectionType === 'websocket'",
54
89
  "newLine": true
55
90
  },
56
91
  "username": {
@@ -157,6 +192,7 @@
157
192
  "md": 6,
158
193
  "lg": 4,
159
194
  "xl": 4,
195
+ "hidden": "data.connectionType === 'websocket'",
160
196
  "newLine": true
161
197
  },
162
198
  "usefavorites": {
package/io-package.json CHANGED
@@ -1,48 +1,35 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "squeezeboxrpc",
4
- "version": "2.0.2",
4
+ "version": "3.0.0",
5
5
  "news": {
6
- "2.0.2": {
7
- "en": "fix io-package.json",
8
- "de": "fix io-Paket.json",
9
- "ru": "исправить файл io-package.json",
10
- "pt": "fix io-package.json",
11
- "nl": "io-package.json repareren",
12
- "fr": "fix io-package.json",
13
- "it": "fix io-package.json",
14
- "es": "arreglar io-package.json",
15
- "pl": "naprawić io-package.json",
16
- "uk": "виправлення IO-пакету.json",
17
- "zh-cn": "修复io-package.json"
6
+ "3.0.0": {
7
+ "en": "complete rework of the LMS API\nadd experimental websocket support, only usable with LMS 9.2 build after 5.9.2026",
8
+ "de": "Komplette Überarbeitung der LMS API\nWebsocket-Support hinzufügen, nur nutzbar mit LMS 9.2 Build nach 5.9.2026",
9
+ "ru": "полная переработка API LMS\nдобавить поддержку экспериментальных веб-сокетов, которую можно использовать только в сборке LMS 9.2 после 5.9.2026",
10
+ "pt": "reformulação total da API LMS\nadicione suporte experimental a websocket, só para uso com o LMS 9.2 após 5.9.2026",
11
+ "nl": "volledige herwerking van de LMS API\nexperimentele websocketondersteuning toevoegen, alleen bruikbaar met LMS 9.2 gebouwd na 5.9.2026",
12
+ "fr": "refonte complète de l'API LMS\najouter un support Websocket expérimental, utilisable uniquement avec LMS 9.2 après le 5.9.2026",
13
+ "it": "rielaborazione API LMS\naggiungere supporto websocket sperimentale, solo con LMS 9.2 dopo 5.9.2026",
14
+ "es": "revisión total de la API LMS\nañadir soporte websocket experimental, solo se puede usar con LMS 9.2 después del 5.9.2026",
15
+ "pl": "kompletna przeróbka interfejsu API LMS\ndodaj eksperymentalną obsługę websocket, używaną tylko z kompilacją LMS 9.2 po 5.9.2026",
16
+ "uk": "повна переробка LMS API\nдодати експериментальну підтримку веб-сокетів, яка може бути використана лише для збірки LMS 9.2 після 5.9.2026",
17
+ "zh-cn": "完成对 LMS API 的修改\n添加实验性 websocket 支持,仅适用于 5.9.2026 之后的 LMS 9.2 版本"
18
18
  },
19
- "2.1.0": {
20
- "en": "fix power/connected state; fix players button font size; restore fade in/out for announcements with additional LMS plugin",
21
- "de": "Power/Connected-Status korrigiert; Schriftgröße der Player-Schaltfläche korrigiert; Ein-/Ausblenden für Ansagen mit zusätzlichem LMS-Plugin wiederhergestellt",
22
- "ru": "исправлено состояние power/connected; исправлен размер шрифта кнопки игроков; восстановлено плавное появление/исчезновение объявлений с дополнительным плагином LMS",
23
- "pt": "corrigido o estado power/connected; corrigido o tamanho da fonte do botão de players; restaurado o fade in/out para anúncios com plugin LMS adicional",
24
- "nl": "power/connected-status gecorrigeerd; lettergrootte van de players-knop gecorrigeerd; fade-in/out voor aankondigingen met extra LMS-plugin hersteld",
25
- "fr": "état power/connected corrigé ; taille de police du bouton des lecteurs corrigée ; rétablissement du fondu entrant/sortant pour les annonces avec un plugin LMS supplémentaire",
26
- "it": "corretto lo stato power/connected; corretta la dimensione del carattere del pulsante dei player; ripristinata la dissolvenza in entrata/uscita per gli annunci con plugin LMS aggiuntivo",
27
- "es": "corregido el estado power/connected; corregido el tamaño de fuente del botón de reproductores; restaurado el fundido de entrada/salida para anuncios con un plugin LMS adicional",
28
- "pl": "naprawiono stan power/connected; poprawiono rozmiar czcionki przycisku odtwarzaczy; przywrócono efekt fade in/out dla komunikatów z dodatkową wtyczką LMS",
29
- "uk": "виправлено стан power/connected; виправлено розмір шрифту кнопки програвачів; відновлено плавну появу/зникнення оголошень із додатковим плагіном LMS",
30
- "zh-cn": "修复 power/connected 状态;修复播放器按钮字体大小;恢复使用额外 LMS 插件时公告的淡入/淡出效果"
19
+ "2.0.2": {
20
+ "en": "Fix io-package.json",
21
+ "de": "io-package.json korrigiert",
22
+ "ru": "Исправлен файл io-package.json",
23
+ "pt": "Corrigido o arquivo io-package.json",
24
+ "nl": "io-package.json gecorrigeerd",
25
+ "fr": "Correction du fichier io-package.json",
26
+ "it": "Corretto il file io-package.json",
27
+ "es": "Corregido el archivo io-package.json",
28
+ "pl": "Poprawiono plik io-package.json",
29
+ "uk": "Виправлено файл io-package.json",
30
+ "zh-cn": "修复 io-package.json"
31
31
  },
32
32
  "2.0.1": {
33
- "en": "fix package-lock\nfix tests",
34
- "de": "Paketsperre fixen\nFix Tests",
35
- "ru": "исправить блокировку пакета\nисправить тесты",
36
- "pt": "fix packagelock\nfixar testes",
37
- "nl": "pakketvergrendeling repareren\ntests repareren",
38
- "fr": "fix package-lock\nfix tests",
39
- "it": "fix package-lock\nfix test",
40
- "es": "arreglar paquetería\nfix tests",
41
- "pl": "naprawić blokadę pakietów\ntesty naprawcze",
42
- "uk": "фіксуйте блокування пакета\nвиправляти тести",
43
- "zh-cn": "修复包锁\n修复测试"
44
- },
45
- "2.0.0": {
46
33
  "en": "power/connected state fixed\nplayers button font size fixed\nbring back fade in/out for Announcement with additional LMS plugin",
47
34
  "de": "Netz-/Netzzustand fest\nFester Player-Button\nFade-In/Out für Ankündigung mit zusätzlichem LMS-Plugin",
48
35
  "ru": "питание/состояние подключения фиксировано\nисправлен размер шрифта кнопок плееров\nс помощью дополнительного плагина LMS можно вернуться к функции fade information",
@@ -60,7 +47,7 @@
60
47
  "de": "Fixtests",
61
48
  "ru": "исправить тесты",
62
49
  "pt": "corrigir testes",
63
- "nl": "fix tests",
50
+ "nl": "fix tests nl",
64
51
  "fr": "tests de correction",
65
52
  "it": "test di correzione",
66
53
  "es": "pruebas de corrección",
@@ -68,19 +55,6 @@
68
55
  "uk": "виправити тести",
69
56
  "zh-cn": "修复测试"
70
57
  },
71
- "2.0.0-alpha.4": {
72
- "en": "Add announcement feature.",
73
- "de": "Füge eine Ankündigungsfunktion hinzu.",
74
- "ru": "Добавить функцию объявления.",
75
- "pt": "Adicionar recurso de anúncios.",
76
- "nl": "Voeg een aankondigingsfunctie toe.",
77
- "fr": "Ajout d'une fonctionnalité d'annonce.",
78
- "it": "Aggiungere la funzione di annuncio.",
79
- "es": "Agregar función de anuncios.",
80
- "pl": "Dodaj funkcję ogłoszeń.",
81
- "uk": "Додати функцію оголошень.",
82
- "zh-cn": "增加公告功能。"
83
- },
84
58
  "2.0.0-alpha.3": {
85
59
  "en": "vis2 reorder player attributes; add messages for missing attributes; fix two small build tool issues; improve SVG icons; improve theme handling for SVG icons",
86
60
  "de": "vis2 Spielerattribute neu anordnen; Meldungen für fehlende Attribute hinzufügen; zwei kleine Probleme mit den Build-Tools beheben; SVG-Icons verbessern; Theme-Unterstützung für SVG-Icons verbessern",
package/lib/iosbplayer.js CHANGED
@@ -628,10 +628,11 @@ function ioSBPlayer(server, playerdata, i18n) {
628
628
  * Additionally, the alarms are requested using the "alarms" command with
629
629
  * the filter "all". The doAlarmsUpdateStatus function is called with the
630
630
  * result.
631
+ * @param {boolean} [forceFull] Immediately requests full metadata after a push event.
631
632
  */
632
- this.getPlayerUpdateStatus = () => {
633
+ this.getPlayerUpdateStatus = (forceFull = false) => {
633
634
  this.ioUtil.logsilly('getPlayerUpdate');
634
- if (this.statuscounter == 0) {
635
+ if (forceFull || this.statuscounter == 0) {
635
636
  this.request(this.playerid, ['status', '0', '999', this.fullStatus], this.doPlayerUpdateStatus.bind(this));
636
637
  this.request(this.playerid, ['alarms', '0', '999', 'filter:all'], this.doAlarmsUpdateStatus.bind(this));
637
638
  } else {
@@ -889,7 +890,6 @@ function ioSBPlayer(server, playerdata, i18n) {
889
890
  }
890
891
  }
891
892
  };
892
- /************* ✨ Codeium Command ⭐ *************/
893
893
  /**
894
894
  * Handles state changes for player.
895
895
  *
@@ -915,7 +915,6 @@ function ioSBPlayer(server, playerdata, i18n) {
915
915
  * - btnRewind: Jump backward.
916
916
  * - btnPreset_X: Executes the preset X (e.g. preset_1.single).
917
917
  */
918
- /****** 4364f116-3e7c-49b0-821a-4798e59f5e85 *******/
919
918
  this.doStateChange = function (idParts, state) {
920
919
  this.ioUtil.logsilly('doPlayerStateChange');
921
920
  idParts.shift();