matterbridge 2.2.5-dev.4 → 2.2.6-dev.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/CHANGELOG.md +104 -66
- package/dist/frontend.js +18 -15
- package/dist/matterbridge.js +45 -3
- package/dist/matterbridgeEndpoint.js +2 -2
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/{main.839276c2.js → main.a45801ac.js} +3 -3
- package/frontend/build/static/js/{main.839276c2.js.map → main.a45801ac.js.map} +1 -1
- package/npm-shrinkwrap.json +51 -51
- package/package.json +3 -3
- /package/frontend/build/static/js/{main.839276c2.js.LICENSE.txt → main.a45801ac.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge and sponsoring it.
|
|
6
6
|
|
|
7
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
8
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="120">
|
|
9
|
+
</a>
|
|
10
|
+
|
|
7
11
|
### Home Assistant
|
|
8
12
|
|
|
9
13
|
If you want to run Matterbridge in Home Assistant please use the official add-on https://github.com/Luligu/matterbridge-home-assistant-addon that also has Ingress and side panel.
|
|
@@ -13,7 +17,41 @@ It is also available the official Matterbridge Home Assistant plugin https://git
|
|
|
13
17
|
|
|
14
18
|
Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord group: https://discord.gg/QX58CDe6hd.
|
|
15
19
|
|
|
16
|
-
##
|
|
20
|
+
## New plugin matterbridge-webhooks
|
|
21
|
+
|
|
22
|
+
A new plugin has been added: https://github.com/Luligu/matterbridge-webhooks
|
|
23
|
+
|
|
24
|
+
It allows you to expose any webhooks to Matter.
|
|
25
|
+
|
|
26
|
+
Features:
|
|
27
|
+
|
|
28
|
+
- The webhooks parameters can easily be entered in the frontend.
|
|
29
|
+
- It is possible to choose the method: GET or POST.
|
|
30
|
+
- The webhook can be tested directly in the frontend.
|
|
31
|
+
|
|
32
|
+
## [2.2.6] - 2025-03-29
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- [matterbridge]: New plugin matterbridge-webhooks.
|
|
37
|
+
- [ipv4address]: The ipv4address entered by the user on the command line or on the frontend is validated on startup. If the value is not correct an error message is logged and the parameter is discarded.
|
|
38
|
+
- [ipv6address]: The ipv6address entered by the user on the command line or on the frontend is validated on startup. If the value is not correct an error message is logged and the parameter is discarded.
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- [package]: Update dependencies.
|
|
43
|
+
- [package]: Update matter.js to 0.12.6.
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- [ipv6address]: The ipv6address can be entered in the frontend with the scopeid. On Windows the format is ipv6%scopeid (i.e. fe80::5a71:b2f6:7bc8:d00b%8). On Linux the format is ipv6%interfaceName (i.e. fe80::5a71:b2f6:7bc8:d00b%eth0)
|
|
48
|
+
- [onOff]: The onOff cluster created from createOnOffClusterServer() is not correct (no Lighting feature).
|
|
49
|
+
|
|
50
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
51
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
52
|
+
</a>
|
|
53
|
+
|
|
54
|
+
## [2.2.5] - 2025-03-19
|
|
17
55
|
|
|
18
56
|
### Added
|
|
19
57
|
|
|
@@ -36,7 +74,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
36
74
|
- [frontend]: Fixed case where more then one plugin has select in the Home page Devices panel.
|
|
37
75
|
|
|
38
76
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
39
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
77
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
40
78
|
</a>
|
|
41
79
|
|
|
42
80
|
## [2.2.4] - 2025-03-10
|
|
@@ -51,7 +89,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
51
89
|
- [package]: Update dependencies.
|
|
52
90
|
|
|
53
91
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
54
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
92
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
55
93
|
</a>
|
|
56
94
|
|
|
57
95
|
## [2.2.3] - 2025-03-05
|
|
@@ -69,7 +107,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
69
107
|
- [matterbridge]: False error notification on configure plugin.
|
|
70
108
|
|
|
71
109
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
72
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
110
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
73
111
|
</a>
|
|
74
112
|
|
|
75
113
|
## [2.2.2] - 2025-03-05
|
|
@@ -87,7 +125,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
87
125
|
- [frontend]: The config editor cannot be opened a second time before the restart.
|
|
88
126
|
|
|
89
127
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
90
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
128
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
91
129
|
</a>
|
|
92
130
|
|
|
93
131
|
## [2.2.1] - 2025-03-02
|
|
@@ -106,7 +144,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
106
144
|
- [package]: Update matter.js to 0.12.5.
|
|
107
145
|
|
|
108
146
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
109
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
147
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
110
148
|
</a>
|
|
111
149
|
|
|
112
150
|
## [2.2.0] - 2025-02-27
|
|
@@ -135,7 +173,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
135
173
|
- [matterbridge]: Check endpoint state in /api/devices.
|
|
136
174
|
|
|
137
175
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
138
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
176
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
139
177
|
</a>
|
|
140
178
|
|
|
141
179
|
## [2.1.5] - 2025-02-11
|
|
@@ -160,7 +198,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
160
198
|
- [matterbridge]: Refactor reset devices adding a wait of 1 sec to allow matter to deliver all messages before shutting down.
|
|
161
199
|
|
|
162
200
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
163
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
201
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
164
202
|
</a>
|
|
165
203
|
|
|
166
204
|
## [2.1.4] - 2025-02-07
|
|
@@ -177,7 +215,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
177
215
|
- [matter.js]: Since matter.js storage cannot properly encode non latin names, they are encoded before passing them to matter.js.
|
|
178
216
|
|
|
179
217
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
180
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
218
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
181
219
|
</a>
|
|
182
220
|
|
|
183
221
|
## [2.1.3] - 2025-02-04
|
|
@@ -191,7 +229,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
191
229
|
- [package]: Update dependencies.
|
|
192
230
|
|
|
193
231
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
194
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
232
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
195
233
|
</a>
|
|
196
234
|
|
|
197
235
|
## [2.1.2] - 2025-02-03
|
|
@@ -208,7 +246,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
208
246
|
- [frontend]: Fixed update matterbridge.
|
|
209
247
|
|
|
210
248
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
211
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
249
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
212
250
|
</a>
|
|
213
251
|
|
|
214
252
|
## [2.1.1] - 2025-02-02
|
|
@@ -218,7 +256,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
218
256
|
- [matter.js]: Fix close server nodes.
|
|
219
257
|
|
|
220
258
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
221
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
259
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
222
260
|
</a>
|
|
223
261
|
|
|
224
262
|
## [2.1.0] - 2025-02-02
|
|
@@ -240,7 +278,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
240
278
|
- [package]: Update matter.js to 0.12.2.
|
|
241
279
|
|
|
242
280
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
243
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
281
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
244
282
|
</a>
|
|
245
283
|
|
|
246
284
|
## [2.0.0] - 2025-01-20
|
|
@@ -271,7 +309,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
271
309
|
- [sessions]: Fixed the case when Active session was not reporting correctly.
|
|
272
310
|
|
|
273
311
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
274
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
312
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
275
313
|
</a>
|
|
276
314
|
|
|
277
315
|
## [1.7.3] - 2025-01-11
|
|
@@ -286,7 +324,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
286
324
|
- [package]: Workflows use node 22.x.
|
|
287
325
|
|
|
288
326
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
289
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
327
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
290
328
|
</a>
|
|
291
329
|
|
|
292
330
|
## [1.7.2] - 2025-01-11
|
|
@@ -313,7 +351,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
313
351
|
- [frontend]: Fixed restart that was not working correctly in Ingress.
|
|
314
352
|
|
|
315
353
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
316
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
354
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
317
355
|
</a>
|
|
318
356
|
|
|
319
357
|
## [1.7.1] - 2025-01-07
|
|
@@ -336,7 +374,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
336
374
|
- [frontend]: Fixed WebSocketProvider online.
|
|
337
375
|
|
|
338
376
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
339
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
377
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
340
378
|
</a>
|
|
341
379
|
|
|
342
380
|
## [1.7.0] - 2025-01-04
|
|
@@ -369,7 +407,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
|
|
|
369
407
|
- [frontend]: Fixed device/cluster api that was not working in Ingress.
|
|
370
408
|
|
|
371
409
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
372
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
410
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
373
411
|
</a>
|
|
374
412
|
|
|
375
413
|
## [1.6.7] - 2024-12-15
|
|
@@ -398,7 +436,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
398
436
|
- [Device]: Fix addChildDeviceType methods to include debug parameter in MatterbridgeDevice instantiation.
|
|
399
437
|
|
|
400
438
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
401
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
439
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
402
440
|
</a>
|
|
403
441
|
|
|
404
442
|
## [1.6.6] - 2024-12-12
|
|
@@ -435,7 +473,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
435
473
|
- [device]: Fix typos in Device and Endpoint.
|
|
436
474
|
|
|
437
475
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
438
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
476
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
439
477
|
</a>
|
|
440
478
|
|
|
441
479
|
## [1.6.5] - 2024-12-02
|
|
@@ -447,7 +485,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
447
485
|
- [package]: Update dependencies.
|
|
448
486
|
|
|
449
487
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
450
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
488
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
451
489
|
</a>
|
|
452
490
|
|
|
453
491
|
## [1.6.4] - 2024-11-29
|
|
@@ -457,7 +495,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
457
495
|
- [matter.js]: Update to matter.js 0.11.7.
|
|
458
496
|
|
|
459
497
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
460
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
498
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
461
499
|
</a>
|
|
462
500
|
|
|
463
501
|
## [1.6.3] - 2024-11-27
|
|
@@ -472,7 +510,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
472
510
|
- [matter.js]: Update to matter.js 0.11.6.
|
|
473
511
|
|
|
474
512
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
475
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
513
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
476
514
|
</a>
|
|
477
515
|
|
|
478
516
|
## [1.6.2] - 2024-11-25
|
|
@@ -506,7 +544,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
506
544
|
- [energySensor]: Fixed wrong types on ElectricalEnergyMeasurementCluster ElectricalPowerMeasurementCluster.
|
|
507
545
|
|
|
508
546
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
509
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
547
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
510
548
|
</a>
|
|
511
549
|
|
|
512
550
|
## [1.6.1] - 2024-11-02
|
|
@@ -524,7 +562,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
524
562
|
- [package]: Update dependencies.
|
|
525
563
|
|
|
526
564
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
527
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
565
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
528
566
|
</a>
|
|
529
567
|
|
|
530
568
|
## [1.6.0] - 2024-10-28
|
|
@@ -544,7 +582,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
544
582
|
- [package]: Update dependencies.
|
|
545
583
|
|
|
546
584
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
547
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
585
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
548
586
|
</a>
|
|
549
587
|
|
|
550
588
|
## [1.5.10] - 2024-10-01
|
|
@@ -556,7 +594,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
556
594
|
- [package]: Update dependencies.
|
|
557
595
|
|
|
558
596
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
559
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
597
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
560
598
|
</a>
|
|
561
599
|
|
|
562
600
|
## [1.5.9] - 2024-09-23
|
|
@@ -572,7 +610,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
572
610
|
- [package]: Update dependencies.
|
|
573
611
|
|
|
574
612
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
575
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
613
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
576
614
|
</a>
|
|
577
615
|
|
|
578
616
|
## [1.5.8] - 2024-09-21
|
|
@@ -593,7 +631,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
593
631
|
- [matterbridge]: Reset session informations when the controllers are not connected.
|
|
594
632
|
|
|
595
633
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
596
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
634
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
597
635
|
</a>
|
|
598
636
|
|
|
599
637
|
## [1.5.7] - 2024-09-17
|
|
@@ -610,7 +648,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
610
648
|
- [package]: Update dependencies.
|
|
611
649
|
|
|
612
650
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
613
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
651
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
614
652
|
</a>
|
|
615
653
|
|
|
616
654
|
## [1.5.6] - 2024-09-13
|
|
@@ -627,7 +665,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
627
665
|
- [package]: Updated dependencies.
|
|
628
666
|
|
|
629
667
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
630
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
668
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
631
669
|
</a>
|
|
632
670
|
|
|
633
671
|
## [1.5.5] - 2024-09-09
|
|
@@ -640,7 +678,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
640
678
|
- [package]: Update dependencies.
|
|
641
679
|
|
|
642
680
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
643
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
681
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
644
682
|
</a>
|
|
645
683
|
|
|
646
684
|
## [1.5.4] - 2024-09-05
|
|
@@ -652,7 +690,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
652
690
|
- [package]: Removed all local matter 1.3 clusters now present in matter.js.
|
|
653
691
|
|
|
654
692
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
655
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
693
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
656
694
|
</a>
|
|
657
695
|
|
|
658
696
|
## [1.5.3] - 2024-09-04
|
|
@@ -669,7 +707,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
669
707
|
- [package]: Removed long deprecated exports.
|
|
670
708
|
|
|
671
709
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
672
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
710
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
673
711
|
</a>
|
|
674
712
|
|
|
675
713
|
## [1.5.2] - 2024-08-30
|
|
@@ -698,7 +736,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
698
736
|
- [spawn]: Modified the install or update function to add more info in the log.
|
|
699
737
|
|
|
700
738
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
701
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
739
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
702
740
|
</a>
|
|
703
741
|
|
|
704
742
|
## [1.5.1] - 2024-08-28
|
|
@@ -712,7 +750,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
712
750
|
- [package]: Update dependencies.
|
|
713
751
|
|
|
714
752
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
715
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
753
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
716
754
|
</a>
|
|
717
755
|
|
|
718
756
|
## [1.5.0] - 2024-08-27
|
|
@@ -733,7 +771,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
733
771
|
- [package]: Update dependencies.
|
|
734
772
|
|
|
735
773
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
736
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
774
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
737
775
|
</a>
|
|
738
776
|
|
|
739
777
|
## [1.4.3] - 2024-08-22
|
|
@@ -755,7 +793,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
755
793
|
- [package]: Update matter-history to 1.1.7.
|
|
756
794
|
|
|
757
795
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
758
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
796
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
759
797
|
</a>
|
|
760
798
|
|
|
761
799
|
## [1.4.2] - 2024-08-20
|
|
@@ -776,7 +814,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
776
814
|
- [package]: Fixed dependencies.
|
|
777
815
|
|
|
778
816
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
779
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
817
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
780
818
|
</a>
|
|
781
819
|
|
|
782
820
|
## [1.4.1] - 2024-07-28
|
|
@@ -793,7 +831,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
793
831
|
- [matter]: Update matter.js to 0.9.4.
|
|
794
832
|
|
|
795
833
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
796
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
834
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
797
835
|
</a>
|
|
798
836
|
|
|
799
837
|
## [1.4.0] - 2024-07-23
|
|
@@ -816,7 +854,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
816
854
|
- [matterbridge]: Fixed utils export
|
|
817
855
|
|
|
818
856
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
819
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
857
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
820
858
|
</a>
|
|
821
859
|
|
|
822
860
|
## [1.3.13] - 2024-07-11
|
|
@@ -835,7 +873,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
835
873
|
- [matterbridge]: Fixed load plugin when the don't have author and description.
|
|
836
874
|
|
|
837
875
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
838
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
876
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
839
877
|
</a>
|
|
840
878
|
|
|
841
879
|
## [1.3.12] - 2024-07-10
|
|
@@ -852,7 +890,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
852
890
|
- [frontend]: Fix Home for mobile.
|
|
853
891
|
|
|
854
892
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
855
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
893
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
856
894
|
</a>
|
|
857
895
|
|
|
858
896
|
## [1.3.11] - 2024-07-08
|
|
@@ -869,7 +907,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
869
907
|
- [dependencies]: Update dependencies.
|
|
870
908
|
|
|
871
909
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
872
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
910
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
873
911
|
</a>
|
|
874
912
|
|
|
875
913
|
## [1.3.10] - 2024-07-05
|
|
@@ -888,7 +926,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
888
926
|
- [dependencies]: Update dependencies.
|
|
889
927
|
|
|
890
928
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
891
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
929
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
892
930
|
</a>
|
|
893
931
|
|
|
894
932
|
## [1.3.9] - 2024-07-02
|
|
@@ -899,7 +937,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
899
937
|
- [matterbridge]: Fixed MeasurementClusters
|
|
900
938
|
|
|
901
939
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
902
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
940
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
903
941
|
</a>
|
|
904
942
|
|
|
905
943
|
## [1.3.8] - 2024-07-01
|
|
@@ -909,7 +947,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
909
947
|
- [matterbridge]: Fixed crash in childbridge mode
|
|
910
948
|
|
|
911
949
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
912
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
950
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
913
951
|
</a>
|
|
914
952
|
|
|
915
953
|
## [1.3.7] - 2024-06-30
|
|
@@ -925,7 +963,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
925
963
|
- [dependencies]: Update matter.js to 0.9.3.
|
|
926
964
|
|
|
927
965
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
928
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
966
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
929
967
|
</a>
|
|
930
968
|
|
|
931
969
|
## [1.3.6] - 2024-06-28
|
|
@@ -942,7 +980,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
942
980
|
- [matterbridgeDevice]: Fixed ElectricalEnergyMeasurement and ElectricalPowerMeasurement
|
|
943
981
|
|
|
944
982
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
945
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
983
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
946
984
|
</a>
|
|
947
985
|
|
|
948
986
|
## [1.3.5] - 2024-06-26
|
|
@@ -962,7 +1000,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
962
1000
|
- [matterbridge]: The "plugin add" method now loads, starts, and configures the plugin
|
|
963
1001
|
|
|
964
1002
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
965
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1003
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
966
1004
|
</a>
|
|
967
1005
|
|
|
968
1006
|
## [1.3.4] - 2024-06-23
|
|
@@ -972,7 +1010,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
972
1010
|
- [matterbridge]: Fixed exports
|
|
973
1011
|
|
|
974
1012
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
975
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1013
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
976
1014
|
</a>
|
|
977
1015
|
|
|
978
1016
|
## [1.3.3] - 2024-06-22
|
|
@@ -983,7 +1021,7 @@ It is possible that some controllers see them as new devices or need time to rea
|
|
|
983
1021
|
- [matterbridge]: When a plugin is in an error state, the bridge does not start to avoid causing the controllers to delete the registered devices and lose the configuration (e.g. room and automations).
|
|
984
1022
|
|
|
985
1023
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
986
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1024
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
987
1025
|
</a>
|
|
988
1026
|
|
|
989
1027
|
## [1.3.2] - 2024-06-22
|
|
@@ -1024,7 +1062,7 @@ Features:
|
|
|
1024
1062
|
- [matter.js]: Updated matter.js to 0.9.2
|
|
1025
1063
|
|
|
1026
1064
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1027
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1065
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1028
1066
|
</a>
|
|
1029
1067
|
|
|
1030
1068
|
## [1.3.1] - 2024-06-20
|
|
@@ -1036,7 +1074,7 @@ Features:
|
|
|
1036
1074
|
- [matterbridge]: Moved getPluginVersion to the start also for disabled plugins.
|
|
1037
1075
|
|
|
1038
1076
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1039
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1077
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1040
1078
|
</a>
|
|
1041
1079
|
|
|
1042
1080
|
## [1.3.0] - 2024-06-16
|
|
@@ -1069,7 +1107,7 @@ Home Automation supports (probably only like BooleanState cluster):
|
|
|
1069
1107
|
- [frontend]: Added logger level settings to reflect -matterlogger [debug | info | notice | warn | error | fatal]
|
|
1070
1108
|
|
|
1071
1109
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1072
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1110
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1073
1111
|
</a>
|
|
1074
1112
|
|
|
1075
1113
|
## [1.2.22] - 2024-06-04
|
|
@@ -1080,7 +1118,7 @@ Home Automation supports (probably only like BooleanState cluster):
|
|
|
1080
1118
|
- [matterbridge]: Default config and schema for the new plugin matterbridge-shelly
|
|
1081
1119
|
|
|
1082
1120
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1083
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1121
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1084
1122
|
</a>
|
|
1085
1123
|
|
|
1086
1124
|
## [1.2.21] - 2024-06-04
|
|
@@ -1095,7 +1133,7 @@ Home Automation supports (probably only like BooleanState cluster):
|
|
|
1095
1133
|
- [matterbridge]: Fixed the error that caused -add plugin to fail at the first run of matterbridge
|
|
1096
1134
|
|
|
1097
1135
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1098
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1136
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1099
1137
|
</a>
|
|
1100
1138
|
|
|
1101
1139
|
## [1.2.20] - 2024-06-03
|
|
@@ -1110,7 +1148,7 @@ Home Automation supports (probably only like BooleanState cluster):
|
|
|
1110
1148
|
- [matterbridge]: Log level of Plugin already configured is now info
|
|
1111
1149
|
|
|
1112
1150
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1113
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1151
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1114
1152
|
</a>
|
|
1115
1153
|
|
|
1116
1154
|
## [1.2.19] - 2024-06-01
|
|
@@ -1132,7 +1170,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1132
1170
|
- [frontend]: Added tooltip to the plugin update badge in the registered plugins window
|
|
1133
1171
|
|
|
1134
1172
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1135
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1173
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1136
1174
|
</a>
|
|
1137
1175
|
|
|
1138
1176
|
## [1.2.18] - 2024-05-28
|
|
@@ -1151,7 +1189,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1151
1189
|
- [frontend]: Added a dropdown menu in Add Remove plugin to select the plugins
|
|
1152
1190
|
|
|
1153
1191
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1154
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1192
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1155
1193
|
</a>
|
|
1156
1194
|
|
|
1157
1195
|
## [1.2.17] - 2024-05-25
|
|
@@ -1175,7 +1213,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1175
1213
|
- [matterbridge]: Added vendorId for Alexa
|
|
1176
1214
|
|
|
1177
1215
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1178
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1216
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1179
1217
|
</a>
|
|
1180
1218
|
|
|
1181
1219
|
## [1.2.16] - 2024-05-15
|
|
@@ -1194,7 +1232,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1194
1232
|
- [frontend]: Added version information badge for Matterbridge.
|
|
1195
1233
|
|
|
1196
1234
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1197
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1235
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1198
1236
|
</a>
|
|
1199
1237
|
|
|
1200
1238
|
## [1.2.15] - 2024-05-14
|
|
@@ -1209,7 +1247,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1209
1247
|
- [frontend]: Fixed the case when the latest version of Matterbridge or a plugin is not available.
|
|
1210
1248
|
|
|
1211
1249
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1212
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1250
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1213
1251
|
</a>
|
|
1214
1252
|
|
|
1215
1253
|
## [1.2.14] - 2024-05-09
|
|
@@ -1223,7 +1261,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1223
1261
|
- [frontend]: Added Error state to registered plugins
|
|
1224
1262
|
|
|
1225
1263
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1226
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1264
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1227
1265
|
</a>
|
|
1228
1266
|
|
|
1229
1267
|
## [1.2.13] - 2024-05-05
|
|
@@ -1239,7 +1277,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1239
1277
|
- [docker]: Added the docker image:dev on the docker hub with architectures: linux/amd64, linux/arm64, linux/arm/v7
|
|
1240
1278
|
|
|
1241
1279
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1242
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1280
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1243
1281
|
</a>
|
|
1244
1282
|
|
|
1245
1283
|
## [1.2.12] - 2024-04-30
|
|
@@ -1255,7 +1293,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
|
|
|
1255
1293
|
- [frontend]: Added factoryreset in the Settings page. Matterbridge will shutdown to allow the factoryreset.
|
|
1256
1294
|
|
|
1257
1295
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
1258
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
1296
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
1259
1297
|
</a>
|
|
1260
1298
|
|
|
1261
1299
|
## [1.2.11] - 2024-04-25
|