iobroker.alarm 3.3.13 → 3.4.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
@@ -29,6 +29,9 @@
29
29
  Placeholder for the next version (at the beginning of the line):
30
30
  ### **WORK IN PROGRESS**
31
31
  -->
32
+ ### 3.4.0 (2023-10-03)
33
+ * (misanorot) fixed #168
34
+
32
35
  ### 3.3.13 (2023-09-19)
33
36
  * (misanorot) fixed #147
34
37
 
@@ -41,9 +44,6 @@
41
44
  ### 3.3.10 (2023-03-31)
42
45
  * (misanorot) fixed litle speech and presence bug
43
46
 
44
- ### 3.3.9 (2023-01-14)
45
- * (misanorot) fixed issues at burgle log
46
-
47
47
  ## License
48
48
  MIT License
49
49
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "alarm",
4
- "version": "3.3.13",
4
+ "version": "3.4.0",
5
5
  "news": {
6
+ "3.4.0": {
7
+ "en": "fixed #168",
8
+ "de": "fest #168",
9
+ "ru": "исправлено #168",
10
+ "pt": "fixo #168",
11
+ "nl": "vertaling:",
12
+ "fr": "fixe #168",
13
+ "it": "fisso #168",
14
+ "es": "fijo #168",
15
+ "pl": "#168",
16
+ "uk": "фіксована #168",
17
+ "zh-cn": "固定编号168"
18
+ },
6
19
  "3.3.13": {
7
20
  "en": "fixed #147",
8
21
  "de": "fest #147",
@@ -80,19 +93,6 @@
80
93
  "pl": "prawidłowe problemy z burgle logiem",
81
94
  "uk": "виправлені питання в burgle log",
82
95
  "zh-cn": "堡固定问题"
83
- },
84
- "3.3.7": {
85
- "en": "fixed issues at presence light trigger",
86
- "de": "feste probleme bei präsenzlichtauslöser",
87
- "ru": "фиксированные проблемы при наличии светового триггера",
88
- "pt": "problemas fixos no gatilho de luz de presença",
89
- "nl": "vertaling:",
90
- "fr": "problèmes fixes à la lumière de présence",
91
- "it": "problemi fissi alla presenza di trigger leggero",
92
- "es": "problemas fijos en el gatillo de luz presencial",
93
- "pl": "rzeczywiste problemy w obecności światła spustowego",
94
- "uk": "виправлені проблеми при наявності світлового запуску",
95
- "zh-cn": "b. 存在轻易事件的固定问题"
96
96
  }
97
97
  },
98
98
  "title": "Alarm",
@@ -859,9 +859,10 @@
859
859
  "2": "sharp inside",
860
860
  "3": "burglary",
861
861
  "4": "night rest",
862
- "5": "gets_activated",
863
- "6": "activation_failed",
864
- "7": "activation_aborted"
862
+ "5": "gets activated",
863
+ "6": "activation failed",
864
+ "7": "activation aborted",
865
+ "8": "silent alarm"
865
866
  },
866
867
  "read": true,
867
868
  "write": false
package/main.js CHANGED
@@ -335,6 +335,7 @@ class Alarm extends utils.Adapter {
335
335
  if (silent) {
336
336
  this.setState('status.silent_alarm', true, true);
337
337
  this.setState('status.state', 'silent alarm', true);
338
+ this.setState('status.state_list', 8, true);
338
339
  if (this.config.send_alarm_silent_inside && indoor) this.messages(`${this.config.log_burgle} ${name}`);
339
340
  if (this.config.send_alarm_silent && !indoor) this.messages(`${this.config.log_burgle} ${name}`);
340
341
  if (this.config.silent_flash > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.alarm",
3
- "version": "3.3.13",
3
+ "version": "3.4.0",
4
4
  "description": "Your own lttle alarm system",
5
5
  "author": {
6
6
  "name": "misanorot",
@@ -33,16 +33,16 @@
33
33
  "@iobroker/adapter-dev": "^1.2.0",
34
34
  "@iobroker/testing": "^4.1.0",
35
35
  "@tsconfig/node16": "^16.1.1",
36
- "@types/chai": "^4.3.5",
37
- "@types/chai-as-promised": "^7.1.5",
36
+ "@types/chai": "^4.3.6",
37
+ "@types/chai-as-promised": "^7.1.6",
38
38
  "@types/mocha": "^10.0.1",
39
- "@types/node": "^20.5.7",
40
- "@types/proxyquire": "^1.3.28",
39
+ "@types/node": "^20.8.0",
40
+ "@types/proxyquire": "^1.3.29",
41
41
  "@types/sinon": "^10.0.15",
42
42
  "@types/sinon-chai": "^3.2.9",
43
- "chai": "^4.3.8",
43
+ "chai": "^4.3.10",
44
44
  "chai-as-promised": "^7.1.1",
45
- "eslint": "^8.48.0",
45
+ "eslint": "^8.50.0",
46
46
  "mocha": "^10.2.0",
47
47
  "proxyquire": "^2.1.3",
48
48
  "sinon": "^15.2.0",