iobroker.smartfriends 1.1.0-alpha.1 → 1.1.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 +1 -1
- package/io-package.json +14 -1
- package/lib/SchellenbergBridge.js +0 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ The adapter establishes a direct connection to the gateway to control and query
|
|
|
33
33
|
Placeholder for the next version (at the beginning of the line):
|
|
34
34
|
### __WORK IN PROGRESS__
|
|
35
35
|
-->
|
|
36
|
-
### 1.1.0
|
|
36
|
+
### 1.1.0 (2025-12-28)
|
|
37
37
|
|
|
38
38
|
- (Black-Thunder) Refactored device handling: dynamic states, removed type whitelist, grouped devices under master ID
|
|
39
39
|
- (Black-Thunder) Handle device value updates now correctly
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "smartfriends",
|
|
4
|
-
"version": "1.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.1.0": {
|
|
7
|
+
"en": "Refactored device handling: dynamic states, removed type whitelist, grouped devices under master ID\nHandle device value updates now correctly",
|
|
8
|
+
"de": "Refactored Device Handling: dynamische Zustände, entfernte Typ Whitelist, gruppierte Geräte unter Master ID\nGerätewert-Updates jetzt korrekt ausschalten",
|
|
9
|
+
"ru": "Рефакторированная обработка устройств: динамические состояния, удаленный белый список типов, сгруппированные устройства под идентификатором Master ID\nОбновления стоимости устройства теперь правильно",
|
|
10
|
+
"pt": "Manipulação do dispositivo refatorado: estados dinâmicos, lista branca do tipo removido, dispositivos agrupados sob ID mestre\nGerenciar as atualizações de valor do dispositivo agora corretamente",
|
|
11
|
+
"nl": "Refactored device handling: dynamische toestanden, verwijderd type whitelist, gegroepeerde apparaten onder master ID\nHandle apparaat waarde updates nu correct",
|
|
12
|
+
"fr": "Manipulation de l'appareil refacturé : états dynamiques, liste blanche de type enlevé, dispositifs groupés sous Master ID\nGérer les mises à jour de la valeur du périphérique maintenant correctement",
|
|
13
|
+
"it": "Movimentazione del dispositivo refattore: stati dinamici, tipo rimosso whitelist, dispositivi raggruppati sotto master ID\nMantenere gli aggiornamenti del valore del dispositivo ora correttamente",
|
|
14
|
+
"es": "Manejo de dispositivo refactorizado: estados dinámicos, lista blanca de tipo eliminado, dispositivos agrupados bajo ID maestro\nActualizaciones de valor del dispositivo manual ahora correctamente",
|
|
15
|
+
"pl": "Przekształcona obsługa urządzenia: stany dynamiczne, usunięty biały typ, zgrupowane urządzenia pod master ID\nUchwyt aktualizacji wartości urządzenia teraz poprawnie",
|
|
16
|
+
"uk": "Рефакторний пристрій обробки: динамічні стани, видалений тип білий список, вбудовані пристрої під магістр ID\nОновлення значення ручного пристрою тепер правильно",
|
|
17
|
+
"zh-cn": "重构设备处理: 动态状态, 删除类型白名单, 主 ID 下分组设备\n现在正确处理设备值更新"
|
|
18
|
+
},
|
|
6
19
|
"1.1.0-alpha.1": {
|
|
7
20
|
"en": "Refactored device handling: dynamic states, removed type whitelist, grouped devices under master ID\nHandle device value updates now correctly",
|
|
8
21
|
"de": "Refactored Device Handling: dynamische Zustände, entfernte Typ Whitelist, gruppierte Geräte unter Master ID\nGerätewert-Updates jetzt korrekt ausschalten",
|
|
@@ -258,11 +258,6 @@ class SchellenbergBridge {
|
|
|
258
258
|
`Message received: ${parsedResponse.responseMessage} (code: ${parsedResponse.responseCode})`,
|
|
259
259
|
);
|
|
260
260
|
|
|
261
|
-
if (parsedResponse.currentTimestamp) {
|
|
262
|
-
this.adapter.log.debug(`Updated timestamp to ${parsedResponse.currentTimestamp}`);
|
|
263
|
-
this.lastTimestamp = parsedResponse.currentTimestamp;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
261
|
this.handleResponseCode(parsedResponse);
|
|
267
262
|
}
|
|
268
263
|
|