matterbridge 2.2.5-dev.3 → 2.2.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.
Files changed (154) hide show
  1. package/CHANGELOG.md +70 -68
  2. package/README.md +5 -1
  3. package/bmc-button.svg +22 -0
  4. package/dist/cli.d.ts +29 -0
  5. package/dist/cli.d.ts.map +1 -0
  6. package/dist/cli.js +37 -2
  7. package/dist/cli.js.map +1 -0
  8. package/dist/cluster/export.d.ts +2 -0
  9. package/dist/cluster/export.d.ts.map +1 -0
  10. package/dist/cluster/export.js +2 -0
  11. package/dist/cluster/export.js.map +1 -0
  12. package/dist/defaultConfigSchema.d.ts +27 -0
  13. package/dist/defaultConfigSchema.d.ts.map +1 -0
  14. package/dist/defaultConfigSchema.js +23 -0
  15. package/dist/defaultConfigSchema.js.map +1 -0
  16. package/dist/deviceManager.d.ts +114 -0
  17. package/dist/deviceManager.d.ts.map +1 -0
  18. package/dist/deviceManager.js +94 -1
  19. package/dist/deviceManager.js.map +1 -0
  20. package/dist/frontend.d.ts +221 -0
  21. package/dist/frontend.d.ts.map +1 -0
  22. package/dist/frontend.js +330 -24
  23. package/dist/frontend.js.map +1 -0
  24. package/dist/index.d.ts +35 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +28 -1
  27. package/dist/index.js.map +1 -0
  28. package/dist/logger/export.d.ts +2 -0
  29. package/dist/logger/export.d.ts.map +1 -0
  30. package/dist/logger/export.js +1 -0
  31. package/dist/logger/export.js.map +1 -0
  32. package/dist/matter/behaviors.d.ts +2 -0
  33. package/dist/matter/behaviors.d.ts.map +1 -0
  34. package/dist/matter/behaviors.js +2 -0
  35. package/dist/matter/behaviors.js.map +1 -0
  36. package/dist/matter/clusters.d.ts +2 -0
  37. package/dist/matter/clusters.d.ts.map +1 -0
  38. package/dist/matter/clusters.js +2 -0
  39. package/dist/matter/clusters.js.map +1 -0
  40. package/dist/matter/devices.d.ts +2 -0
  41. package/dist/matter/devices.d.ts.map +1 -0
  42. package/dist/matter/devices.js +2 -0
  43. package/dist/matter/devices.js.map +1 -0
  44. package/dist/matter/endpoints.d.ts +2 -0
  45. package/dist/matter/endpoints.d.ts.map +1 -0
  46. package/dist/matter/endpoints.js +2 -0
  47. package/dist/matter/endpoints.js.map +1 -0
  48. package/dist/matter/export.d.ts +5 -0
  49. package/dist/matter/export.d.ts.map +1 -0
  50. package/dist/matter/export.js +2 -0
  51. package/dist/matter/export.js.map +1 -0
  52. package/dist/matter/types.d.ts +3 -0
  53. package/dist/matter/types.d.ts.map +1 -0
  54. package/dist/matter/types.js +2 -0
  55. package/dist/matter/types.js.map +1 -0
  56. package/dist/matterbridge.d.ts +422 -0
  57. package/dist/matterbridge.d.ts.map +1 -0
  58. package/dist/matterbridge.js +743 -46
  59. package/dist/matterbridge.js.map +1 -0
  60. package/dist/matterbridgeAccessoryPlatform.d.ts +39 -0
  61. package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -0
  62. package/dist/matterbridgeAccessoryPlatform.js +33 -0
  63. package/dist/matterbridgeAccessoryPlatform.js.map +1 -0
  64. package/dist/matterbridgeBehaviors.d.ts +1056 -0
  65. package/dist/matterbridgeBehaviors.d.ts.map +1 -0
  66. package/dist/matterbridgeBehaviors.js +32 -1
  67. package/dist/matterbridgeBehaviors.js.map +1 -0
  68. package/dist/matterbridgeDeviceTypes.d.ts +177 -0
  69. package/dist/matterbridgeDeviceTypes.d.ts.map +1 -0
  70. package/dist/matterbridgeDeviceTypes.js +112 -11
  71. package/dist/matterbridgeDeviceTypes.js.map +1 -0
  72. package/dist/matterbridgeDynamicPlatform.d.ts +39 -0
  73. package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -0
  74. package/dist/matterbridgeDynamicPlatform.js +33 -0
  75. package/dist/matterbridgeDynamicPlatform.js.map +1 -0
  76. package/dist/matterbridgeEndpoint.d.ts +835 -0
  77. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  78. package/dist/matterbridgeEndpoint.js +690 -6
  79. package/dist/matterbridgeEndpoint.js.map +1 -0
  80. package/dist/matterbridgeEndpointHelpers.d.ts +2275 -0
  81. package/dist/matterbridgeEndpointHelpers.d.ts.map +1 -0
  82. package/dist/matterbridgeEndpointHelpers.js +118 -9
  83. package/dist/matterbridgeEndpointHelpers.js.map +1 -0
  84. package/dist/matterbridgePlatform.d.ts +278 -0
  85. package/dist/matterbridgePlatform.d.ts.map +1 -0
  86. package/dist/matterbridgePlatform.js +213 -10
  87. package/dist/matterbridgePlatform.js.map +1 -0
  88. package/dist/matterbridgeTypes.d.ts +178 -0
  89. package/dist/matterbridgeTypes.d.ts.map +1 -0
  90. package/dist/matterbridgeTypes.js +24 -0
  91. package/dist/matterbridgeTypes.js.map +1 -0
  92. package/dist/pluginManager.d.ts +236 -0
  93. package/dist/pluginManager.d.ts.map +1 -0
  94. package/dist/pluginManager.js +229 -3
  95. package/dist/pluginManager.js.map +1 -0
  96. package/dist/shelly.d.ts +77 -0
  97. package/dist/shelly.d.ts.map +1 -0
  98. package/dist/shelly.js +121 -6
  99. package/dist/shelly.js.map +1 -0
  100. package/dist/storage/export.d.ts +2 -0
  101. package/dist/storage/export.d.ts.map +1 -0
  102. package/dist/storage/export.js +1 -0
  103. package/dist/storage/export.js.map +1 -0
  104. package/dist/update.d.ts +32 -0
  105. package/dist/update.d.ts.map +1 -0
  106. package/dist/update.js +47 -2
  107. package/dist/update.js.map +1 -0
  108. package/dist/utils/colorUtils.d.ts +61 -0
  109. package/dist/utils/colorUtils.d.ts.map +1 -0
  110. package/dist/utils/colorUtils.js +205 -2
  111. package/dist/utils/colorUtils.js.map +1 -0
  112. package/dist/utils/copyDirectory.d.ts +32 -0
  113. package/dist/utils/copyDirectory.d.ts.map +1 -0
  114. package/dist/utils/copyDirectory.js +37 -1
  115. package/dist/utils/copyDirectory.js.map +1 -0
  116. package/dist/utils/createZip.d.ts +38 -0
  117. package/dist/utils/createZip.d.ts.map +1 -0
  118. package/dist/utils/createZip.js +42 -2
  119. package/dist/utils/createZip.js.map +1 -0
  120. package/dist/utils/deepCopy.d.ts +31 -0
  121. package/dist/utils/deepCopy.d.ts.map +1 -0
  122. package/dist/utils/deepCopy.js +40 -0
  123. package/dist/utils/deepCopy.js.map +1 -0
  124. package/dist/utils/deepEqual.d.ts +53 -0
  125. package/dist/utils/deepEqual.d.ts.map +1 -0
  126. package/dist/utils/deepEqual.js +65 -1
  127. package/dist/utils/deepEqual.js.map +1 -0
  128. package/dist/utils/export.d.ts +10 -0
  129. package/dist/utils/export.d.ts.map +1 -0
  130. package/dist/utils/export.js +1 -0
  131. package/dist/utils/export.js.map +1 -0
  132. package/dist/utils/isvalid.d.ts +87 -0
  133. package/dist/utils/isvalid.d.ts.map +1 -0
  134. package/dist/utils/isvalid.js +86 -0
  135. package/dist/utils/isvalid.js.map +1 -0
  136. package/dist/utils/network.d.ts +70 -0
  137. package/dist/utils/network.d.ts.map +1 -0
  138. package/dist/utils/network.js +77 -5
  139. package/dist/utils/network.js.map +1 -0
  140. package/dist/utils/parameter.d.ts +44 -0
  141. package/dist/utils/parameter.d.ts.map +1 -0
  142. package/dist/utils/parameter.js +41 -0
  143. package/dist/utils/parameter.js.map +1 -0
  144. package/dist/utils/wait.d.ts +43 -0
  145. package/dist/utils/wait.d.ts.map +1 -0
  146. package/dist/utils/wait.js +48 -5
  147. package/dist/utils/wait.js.map +1 -0
  148. package/frontend/build/asset-manifest.json +3 -3
  149. package/frontend/build/index.html +1 -1
  150. package/frontend/build/static/js/{main.b42b0a2a.js → main.66936fef.js} +3 -3
  151. package/frontend/build/static/js/{main.b42b0a2a.js.map → main.66936fef.js.map} +1 -1
  152. package/npm-shrinkwrap.json +2 -2
  153. package/package.json +2 -1
  154. /package/frontend/build/static/js/{main.b42b0a2a.js.LICENSE.txt → main.66936fef.js.LICENSE.txt} +0 -0
package/CHANGELOG.md CHANGED
@@ -13,20 +13,22 @@ It is also available the official Matterbridge Home Assistant plugin https://git
13
13
 
14
14
  Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord group: https://discord.gg/QX58CDe6hd.
15
15
 
16
- ## [2.2.5] - 2025-03-17
16
+ ## [2.2.5] - 2025-03-19
17
17
 
18
18
  ### Added
19
19
 
20
20
  - [frontend]: Frontend v.2.6.0.
21
21
  - [frontend]: The Devices panel on the Home page selects and unselects using the device serial or device name (it reads the plugin schema).
22
- - [frontend]: The select list panel in the config editor now shows as primary the device name and secondary the device serial.
23
22
  - [frontend]: Added download of plugins storage to the Download menu.
24
23
  - [frontend]: Added download of plugins config to the Download menu.
24
+ - [frontend]: Added the possibility to show an action button in the config editor.
25
+ - [frontend]: Added the possibility to show an action button with input in the config editor.
25
26
 
26
27
  ### Changed
27
28
 
28
29
  - [package]: Update dependencies.
29
- - [frontend]: Removed @rjsf/mui and use @rjsf/core (this will allow to update to the latest react and @mui packages).
30
+ - [frontend]: The select list panel in the config editor now shows as primary the device name and secondary the device serial.
31
+ - [frontend]: Removed @rjsf/mui and use @rjsf/core (this allows to update to the latest react and @mui packages).
30
32
  - [frontend]: Updated @emotion @fontsource/roboto @mdi @mui @rjsf qrcode.react react-router notistack packages.
31
33
 
32
34
  ### Fixed
@@ -34,7 +36,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
34
36
  - [frontend]: Fixed case where more then one plugin has select in the Home page Devices panel.
35
37
 
36
38
  <a href="https://www.buymeacoffee.com/luligugithub">
37
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
39
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
38
40
  </a>
39
41
 
40
42
  ## [2.2.4] - 2025-03-10
@@ -49,7 +51,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
49
51
  - [package]: Update dependencies.
50
52
 
51
53
  <a href="https://www.buymeacoffee.com/luligugithub">
52
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
54
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
53
55
  </a>
54
56
 
55
57
  ## [2.2.3] - 2025-03-05
@@ -67,7 +69,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
67
69
  - [matterbridge]: False error notification on configure plugin.
68
70
 
69
71
  <a href="https://www.buymeacoffee.com/luligugithub">
70
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
72
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
71
73
  </a>
72
74
 
73
75
  ## [2.2.2] - 2025-03-05
@@ -85,7 +87,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
85
87
  - [frontend]: The config editor cannot be opened a second time before the restart.
86
88
 
87
89
  <a href="https://www.buymeacoffee.com/luligugithub">
88
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
90
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
89
91
  </a>
90
92
 
91
93
  ## [2.2.1] - 2025-03-02
@@ -104,7 +106,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
104
106
  - [package]: Update matter.js to 0.12.5.
105
107
 
106
108
  <a href="https://www.buymeacoffee.com/luligugithub">
107
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
109
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
108
110
  </a>
109
111
 
110
112
  ## [2.2.0] - 2025-02-27
@@ -133,7 +135,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
133
135
  - [matterbridge]: Check endpoint state in /api/devices.
134
136
 
135
137
  <a href="https://www.buymeacoffee.com/luligugithub">
136
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
138
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
137
139
  </a>
138
140
 
139
141
  ## [2.1.5] - 2025-02-11
@@ -158,7 +160,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
158
160
  - [matterbridge]: Refactor reset devices adding a wait of 1 sec to allow matter to deliver all messages before shutting down.
159
161
 
160
162
  <a href="https://www.buymeacoffee.com/luligugithub">
161
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
163
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
162
164
  </a>
163
165
 
164
166
  ## [2.1.4] - 2025-02-07
@@ -175,7 +177,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
175
177
  - [matter.js]: Since matter.js storage cannot properly encode non latin names, they are encoded before passing them to matter.js.
176
178
 
177
179
  <a href="https://www.buymeacoffee.com/luligugithub">
178
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
180
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
179
181
  </a>
180
182
 
181
183
  ## [2.1.3] - 2025-02-04
@@ -189,7 +191,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
189
191
  - [package]: Update dependencies.
190
192
 
191
193
  <a href="https://www.buymeacoffee.com/luligugithub">
192
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
194
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
193
195
  </a>
194
196
 
195
197
  ## [2.1.2] - 2025-02-03
@@ -206,7 +208,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
206
208
  - [frontend]: Fixed update matterbridge.
207
209
 
208
210
  <a href="https://www.buymeacoffee.com/luligugithub">
209
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
211
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
210
212
  </a>
211
213
 
212
214
  ## [2.1.1] - 2025-02-02
@@ -216,7 +218,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
216
218
  - [matter.js]: Fix close server nodes.
217
219
 
218
220
  <a href="https://www.buymeacoffee.com/luligugithub">
219
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
221
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
220
222
  </a>
221
223
 
222
224
  ## [2.1.0] - 2025-02-02
@@ -238,7 +240,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
238
240
  - [package]: Update matter.js to 0.12.2.
239
241
 
240
242
  <a href="https://www.buymeacoffee.com/luligugithub">
241
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
243
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
242
244
  </a>
243
245
 
244
246
  ## [2.0.0] - 2025-01-20
@@ -269,7 +271,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
269
271
  - [sessions]: Fixed the case when Active session was not reporting correctly.
270
272
 
271
273
  <a href="https://www.buymeacoffee.com/luligugithub">
272
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
274
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
273
275
  </a>
274
276
 
275
277
  ## [1.7.3] - 2025-01-11
@@ -284,7 +286,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
284
286
  - [package]: Workflows use node 22.x.
285
287
 
286
288
  <a href="https://www.buymeacoffee.com/luligugithub">
287
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
289
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
288
290
  </a>
289
291
 
290
292
  ## [1.7.2] - 2025-01-11
@@ -311,7 +313,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
311
313
  - [frontend]: Fixed restart that was not working correctly in Ingress.
312
314
 
313
315
  <a href="https://www.buymeacoffee.com/luligugithub">
314
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
316
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
315
317
  </a>
316
318
 
317
319
  ## [1.7.1] - 2025-01-07
@@ -334,7 +336,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
334
336
  - [frontend]: Fixed WebSocketProvider online.
335
337
 
336
338
  <a href="https://www.buymeacoffee.com/luligugithub">
337
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
339
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
338
340
  </a>
339
341
 
340
342
  ## [1.7.0] - 2025-01-04
@@ -367,7 +369,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
367
369
  - [frontend]: Fixed device/cluster api that was not working in Ingress.
368
370
 
369
371
  <a href="https://www.buymeacoffee.com/luligugithub">
370
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
372
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
371
373
  </a>
372
374
 
373
375
  ## [1.6.7] - 2024-12-15
@@ -396,7 +398,7 @@ It is possible that some controllers see them as new devices or need time to rea
396
398
  - [Device]: Fix addChildDeviceType methods to include debug parameter in MatterbridgeDevice instantiation.
397
399
 
398
400
  <a href="https://www.buymeacoffee.com/luligugithub">
399
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
401
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
400
402
  </a>
401
403
 
402
404
  ## [1.6.6] - 2024-12-12
@@ -433,7 +435,7 @@ It is possible that some controllers see them as new devices or need time to rea
433
435
  - [device]: Fix typos in Device and Endpoint.
434
436
 
435
437
  <a href="https://www.buymeacoffee.com/luligugithub">
436
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
438
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
437
439
  </a>
438
440
 
439
441
  ## [1.6.5] - 2024-12-02
@@ -445,7 +447,7 @@ It is possible that some controllers see them as new devices or need time to rea
445
447
  - [package]: Update dependencies.
446
448
 
447
449
  <a href="https://www.buymeacoffee.com/luligugithub">
448
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
450
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
449
451
  </a>
450
452
 
451
453
  ## [1.6.4] - 2024-11-29
@@ -455,7 +457,7 @@ It is possible that some controllers see them as new devices or need time to rea
455
457
  - [matter.js]: Update to matter.js 0.11.7.
456
458
 
457
459
  <a href="https://www.buymeacoffee.com/luligugithub">
458
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
460
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
459
461
  </a>
460
462
 
461
463
  ## [1.6.3] - 2024-11-27
@@ -470,7 +472,7 @@ It is possible that some controllers see them as new devices or need time to rea
470
472
  - [matter.js]: Update to matter.js 0.11.6.
471
473
 
472
474
  <a href="https://www.buymeacoffee.com/luligugithub">
473
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
475
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
474
476
  </a>
475
477
 
476
478
  ## [1.6.2] - 2024-11-25
@@ -504,7 +506,7 @@ It is possible that some controllers see them as new devices or need time to rea
504
506
  - [energySensor]: Fixed wrong types on ElectricalEnergyMeasurementCluster ElectricalPowerMeasurementCluster.
505
507
 
506
508
  <a href="https://www.buymeacoffee.com/luligugithub">
507
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
509
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
508
510
  </a>
509
511
 
510
512
  ## [1.6.1] - 2024-11-02
@@ -522,7 +524,7 @@ It is possible that some controllers see them as new devices or need time to rea
522
524
  - [package]: Update dependencies.
523
525
 
524
526
  <a href="https://www.buymeacoffee.com/luligugithub">
525
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
527
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
526
528
  </a>
527
529
 
528
530
  ## [1.6.0] - 2024-10-28
@@ -542,7 +544,7 @@ It is possible that some controllers see them as new devices or need time to rea
542
544
  - [package]: Update dependencies.
543
545
 
544
546
  <a href="https://www.buymeacoffee.com/luligugithub">
545
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
547
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
546
548
  </a>
547
549
 
548
550
  ## [1.5.10] - 2024-10-01
@@ -554,7 +556,7 @@ It is possible that some controllers see them as new devices or need time to rea
554
556
  - [package]: Update dependencies.
555
557
 
556
558
  <a href="https://www.buymeacoffee.com/luligugithub">
557
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
559
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
558
560
  </a>
559
561
 
560
562
  ## [1.5.9] - 2024-09-23
@@ -570,7 +572,7 @@ It is possible that some controllers see them as new devices or need time to rea
570
572
  - [package]: Update dependencies.
571
573
 
572
574
  <a href="https://www.buymeacoffee.com/luligugithub">
573
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
575
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
574
576
  </a>
575
577
 
576
578
  ## [1.5.8] - 2024-09-21
@@ -591,7 +593,7 @@ It is possible that some controllers see them as new devices or need time to rea
591
593
  - [matterbridge]: Reset session informations when the controllers are not connected.
592
594
 
593
595
  <a href="https://www.buymeacoffee.com/luligugithub">
594
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
596
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
595
597
  </a>
596
598
 
597
599
  ## [1.5.7] - 2024-09-17
@@ -608,7 +610,7 @@ It is possible that some controllers see them as new devices or need time to rea
608
610
  - [package]: Update dependencies.
609
611
 
610
612
  <a href="https://www.buymeacoffee.com/luligugithub">
611
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
613
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
612
614
  </a>
613
615
 
614
616
  ## [1.5.6] - 2024-09-13
@@ -625,7 +627,7 @@ It is possible that some controllers see them as new devices or need time to rea
625
627
  - [package]: Updated dependencies.
626
628
 
627
629
  <a href="https://www.buymeacoffee.com/luligugithub">
628
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
630
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
629
631
  </a>
630
632
 
631
633
  ## [1.5.5] - 2024-09-09
@@ -638,7 +640,7 @@ It is possible that some controllers see them as new devices or need time to rea
638
640
  - [package]: Update dependencies.
639
641
 
640
642
  <a href="https://www.buymeacoffee.com/luligugithub">
641
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
643
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
642
644
  </a>
643
645
 
644
646
  ## [1.5.4] - 2024-09-05
@@ -650,7 +652,7 @@ It is possible that some controllers see them as new devices or need time to rea
650
652
  - [package]: Removed all local matter 1.3 clusters now present in matter.js.
651
653
 
652
654
  <a href="https://www.buymeacoffee.com/luligugithub">
653
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
655
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
654
656
  </a>
655
657
 
656
658
  ## [1.5.3] - 2024-09-04
@@ -667,7 +669,7 @@ It is possible that some controllers see them as new devices or need time to rea
667
669
  - [package]: Removed long deprecated exports.
668
670
 
669
671
  <a href="https://www.buymeacoffee.com/luligugithub">
670
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
672
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
671
673
  </a>
672
674
 
673
675
  ## [1.5.2] - 2024-08-30
@@ -696,7 +698,7 @@ It is possible that some controllers see them as new devices or need time to rea
696
698
  - [spawn]: Modified the install or update function to add more info in the log.
697
699
 
698
700
  <a href="https://www.buymeacoffee.com/luligugithub">
699
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
701
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
700
702
  </a>
701
703
 
702
704
  ## [1.5.1] - 2024-08-28
@@ -710,7 +712,7 @@ It is possible that some controllers see them as new devices or need time to rea
710
712
  - [package]: Update dependencies.
711
713
 
712
714
  <a href="https://www.buymeacoffee.com/luligugithub">
713
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
715
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
714
716
  </a>
715
717
 
716
718
  ## [1.5.0] - 2024-08-27
@@ -731,7 +733,7 @@ It is possible that some controllers see them as new devices or need time to rea
731
733
  - [package]: Update dependencies.
732
734
 
733
735
  <a href="https://www.buymeacoffee.com/luligugithub">
734
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
736
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
735
737
  </a>
736
738
 
737
739
  ## [1.4.3] - 2024-08-22
@@ -753,7 +755,7 @@ It is possible that some controllers see them as new devices or need time to rea
753
755
  - [package]: Update matter-history to 1.1.7.
754
756
 
755
757
  <a href="https://www.buymeacoffee.com/luligugithub">
756
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
758
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
757
759
  </a>
758
760
 
759
761
  ## [1.4.2] - 2024-08-20
@@ -774,7 +776,7 @@ It is possible that some controllers see them as new devices or need time to rea
774
776
  - [package]: Fixed dependencies.
775
777
 
776
778
  <a href="https://www.buymeacoffee.com/luligugithub">
777
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
779
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
778
780
  </a>
779
781
 
780
782
  ## [1.4.1] - 2024-07-28
@@ -791,7 +793,7 @@ It is possible that some controllers see them as new devices or need time to rea
791
793
  - [matter]: Update matter.js to 0.9.4.
792
794
 
793
795
  <a href="https://www.buymeacoffee.com/luligugithub">
794
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
796
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
795
797
  </a>
796
798
 
797
799
  ## [1.4.0] - 2024-07-23
@@ -814,7 +816,7 @@ It is possible that some controllers see them as new devices or need time to rea
814
816
  - [matterbridge]: Fixed utils export
815
817
 
816
818
  <a href="https://www.buymeacoffee.com/luligugithub">
817
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
819
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
818
820
  </a>
819
821
 
820
822
  ## [1.3.13] - 2024-07-11
@@ -833,7 +835,7 @@ It is possible that some controllers see them as new devices or need time to rea
833
835
  - [matterbridge]: Fixed load plugin when the don't have author and description.
834
836
 
835
837
  <a href="https://www.buymeacoffee.com/luligugithub">
836
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
838
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
837
839
  </a>
838
840
 
839
841
  ## [1.3.12] - 2024-07-10
@@ -850,7 +852,7 @@ It is possible that some controllers see them as new devices or need time to rea
850
852
  - [frontend]: Fix Home for mobile.
851
853
 
852
854
  <a href="https://www.buymeacoffee.com/luligugithub">
853
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
855
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
854
856
  </a>
855
857
 
856
858
  ## [1.3.11] - 2024-07-08
@@ -867,7 +869,7 @@ It is possible that some controllers see them as new devices or need time to rea
867
869
  - [dependencies]: Update dependencies.
868
870
 
869
871
  <a href="https://www.buymeacoffee.com/luligugithub">
870
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
872
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
871
873
  </a>
872
874
 
873
875
  ## [1.3.10] - 2024-07-05
@@ -886,7 +888,7 @@ It is possible that some controllers see them as new devices or need time to rea
886
888
  - [dependencies]: Update dependencies.
887
889
 
888
890
  <a href="https://www.buymeacoffee.com/luligugithub">
889
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
891
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
890
892
  </a>
891
893
 
892
894
  ## [1.3.9] - 2024-07-02
@@ -897,7 +899,7 @@ It is possible that some controllers see them as new devices or need time to rea
897
899
  - [matterbridge]: Fixed MeasurementClusters
898
900
 
899
901
  <a href="https://www.buymeacoffee.com/luligugithub">
900
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
902
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
901
903
  </a>
902
904
 
903
905
  ## [1.3.8] - 2024-07-01
@@ -907,7 +909,7 @@ It is possible that some controllers see them as new devices or need time to rea
907
909
  - [matterbridge]: Fixed crash in childbridge mode
908
910
 
909
911
  <a href="https://www.buymeacoffee.com/luligugithub">
910
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
912
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
911
913
  </a>
912
914
 
913
915
  ## [1.3.7] - 2024-06-30
@@ -923,7 +925,7 @@ It is possible that some controllers see them as new devices or need time to rea
923
925
  - [dependencies]: Update matter.js to 0.9.3.
924
926
 
925
927
  <a href="https://www.buymeacoffee.com/luligugithub">
926
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
928
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
927
929
  </a>
928
930
 
929
931
  ## [1.3.6] - 2024-06-28
@@ -940,7 +942,7 @@ It is possible that some controllers see them as new devices or need time to rea
940
942
  - [matterbridgeDevice]: Fixed ElectricalEnergyMeasurement and ElectricalPowerMeasurement
941
943
 
942
944
  <a href="https://www.buymeacoffee.com/luligugithub">
943
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
945
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
944
946
  </a>
945
947
 
946
948
  ## [1.3.5] - 2024-06-26
@@ -960,7 +962,7 @@ It is possible that some controllers see them as new devices or need time to rea
960
962
  - [matterbridge]: The "plugin add" method now loads, starts, and configures the plugin
961
963
 
962
964
  <a href="https://www.buymeacoffee.com/luligugithub">
963
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
965
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
964
966
  </a>
965
967
 
966
968
  ## [1.3.4] - 2024-06-23
@@ -970,7 +972,7 @@ It is possible that some controllers see them as new devices or need time to rea
970
972
  - [matterbridge]: Fixed exports
971
973
 
972
974
  <a href="https://www.buymeacoffee.com/luligugithub">
973
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
975
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
974
976
  </a>
975
977
 
976
978
  ## [1.3.3] - 2024-06-22
@@ -981,7 +983,7 @@ It is possible that some controllers see them as new devices or need time to rea
981
983
  - [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).
982
984
 
983
985
  <a href="https://www.buymeacoffee.com/luligugithub">
984
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
986
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
985
987
  </a>
986
988
 
987
989
  ## [1.3.2] - 2024-06-22
@@ -1022,7 +1024,7 @@ Features:
1022
1024
  - [matter.js]: Updated matter.js to 0.9.2
1023
1025
 
1024
1026
  <a href="https://www.buymeacoffee.com/luligugithub">
1025
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1027
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1026
1028
  </a>
1027
1029
 
1028
1030
  ## [1.3.1] - 2024-06-20
@@ -1034,7 +1036,7 @@ Features:
1034
1036
  - [matterbridge]: Moved getPluginVersion to the start also for disabled plugins.
1035
1037
 
1036
1038
  <a href="https://www.buymeacoffee.com/luligugithub">
1037
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1039
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1038
1040
  </a>
1039
1041
 
1040
1042
  ## [1.3.0] - 2024-06-16
@@ -1067,7 +1069,7 @@ Home Automation supports (probably only like BooleanState cluster):
1067
1069
  - [frontend]: Added logger level settings to reflect -matterlogger [debug | info | notice | warn | error | fatal]
1068
1070
 
1069
1071
  <a href="https://www.buymeacoffee.com/luligugithub">
1070
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1072
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1071
1073
  </a>
1072
1074
 
1073
1075
  ## [1.2.22] - 2024-06-04
@@ -1078,7 +1080,7 @@ Home Automation supports (probably only like BooleanState cluster):
1078
1080
  - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly
1079
1081
 
1080
1082
  <a href="https://www.buymeacoffee.com/luligugithub">
1081
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1083
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1082
1084
  </a>
1083
1085
 
1084
1086
  ## [1.2.21] - 2024-06-04
@@ -1093,7 +1095,7 @@ Home Automation supports (probably only like BooleanState cluster):
1093
1095
  - [matterbridge]: Fixed the error that caused -add plugin to fail at the first run of matterbridge
1094
1096
 
1095
1097
  <a href="https://www.buymeacoffee.com/luligugithub">
1096
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1098
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1097
1099
  </a>
1098
1100
 
1099
1101
  ## [1.2.20] - 2024-06-03
@@ -1108,7 +1110,7 @@ Home Automation supports (probably only like BooleanState cluster):
1108
1110
  - [matterbridge]: Log level of Plugin already configured is now info
1109
1111
 
1110
1112
  <a href="https://www.buymeacoffee.com/luligugithub">
1111
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1113
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1112
1114
  </a>
1113
1115
 
1114
1116
  ## [1.2.19] - 2024-06-01
@@ -1130,7 +1132,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1130
1132
  - [frontend]: Added tooltip to the plugin update badge in the registered plugins window
1131
1133
 
1132
1134
  <a href="https://www.buymeacoffee.com/luligugithub">
1133
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1135
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1134
1136
  </a>
1135
1137
 
1136
1138
  ## [1.2.18] - 2024-05-28
@@ -1149,7 +1151,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1149
1151
  - [frontend]: Added a dropdown menu in Add Remove plugin to select the plugins
1150
1152
 
1151
1153
  <a href="https://www.buymeacoffee.com/luligugithub">
1152
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1154
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1153
1155
  </a>
1154
1156
 
1155
1157
  ## [1.2.17] - 2024-05-25
@@ -1173,7 +1175,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1173
1175
  - [matterbridge]: Added vendorId for Alexa
1174
1176
 
1175
1177
  <a href="https://www.buymeacoffee.com/luligugithub">
1176
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1178
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1177
1179
  </a>
1178
1180
 
1179
1181
  ## [1.2.16] - 2024-05-15
@@ -1192,7 +1194,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1192
1194
  - [frontend]: Added version information badge for Matterbridge.
1193
1195
 
1194
1196
  <a href="https://www.buymeacoffee.com/luligugithub">
1195
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1197
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1196
1198
  </a>
1197
1199
 
1198
1200
  ## [1.2.15] - 2024-05-14
@@ -1207,7 +1209,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1207
1209
  - [frontend]: Fixed the case when the latest version of Matterbridge or a plugin is not available.
1208
1210
 
1209
1211
  <a href="https://www.buymeacoffee.com/luligugithub">
1210
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1212
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1211
1213
  </a>
1212
1214
 
1213
1215
  ## [1.2.14] - 2024-05-09
@@ -1221,7 +1223,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1221
1223
  - [frontend]: Added Error state to registered plugins
1222
1224
 
1223
1225
  <a href="https://www.buymeacoffee.com/luligugithub">
1224
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1226
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1225
1227
  </a>
1226
1228
 
1227
1229
  ## [1.2.13] - 2024-05-05
@@ -1237,7 +1239,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1237
1239
  - [docker]: Added the docker image:dev on the docker hub with architectures: linux/amd64, linux/arm64, linux/arm/v7
1238
1240
 
1239
1241
  <a href="https://www.buymeacoffee.com/luligugithub">
1240
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1242
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1241
1243
  </a>
1242
1244
 
1243
1245
  ## [1.2.12] - 2024-04-30
@@ -1253,7 +1255,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
1253
1255
  - [frontend]: Added factoryreset in the Settings page. Matterbridge will shutdown to allow the factoryreset.
1254
1256
 
1255
1257
  <a href="https://www.buymeacoffee.com/luligugithub">
1256
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
1258
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
1257
1259
  </a>
1258
1260
 
1259
1261
  ## [1.2.11] - 2024-04-25
package/README.md CHANGED
@@ -36,6 +36,10 @@ It runs perfectly on Windows too.
36
36
 
37
37
  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.
38
38
 
39
+ <a href="https://www.buymeacoffee.com/luligugithub">
40
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
41
+ </a>
42
+
39
43
  ## Acknowledgements
40
44
 
41
45
  The project is build on top of https://github.com/project-chip/matter.js.
@@ -483,7 +487,7 @@ On my side I sponsor the packages that I use in this project. It would be nice t
483
487
  Click on the badge below to get started:
484
488
 
485
489
  <a href="https://www.buymeacoffee.com/luligugithub">
486
- <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
490
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="120">
487
491
  </a>
488
492
 
489
493
  Thank you for your support!