iobroker.device-watcher 2.12.5 → 2.12.6
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/main.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -193,6 +193,9 @@ This adapter would not have been possible without the great work of Christian Be
|
|
|
193
193
|
Placeholder for the next version (at the beginning of the line):
|
|
194
194
|
### **WORK IN PROGRESS**
|
|
195
195
|
-->
|
|
196
|
+
### 2.12.6 (2025-08-08)
|
|
197
|
+
- (arteck) fix send message
|
|
198
|
+
|
|
196
199
|
### 2.12.5 (2025-08-04)
|
|
197
200
|
- (arteck) fix translation
|
|
198
201
|
- (arteck) fix htmllist output
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "device-watcher",
|
|
4
|
-
"version": "2.12.
|
|
4
|
+
"version": "2.12.6",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.12.6": {
|
|
7
|
+
"en": "fix send message",
|
|
8
|
+
"de": "die nachricht senden",
|
|
9
|
+
"ru": "отправить сообщение",
|
|
10
|
+
"pt": "corrigir mensagem de envio",
|
|
11
|
+
"nl": "verzendbericht repareren",
|
|
12
|
+
"fr": "corriger le message d'envoi",
|
|
13
|
+
"it": "correzione messaggio di invio",
|
|
14
|
+
"es": "recibir el mensaje",
|
|
15
|
+
"pl": "naprawić wiadomość wysyłającą",
|
|
16
|
+
"uk": "фіксувати надсилання повідомлення",
|
|
17
|
+
"zh-cn": "修复发送消息"
|
|
18
|
+
},
|
|
6
19
|
"2.12.5": {
|
|
7
20
|
"en": "fix translation\nfix htmllist output",
|
|
8
21
|
"de": "bersetzung\nhtmllist ausgeben",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "Adapter wymaga nodeJS > = 18 i sterownika js- > = 5 teraz\nAdresat został przeniesiony do organizacji adapterów dla społeczności iobrokerskiej\nZaktualizowano zależności",
|
|
81
94
|
"uk": "Адаптер вимагає nodeJS >= 18 і js-controller >= 5 тепер\nAdpter був мігрований до організації iobroker-community-adapters\nЗалежність було оновлено",
|
|
82
95
|
"zh-cn": "适配器需要节点JS QQ 18和js控制器 QQ 现在5号\n接受者已迁移到经济经纪人-社区适应者组织\n依赖关系已更新"
|
|
83
|
-
},
|
|
84
|
-
"2.11.0": {
|
|
85
|
-
"en": "Added [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Support for Ring Cameras",
|
|
86
|
-
"de": "Hinzugefügt [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Unterstützung für Ring Kameras",
|
|
87
|
-
"ru": "Добавлено [#323] (https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Поддержка кольцевых камер",
|
|
88
|
-
"pt": "Adicionado [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Suporte para câmeras de anel",
|
|
89
|
-
"nl": "Toegevoegd [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Ondersteuning voor Ring camera's",
|
|
90
|
-
"fr": "Ajouté [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Prise en charge des caméras Ring",
|
|
91
|
-
"it": "Aggiunto [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Supporto per telecamere anelli",
|
|
92
|
-
"es": "[#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): Soporte para cámaras de anillo",
|
|
93
|
-
"pl": "Dodano [# 323] (https: / / github.com / ciddi89 / ioBroker.device- watcher / issues / 323): Wsparcie dla kamer pierścieniowych",
|
|
94
|
-
"uk": "Додано [#323](https://github.com/iobroker-community-adapters/ioBroker.device-watcher/products/323): Підтримка камери кільця",
|
|
95
|
-
"zh-cn": "添加 [# 323] (https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues/323): 中文(简体) ). 环相机支持"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
package/main.js
CHANGED
|
@@ -2210,7 +2210,9 @@ class DeviceWatcher extends utils.Adapter {
|
|
|
2210
2210
|
const setMessage = async (message) => {
|
|
2211
2211
|
this.log.info(message);
|
|
2212
2212
|
await this.setStateAsync('lastNotification', message, true);
|
|
2213
|
-
|
|
2213
|
+
if (!message.includes('no updates')) {
|
|
2214
|
+
await this.sendNotification(message);
|
|
2215
|
+
}
|
|
2214
2216
|
};
|
|
2215
2217
|
|
|
2216
2218
|
const processDeviceList = (deviceList, property1, property2) => {
|