iobroker.alarm 3.0.4 → 3.0.5
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/io-package.json +13 -1
- package/main.js +1 -1
- package/package.json +3 -3
package/io-package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "alarm",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.5",
|
|
5
5
|
"news": {
|
|
6
|
+
"3.0.5": {
|
|
7
|
+
"en": "fixed pushover issue",
|
|
8
|
+
"de": "Pushover-Problem behoben",
|
|
9
|
+
"ru": "исправлена проблема с отталкиванием",
|
|
10
|
+
"pt": "problema de pushover corrigido",
|
|
11
|
+
"nl": "probleem met pushover opgelost",
|
|
12
|
+
"fr": "problème de pushover fixe",
|
|
13
|
+
"it": "risolto il problema del pushover",
|
|
14
|
+
"es": "problema de empuje fijo",
|
|
15
|
+
"pl": "naprawiony problem pushover",
|
|
16
|
+
"zh-cn": "修复了俯卧撑问题"
|
|
17
|
+
},
|
|
6
18
|
"3.0.4": {
|
|
7
19
|
"en": "changed burgle concept, added silent alarm at sharp inside, fixed little issues",
|
|
8
20
|
"de": "Einbruchkonzept geändert, stiller Alarm bei scharf Innen hinzugefügt, kleine Probleme behoben",
|
package/main.js
CHANGED
|
@@ -831,7 +831,7 @@ function messages(content){
|
|
|
831
831
|
adapter.sendTo(ele, 'send', {'text':content, 'user': A.user, 'chatId': A.chatID});
|
|
832
832
|
} else {
|
|
833
833
|
adapter.log.debug(`Send message to ${ele}, message: ${content}`);
|
|
834
|
-
adapter.sendTo(ele,
|
|
834
|
+
adapter.sendTo(ele, content);
|
|
835
835
|
}
|
|
836
836
|
});
|
|
837
837
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "github:misanorot/ioBroker.alarm",
|
|
3
|
-
"_id": "iobroker.alarm@3.0.
|
|
3
|
+
"_id": "iobroker.alarm@3.0.5",
|
|
4
4
|
"_inBundle": false,
|
|
5
5
|
"_integrity": "",
|
|
6
6
|
"_location": "/iobroker.alarm",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"#USER",
|
|
23
23
|
"/"
|
|
24
24
|
],
|
|
25
|
-
"_resolved": "github:misanorot/ioBroker.alarm#
|
|
25
|
+
"_resolved": "github:misanorot/ioBroker.alarm#ac11d89c90a892378fc191d45cdc333c507e1b74",
|
|
26
26
|
"_spec": "misanorot/ioBroker.alarm",
|
|
27
27
|
"_where": "/opt/iobroker",
|
|
28
28
|
"author": {
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"test:package": "mocha test/package --exit",
|
|
81
81
|
"test:unit": "mocha test/unit --exit"
|
|
82
82
|
},
|
|
83
|
-
"version": "3.0.
|
|
83
|
+
"version": "3.0.5"
|
|
84
84
|
}
|