iobroker.device-watcher 1.1.0 → 2.0.1
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 +22 -3
- package/admin/i18n/de/translations.json +3 -1
- package/admin/i18n/en/translations.json +3 -1
- package/admin/i18n/es/translations.json +3 -1
- package/admin/i18n/fr/translations.json +3 -1
- package/admin/i18n/it/translations.json +3 -1
- package/admin/i18n/nl/translations.json +3 -1
- package/admin/i18n/pl/translations.json +3 -1
- package/admin/i18n/pt/translations.json +3 -1
- package/admin/i18n/ru/translations.json +3 -1
- package/admin/i18n/zh-cn/translations.json +3 -1
- package/admin/images/add_blacklist.png +0 -0
- package/admin/jsonConfig.json +105 -24
- package/io-package.json +37 -27
- package/lib/arrApart.js +297 -0
- package/main.js +687 -1156
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://github.com/ciddi89/ioBroker.device-watcher/blob/main/LICENSE)
|
|
9
9
|

|
|
10
10
|

|
|
11
|
-
](https://img.shields.io/github/commits-since/ciddi89/ioBroker.device-watcher/v2.0.1)
|
|
12
12
|

|
|
13
13
|

|
|
14
14
|
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
🇬🇧 [Documentation](/docs/en/README.md)</br>
|
|
22
22
|
🇩🇪 [Dokumentation](/docs/de/README.md)
|
|
23
23
|
|
|
24
|
+
## Discussion and Questions
|
|
25
|
+
[ioBroker Forum](https://forum.iobroker.net/topic/55426/test-adapter-device-watcher-v1-x-x-github-latest)</br>
|
|
26
|
+
[ioBroker Discord Channel](https://discord.com/channels/743167951875604501/1030196924944486530)
|
|
27
|
+
|
|
24
28
|
## Device-Watcher adapter for ioBroker
|
|
25
29
|
|
|
26
30
|
This is a watchdog for devices. The adapter looks for the rssi/link quality and battery states and create JSON & HTML lists of them (devices with battery, devices with low battery, devices with link quality, devices offline and devices all) and count the devices in the same categories. For example you can use the lists and states for Grafana, Jarvis etc.
|
|
@@ -36,9 +40,12 @@ Supported adapters are:
|
|
|
36
40
|
* Harmony
|
|
37
41
|
* HmiP
|
|
38
42
|
* Homematic
|
|
43
|
+
* HS100
|
|
39
44
|
* Hue
|
|
40
45
|
* Hue Extended
|
|
41
46
|
* Jeelink
|
|
47
|
+
* Lupusec
|
|
48
|
+
* MaxCube
|
|
42
49
|
* Meross
|
|
43
50
|
* MiHome
|
|
44
51
|
* MiHome Vacuum
|
|
@@ -57,6 +64,7 @@ Supported adapters are:
|
|
|
57
64
|
* WLED
|
|
58
65
|
* Yeelight
|
|
59
66
|
* Zigbee
|
|
67
|
+
* Zigbee2MQTT
|
|
60
68
|
* Zwave
|
|
61
69
|
|
|
62
70
|
The adapter has also the option to send notifications if the number of offline devices are changed and to send you a notification if devices has a low battery state (e.g. 30%). You can choose the value for the battery notification and on which days you want the notification for low batteries.
|
|
@@ -74,7 +82,7 @@ If you found a bug or you have an improvement suggestion, feel free to open an i
|
|
|
74
82
|
|
|
75
83
|
### Blacklist
|
|
76
84
|
|
|
77
|
-
If you don't want a specifice device in the list, you can add it in the blacklist and the adapter will ignore it.
|
|
85
|
+
If you don't want a specifice device in the list, you can add it in the blacklist and the adapter will ignore it.
|
|
78
86
|
|
|
79
87
|

|
|
80
88
|
|
|
@@ -90,15 +98,26 @@ If you found a bug or you have an improvement suggestion, feel free to open an i
|
|
|
90
98
|

|
|
91
99
|
|
|
92
100
|
## To-Do
|
|
93
|
-
- make blacklist more user-friendly
|
|
94
101
|
- clean up the code
|
|
95
102
|
- add support for reaction on state-changes
|
|
103
|
+
- send offline text only from the device that goes offline
|
|
96
104
|
|
|
97
105
|
## Changelog
|
|
98
106
|
<!--
|
|
99
107
|
Placeholder for the next version (at the beginning of the line):
|
|
100
108
|
### **WORK IN PROGRESS**
|
|
101
109
|
-->
|
|
110
|
+
### 2.0.1 (2022-11-02)
|
|
111
|
+
- If the device is offline, set signal strength to '0%'
|
|
112
|
+
- If the device is offline, set battery to ' - '
|
|
113
|
+
- repair some small issues in the lists
|
|
114
|
+
|
|
115
|
+
### 2.0.0 (2022-11-01)
|
|
116
|
+
- added Lupusec, HS100 adapter, Zigbee2MQTT and MaxCube
|
|
117
|
+
- changed name of Homematic to HM-RPC
|
|
118
|
+
- made a completly makeover of the blacklist
|
|
119
|
+
- clean up the code and shorten some
|
|
120
|
+
|
|
102
121
|
### 1.1.0 (2022-10-03)
|
|
103
122
|
- removed indicatoren for daily sent messages
|
|
104
123
|
- changed selector for shelly devices
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Verschaffen Sie sich einen Überblick mit allen Offline-Geräten",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Wählen Sie die Tage aus, an denen Sie die Übersicht über Offline-Geräte erhalten möchten:",
|
|
79
79
|
"Choose the Time:": "Wählen Sie die Zeit:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Erhalten Sie eine Nachricht mit einer Übersicht aller Offline-Geräte"
|
|
80
|
+
"Get a message with an overview all offline devices": "Erhalten Sie eine Nachricht mit einer Übersicht aller Offline-Geräte",
|
|
81
|
+
"Ignor in notifications": "In Benachrichtigungen ignorieren",
|
|
82
|
+
"Ignor in lists": "In Listen ignorieren"
|
|
81
83
|
}
|
|
@@ -73,5 +73,7 @@
|
|
|
73
73
|
"Overview of offline devices": "Overview of offline devices",
|
|
74
74
|
"Choose the day(s) where you want to get the overview of offline devices:": "Choose the day(s) where you want to get the overview of offline devices:",
|
|
75
75
|
"Choose the Time:": "Choose the Time:",
|
|
76
|
-
"Get a message with an overview all offline devices": "Get a message with an overview all offline devices"
|
|
76
|
+
"Get a message with an overview all offline devices": "Get a message with an overview all offline devices",
|
|
77
|
+
"Ignor in notifications": "Ignor in notifications",
|
|
78
|
+
"Ignor in lists": "Ignor in lists"
|
|
77
79
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Obtenga una descripción general con todos los dispositivos fuera de línea",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Elija los días en los que desea obtener la descripción general de los dispositivos sin conexión:",
|
|
79
79
|
"Choose the Time:": "Elige la hora:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Recibe un mensaje con una descripción general de todos los dispositivos fuera de línea"
|
|
80
|
+
"Get a message with an overview all offline devices": "Recibe un mensaje con una descripción general de todos los dispositivos fuera de línea",
|
|
81
|
+
"Ignor in notifications": "Ignorar en notificaciones",
|
|
82
|
+
"Ignor in lists": "Ignorar en listas"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Obtenez une vue d'ensemble avec tous les appareils hors ligne",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Choisissez le(s) jour(s) où vous souhaitez obtenir l'aperçu des appareils hors ligne :",
|
|
79
79
|
"Choose the Time:": "Choisissez l'heure :",
|
|
80
|
-
"Get a message with an overview all offline devices": "Recevez un message avec un aperçu de tous les appareils hors ligne"
|
|
80
|
+
"Get a message with an overview all offline devices": "Recevez un message avec un aperçu de tous les appareils hors ligne",
|
|
81
|
+
"Ignor in notifications": "Ignorer dans les notifications",
|
|
82
|
+
"Ignor in lists": "Ignorer dans les listes"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Ottieni una panoramica di tutti i dispositivi offline",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Scegli i giorni in cui desideri ottenere la panoramica dei dispositivi offline:",
|
|
79
79
|
"Choose the Time:": "Scegli l'ora:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Ricevi un messaggio con una panoramica di tutti i dispositivi offline"
|
|
80
|
+
"Get a message with an overview all offline devices": "Ricevi un messaggio con una panoramica di tutti i dispositivi offline",
|
|
81
|
+
"Ignor in notifications": "Ignora nelle notifiche",
|
|
82
|
+
"Ignor in lists": "Ignora nelle liste"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Krijg een overzicht met alle offline apparaten",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Kies de dag(en) waarop je het overzicht van offline apparaten wilt zien:",
|
|
79
79
|
"Choose the Time:": "Kies de tijd:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Ontvang een bericht met een overzicht van alle offline apparaten"
|
|
80
|
+
"Get a message with an overview all offline devices": "Ontvang een bericht met een overzicht van alle offline apparaten",
|
|
81
|
+
"Ignor in notifications": "Negeren in meldingen",
|
|
82
|
+
"Ignor in lists": "Negeren in lijsten"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Uzyskaj przegląd wszystkich urządzeń offline",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Wybierz dni, w których chcesz uzyskać przegląd urządzeń offline:",
|
|
79
79
|
"Choose the Time:": "Wybierz czas:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Otrzymaj wiadomość z przeglądem wszystkich urządzeń offline"
|
|
80
|
+
"Get a message with an overview all offline devices": "Otrzymaj wiadomość z przeglądem wszystkich urządzeń offline",
|
|
81
|
+
"Ignor in notifications": "Ignoruj w powiadomieniach",
|
|
82
|
+
"Ignor in lists": "Ignoruj na listach"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Obtenha uma visão geral com todos os dispositivos offline",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Escolha o(s) dia(s) em que deseja obter a visão geral dos dispositivos offline:",
|
|
79
79
|
"Choose the Time:": "Escolha o Horário:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Receba uma mensagem com uma visão geral de todos os dispositivos offline"
|
|
80
|
+
"Get a message with an overview all offline devices": "Receba uma mensagem com uma visão geral de todos os dispositivos offline",
|
|
81
|
+
"Ignor in notifications": "Ignorar nas notificações",
|
|
82
|
+
"Ignor in lists": "Ignorar nas listas"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "Получите обзор всех автономных устройств",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "Выберите день (дни), когда вы хотите получить обзор автономных устройств:",
|
|
79
79
|
"Choose the Time:": "Выберите время:",
|
|
80
|
-
"Get a message with an overview all offline devices": "Получите сообщение с обзором всех автономных устройств"
|
|
80
|
+
"Get a message with an overview all offline devices": "Получите сообщение с обзором всех автономных устройств",
|
|
81
|
+
"Ignor in notifications": "Игнорировать в уведомлениях",
|
|
82
|
+
"Ignor in lists": "Игнорировать в списках"
|
|
81
83
|
}
|
|
@@ -77,5 +77,7 @@
|
|
|
77
77
|
"Get an overview with all offline devices": "了解所有离线设备",
|
|
78
78
|
"Choose the day(s) where you want to get the overview of offline devices:": "选择您想要获取离线设备概览的日期:",
|
|
79
79
|
"Choose the Time:": "选择时间:",
|
|
80
|
-
"Get a message with an overview all offline devices": "获取包含所有离线设备概览的消息"
|
|
80
|
+
"Get a message with an overview all offline devices": "获取包含所有离线设备概览的消息",
|
|
81
|
+
"Ignor in notifications": "忽略通知",
|
|
82
|
+
"Ignor in lists": "在列表中忽略"
|
|
81
83
|
}
|
|
Binary file
|
package/admin/jsonConfig.json
CHANGED
|
@@ -74,12 +74,19 @@
|
|
|
74
74
|
"lg": 3,
|
|
75
75
|
"label": "HmiP"
|
|
76
76
|
},
|
|
77
|
-
"
|
|
77
|
+
"hmrpcDevices": {
|
|
78
78
|
"type": "checkbox",
|
|
79
79
|
"sm": 6,
|
|
80
80
|
"md": 6,
|
|
81
81
|
"lg": 3,
|
|
82
|
-
"label": "
|
|
82
|
+
"label": "HM-RPC"
|
|
83
|
+
},
|
|
84
|
+
"hs100Devices": {
|
|
85
|
+
"type": "checkbox",
|
|
86
|
+
"sm": 6,
|
|
87
|
+
"md": 6,
|
|
88
|
+
"lg": 3,
|
|
89
|
+
"label": "hs100"
|
|
83
90
|
},
|
|
84
91
|
"hueDevices": {
|
|
85
92
|
"type": "checkbox",
|
|
@@ -102,6 +109,20 @@
|
|
|
102
109
|
"lg": 3,
|
|
103
110
|
"label": "Jeelink"
|
|
104
111
|
},
|
|
112
|
+
"lupusecDevices": {
|
|
113
|
+
"type": "checkbox",
|
|
114
|
+
"sm": 6,
|
|
115
|
+
"md": 6,
|
|
116
|
+
"lg": 3,
|
|
117
|
+
"label": "Lupusec"
|
|
118
|
+
},
|
|
119
|
+
"maxcubeDevices": {
|
|
120
|
+
"type": "checkbox",
|
|
121
|
+
"sm": 6,
|
|
122
|
+
"md": 6,
|
|
123
|
+
"lg": 3,
|
|
124
|
+
"label": "Maxcube"
|
|
125
|
+
},
|
|
105
126
|
"merossDevices": {
|
|
106
127
|
"type": "checkbox",
|
|
107
128
|
"sm": 6,
|
|
@@ -716,25 +737,37 @@
|
|
|
716
737
|
"md": 12,
|
|
717
738
|
"lg": 12,
|
|
718
739
|
"items": [
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
740
|
+
{
|
|
741
|
+
"type": "selectSendTo",
|
|
742
|
+
"title": "Choose which devices should be excluded",
|
|
743
|
+
"attr": "devices",
|
|
744
|
+
"filter": false,
|
|
745
|
+
"allowAddByFilter": false,
|
|
746
|
+
"sort": false,
|
|
747
|
+
"jsonData": "{\"deviceName\":\"${globalData.deviceName}\",\"adapter\":\"${globalData.adapter}\",\"path\":\"${globalData.path}\"}",
|
|
748
|
+
"command": "devicesList",
|
|
749
|
+
"width": "60%"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"type":"checkbox",
|
|
753
|
+
"title": "Ignor in notifications",
|
|
754
|
+
"attr": "checkIgnorNotify",
|
|
755
|
+
"width": "15%",
|
|
756
|
+
"alsoDependsOn":[
|
|
757
|
+
"devices"
|
|
758
|
+
]
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"type":"checkbox",
|
|
762
|
+
"title": "Ignor in lists",
|
|
763
|
+
"attr": "checkIgnorLists",
|
|
764
|
+
"width": "10%",
|
|
765
|
+
"alsoDependsOn":[
|
|
766
|
+
"devices"
|
|
767
|
+
]
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
]
|
|
738
771
|
}
|
|
739
772
|
}
|
|
740
773
|
},
|
|
@@ -930,16 +963,28 @@
|
|
|
930
963
|
"hidden": "!data.hmiPDevices",
|
|
931
964
|
"hideOnlyControl": false
|
|
932
965
|
},
|
|
933
|
-
"
|
|
966
|
+
"hmrpcMaxMinutes": {
|
|
934
967
|
"type": "number",
|
|
935
968
|
"min": -1,
|
|
936
969
|
"max": 100000,
|
|
937
970
|
"sm": 6,
|
|
938
971
|
"md": 6,
|
|
939
972
|
"lg": 3,
|
|
940
|
-
"label": "
|
|
973
|
+
"label": "HM-RPC",
|
|
974
|
+
"help": "in minutes",
|
|
975
|
+
"hidden": "!data.hmrpcDevices",
|
|
976
|
+
"hideOnlyControl": false
|
|
977
|
+
},
|
|
978
|
+
"hs100MaxMinutes": {
|
|
979
|
+
"type": "number",
|
|
980
|
+
"min": 0,
|
|
981
|
+
"max": 100000,
|
|
982
|
+
"sm": 6,
|
|
983
|
+
"md": 6,
|
|
984
|
+
"lg": 3,
|
|
985
|
+
"label": "hs100",
|
|
941
986
|
"help": "in minutes",
|
|
942
|
-
"hidden": "!data.
|
|
987
|
+
"hidden": "!data.hs100Devices",
|
|
943
988
|
"hideOnlyControl": false
|
|
944
989
|
},
|
|
945
990
|
"hueMaxMinutes": {
|
|
@@ -978,6 +1023,30 @@
|
|
|
978
1023
|
"hidden": "!data.jeelinkDevices",
|
|
979
1024
|
"hideOnlyControl": false
|
|
980
1025
|
},
|
|
1026
|
+
"lupusecMaxMinutes": {
|
|
1027
|
+
"type": "number",
|
|
1028
|
+
"min": -1,
|
|
1029
|
+
"max": 100000,
|
|
1030
|
+
"sm": 6,
|
|
1031
|
+
"md": 6,
|
|
1032
|
+
"lg": 3,
|
|
1033
|
+
"label": "Lupusec",
|
|
1034
|
+
"help": "in minutes",
|
|
1035
|
+
"hidden": "!data.lupusecDevices",
|
|
1036
|
+
"hideOnlyControl": false
|
|
1037
|
+
},
|
|
1038
|
+
"maxcubeMaxMinutes": {
|
|
1039
|
+
"type": "number",
|
|
1040
|
+
"min": -1,
|
|
1041
|
+
"max": 100000,
|
|
1042
|
+
"sm": 6,
|
|
1043
|
+
"md": 6,
|
|
1044
|
+
"lg": 3,
|
|
1045
|
+
"label": "Maxcube",
|
|
1046
|
+
"help": "in minutes",
|
|
1047
|
+
"hidden": "!data.maxcubeDevices",
|
|
1048
|
+
"hideOnlyControl": false
|
|
1049
|
+
},
|
|
981
1050
|
"merossMaxMinutes": {
|
|
982
1051
|
"type": "number",
|
|
983
1052
|
"min": -1,
|
|
@@ -1002,6 +1071,18 @@
|
|
|
1002
1071
|
"hidden": "!data.mihomeDevices",
|
|
1003
1072
|
"hideOnlyControl": false
|
|
1004
1073
|
},
|
|
1074
|
+
"mihomeGWMaxMinutes": {
|
|
1075
|
+
"type": "number",
|
|
1076
|
+
"min": -1,
|
|
1077
|
+
"max": 100000,
|
|
1078
|
+
"sm": 6,
|
|
1079
|
+
"md": 6,
|
|
1080
|
+
"lg": 3,
|
|
1081
|
+
"label": "MiHome Gateway",
|
|
1082
|
+
"help": "in minutes",
|
|
1083
|
+
"hidden": "!data.mihomeDevices",
|
|
1084
|
+
"hideOnlyControl": false
|
|
1085
|
+
},
|
|
1005
1086
|
"mihomeVacuumMaxMinutes": {
|
|
1006
1087
|
"type": "number",
|
|
1007
1088
|
"min": -1,
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "device-watcher",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.0.1": {
|
|
7
|
+
"en": "If the device is offline, set signal strength to '0%'\nIf the device is offline, set battery to ' - '\nrepair some small issues in the lists",
|
|
8
|
+
"de": "Ist das Gerät offline, setzen Sie Signalstärke auf 0%\nWenn das Gerät offline ist, setzen Sie Batterie auf ' - '\neinige kleine probleme in den listen reparieren",
|
|
9
|
+
"ru": "Если устройство оффлайн, установите силу сигнала до 0%\nЕсли устройство оффлайн, установите аккумулятор в ' - '\nотремонтировать некоторые небольшие проблемы в списках",
|
|
10
|
+
"pt": "Se o dispositivo estiver offline, defina a força do sinal para 0%\nSe o dispositivo estiver offline, configure a bateria para ' - '\nreparar alguns pequenos problemas nas listas",
|
|
11
|
+
"nl": "Als het apparaat offline is, zet een signaalstilstand op 0%\nAls het apparaat offline is, zet dan batterij op '\nrepareer wat kleine kwesties in de lijst",
|
|
12
|
+
"fr": "Si l'appareil est hors ligne, définir la résistance du signal à 0%\nSi l'appareil est hors ligne, régler la batterie à ' - '\nréparer quelques petits problèmes dans les listes",
|
|
13
|
+
"it": "Se il dispositivo è offline, impostare la forza del segnale a 0%\nSe il dispositivo è offline, impostare la batteria a ' - '\nriparare alcuni piccoli problemi nelle liste",
|
|
14
|
+
"es": "Si el dispositivo está fuera de línea, establece la fuerza de señal al 0%\nSi el dispositivo está fuera de línea, establece la batería a ' - '\nreparar algunas pequeñas cuestiones en las listas",
|
|
15
|
+
"pl": "Jeśli urządzenie jest offline, ustawia siłę sygnału do 0%\nJeśli urządzenie jest wycinane, ustawiono baterię do '- '\nwyremontowano drobne problemy w listach",
|
|
16
|
+
"uk": "Якщо пристрій вимкнено, встановлюється міцність сигналу на 0%\nЯкщо пристрій вимкнено, встановіть акумулятор до ' - '\nремонт деяких невеликих питань у переліках",
|
|
17
|
+
"zh-cn": "如果装置落空,信号强度达到0%\n如果装置不线,便将电池到该地。\n在名单中修理一些小型问题"
|
|
18
|
+
},
|
|
19
|
+
"2.0.0": {
|
|
20
|
+
"en": "added Lupusec, HS100 adapter, Zigbee2MQTT and MaxCube\nchanged name of Homematic to HM-RPC\nmade a completly makeover of the blacklist\nclean up the code and shorten some",
|
|
21
|
+
"de": "lupusec, HS100 Adapter, Zigbee2MQTT und MaxCube\ngeänderter Name von Homematic zu HM-RPC\naus einem kompletten makeover der blacklist\nden code reinigen und einige verkürzen",
|
|
22
|
+
"ru": "добавлено Lupusec, HS100 адаптер, Zigbee2MQTT и MaxCube\nизменено имя Homematic в HM-RPC\nсделал полный макияж черного списка\nочистить код и сократить некоторые",
|
|
23
|
+
"pt": "adicionado Lupusec, adaptador HS100, Zigbee2MQTT e MaxCube\nnome alterado de Homematic para HM-RPC\nfez uma reforma completa da lista negra\nlimpar o código e encurtar alguns",
|
|
24
|
+
"nl": "voegde Lupusec toe, HS100 adapter, Zigbee2MQT en MaxCube\nveranderde naam van Homema aan HM-RPC\n_\nruim de code op en verklein wat",
|
|
25
|
+
"fr": "lupusec, adaptateur HS100, Zigbee2MQTT et MaxCube\nchangement de nom de Homematic à HM-RPC\nfait un complet de la liste noire\nnettoyer le code et raccourcir certains",
|
|
26
|
+
"it": "aggiunto Lupusec, adattatore HS100, Zigbee2MQTT e MaxCube\ncambiato nome di Homematic a HM-RPC\nreso completo della lista nera\npulire il codice e accorciare alcuni",
|
|
27
|
+
"es": "añadido Lupusec, adaptador HS100, Zigbee2MQTT y MaxCube\ncambio de nombre de Homematic a HM-RPC\nhizo un cambio completly de la lista negra\nlimpiar el código y acortar algunos",
|
|
28
|
+
"pl": "lupusec, adapter HS100, Zigbee2MQTT i MaxCube\nzmienił nazwę Homematic na HM-RPC\nudało się to zrobić zupełnienie czarnej listy\nczyścił kod i skrócił niektóre z nich",
|
|
29
|
+
"uk": "додано Lupusec, HS100 адаптер, Zigbee2MQTT і MaxCube\nзмінено назву Homematic до HM-RPC\nвиготовлений комплетально макіяж чорного списку\nочистити код і скорочувати деякі",
|
|
30
|
+
"zh-cn": "加上Lupusec,HS100适应者,Zigbee2MQTT和MaxCube\n家庭名称改为HM-RPC\n填写黑名单\na. 守则的清理和缩短某些人"
|
|
31
|
+
},
|
|
6
32
|
"1.1.0": {
|
|
7
33
|
"en": "removed indicatoren for daily sent messages\nchanged selector for shelly devices\nadded Zigbee2MQTT adapter\nadded cron function to use own time for daily overview messages",
|
|
8
34
|
"de": "entfernte anzeige für täglich gesendete nachrichten\ngeänderter selektor für shelly-geräte\nzigbee2MQTT Adapter hinzugefügt\nzusätzliche cron-funktion, um eigene zeit für tägliche übersichtsnachrichten zu verwenden",
|
|
@@ -62,30 +88,6 @@
|
|
|
62
88
|
"es": "muchos cambios de código, comentarios y manejo de errores",
|
|
63
89
|
"pl": "wiele zmian kodu, komentarzy i obsługi błędów",
|
|
64
90
|
"zh-cn": "守则、评论和错误处理的许多变化"
|
|
65
|
-
},
|
|
66
|
-
"0.2.3": {
|
|
67
|
-
"en": "many changes of code, comments and error handling",
|
|
68
|
-
"de": "viele änderungen von code, kommentaren und fehlerbehandlung",
|
|
69
|
-
"ru": "много изменений кода, комментариев и обработки ошибок",
|
|
70
|
-
"pt": "muitas mudanças de código, comentários e manipulação de erros",
|
|
71
|
-
"nl": "veel veranderingen van code, commentaar en fouten",
|
|
72
|
-
"fr": "de nombreux changements de code, de commentaires et de traitement des erreurs",
|
|
73
|
-
"it": "molte modifiche di codice, commenti e gestione degli errori",
|
|
74
|
-
"es": "muchos cambios de código, comentarios y manejo de errores",
|
|
75
|
-
"pl": "wiele zmian kodu, komentarzy i obsługi błędów",
|
|
76
|
-
"zh-cn": "守则、评论和错误处理的许多变化"
|
|
77
|
-
},
|
|
78
|
-
"0.2.2": {
|
|
79
|
-
"en": "- fixed translations\n- added sentry\n- added nuki battery state",
|
|
80
|
-
"de": "- feste übersetzungen\n- zusätzliche sendung\n- hinzugefügt nuki batteriezustand",
|
|
81
|
-
"ru": "- фиксированные переводы\n- добавлена отправка\n- добавлено состояние батареи nuki",
|
|
82
|
-
"pt": "- traduções fixas\n- enviado adicionado\n- adicionado estado da bateria nuki",
|
|
83
|
-
"nl": "vertaling:\n- vertaling:\n- vertaling:",
|
|
84
|
-
"fr": "- traductions fixes\n- envoi ajouté\n- l'état de la batterie nuki ajouté",
|
|
85
|
-
"it": "- traduzioni fisse\n- invio aggiunto\n- stato della batteria nuki aggiunto",
|
|
86
|
-
"es": "- traducciones fijas\n- centinela agregada\n- estado de batería de nuki añadido",
|
|
87
|
-
"pl": "- poprawne tłumaczenia\n- dodanie\n- dodanie stanu nuki",
|
|
88
|
-
"zh-cn": "- 固定翻译\n- 增派送\n- 增加电池国"
|
|
89
91
|
}
|
|
90
92
|
},
|
|
91
93
|
"titleLang": {
|
|
@@ -146,6 +148,7 @@
|
|
|
146
148
|
"adminUI": {
|
|
147
149
|
"config": "json"
|
|
148
150
|
},
|
|
151
|
+
"messagebox": true,
|
|
149
152
|
"docs": {
|
|
150
153
|
"en": [
|
|
151
154
|
"docs/en/README.md"
|
|
@@ -175,7 +178,7 @@
|
|
|
175
178
|
"sonoffDevices": false,
|
|
176
179
|
"shellyDevices": false,
|
|
177
180
|
"hmiPDevices": false,
|
|
178
|
-
"
|
|
181
|
+
"hmrpcDevices": false,
|
|
179
182
|
"deconzDevices": false,
|
|
180
183
|
"zwaveDevices": false,
|
|
181
184
|
"fritzdectDevices": false,
|
|
@@ -183,7 +186,10 @@
|
|
|
183
186
|
"harmonyDevices": false,
|
|
184
187
|
"hueDevices": false,
|
|
185
188
|
"hueExtDevices": false,
|
|
189
|
+
"hs100Devices": false,
|
|
186
190
|
"jeelinkDevices": false,
|
|
191
|
+
"lupusecDevices": false,
|
|
192
|
+
"maxcubeDevices": false,
|
|
187
193
|
"merossDevices": false,
|
|
188
194
|
"nukiExtDevices": false,
|
|
189
195
|
"pingDevices": false,
|
|
@@ -250,12 +256,16 @@
|
|
|
250
256
|
"hamMaxMinutes": 300,
|
|
251
257
|
"harmonyMaxMinutes": -1,
|
|
252
258
|
"hmiPMaxMinutes": -1,
|
|
253
|
-
"
|
|
259
|
+
"hmrpcMaxMinutes": -1,
|
|
260
|
+
"hs100MaxMinutes": 300,
|
|
254
261
|
"hueMaxMinutes": -1,
|
|
255
262
|
"hueextMaxMinutes": -1,
|
|
256
263
|
"jeelinkMaxMinutes": 300,
|
|
264
|
+
"lupusecMaxMinutes": -1,
|
|
265
|
+
"maxcubeMaxMinutes": -1,
|
|
257
266
|
"merossMaxMinutes": -1,
|
|
258
267
|
"mihomeMaxMinutes": 300,
|
|
268
|
+
"mihomeGWMaxMinutes": -1,
|
|
259
269
|
"mihomeVacuumMaxMinutes": -1,
|
|
260
270
|
"netatmoMaxMinutes": 300,
|
|
261
271
|
"nukiextendMaxMinutes": 300,
|