matterbridge 3.4.0 → 3.4.1-dev-20251127-826b2bf

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 (332) hide show
  1. package/CHANGELOG.md +128 -112
  2. package/README-DEV.md +2 -2
  3. package/README-DOCKER.md +1 -1
  4. package/README-MACOS-PLIST.md +1 -1
  5. package/README-NGINX.md +1 -1
  6. package/README-PODMAN.md +1 -1
  7. package/README-SERVICE-LOCAL.md +1 -1
  8. package/README-SERVICE-OPT.md +6 -1
  9. package/README-SERVICE.md +1 -1
  10. package/README.md +57 -49
  11. package/dist/broadcastServer.js +1 -93
  12. package/dist/broadcastServerTypes.js +0 -24
  13. package/dist/cli.js +1 -97
  14. package/dist/cliEmitter.js +0 -37
  15. package/dist/cliHistory.js +0 -38
  16. package/dist/clusters/export.js +0 -2
  17. package/dist/defaultConfigSchema.js +0 -24
  18. package/dist/deviceManager.js +1 -113
  19. package/dist/devices/airConditioner.js +0 -57
  20. package/dist/devices/batteryStorage.js +1 -48
  21. package/dist/devices/cooktop.js +0 -56
  22. package/dist/devices/dishwasher.js +0 -57
  23. package/dist/devices/evse.js +10 -74
  24. package/dist/devices/export.js +0 -5
  25. package/dist/devices/extractorHood.js +0 -43
  26. package/dist/devices/heatPump.js +2 -50
  27. package/dist/devices/laundryDryer.js +3 -62
  28. package/dist/devices/laundryWasher.js +4 -70
  29. package/dist/devices/microwaveOven.js +5 -88
  30. package/dist/devices/oven.js +0 -85
  31. package/dist/devices/refrigerator.js +0 -102
  32. package/dist/devices/roboticVacuumCleaner.js +9 -100
  33. package/dist/devices/solarPower.js +0 -38
  34. package/dist/devices/speaker.js +0 -84
  35. package/dist/devices/temperatureControl.js +3 -24
  36. package/dist/devices/waterHeater.js +2 -82
  37. package/dist/dgram/coap.js +13 -126
  38. package/dist/dgram/dgram.js +2 -114
  39. package/dist/dgram/mb_coap.js +3 -41
  40. package/dist/dgram/mb_mdns.js +15 -80
  41. package/dist/dgram/mdns.js +137 -299
  42. package/dist/dgram/multicast.js +1 -62
  43. package/dist/dgram/unicast.js +0 -54
  44. package/dist/frontend.js +35 -455
  45. package/dist/frontendTypes.js +0 -45
  46. package/dist/helpers.js +0 -53
  47. package/dist/index.js +0 -25
  48. package/dist/jestutils/export.js +0 -1
  49. package/dist/jestutils/jestHelpers.js +13 -352
  50. package/dist/logger/export.js +0 -1
  51. package/dist/matter/behaviors.js +0 -2
  52. package/dist/matter/clusters.js +0 -2
  53. package/dist/matter/devices.js +0 -2
  54. package/dist/matter/endpoints.js +0 -2
  55. package/dist/matter/export.js +0 -3
  56. package/dist/matter/types.js +0 -3
  57. package/dist/matterNode.js +8 -369
  58. package/dist/matterbridge.js +74 -788
  59. package/dist/matterbridgeAccessoryPlatform.js +0 -38
  60. package/dist/matterbridgeBehaviors.js +5 -68
  61. package/dist/matterbridgeDeviceTypes.js +14 -635
  62. package/dist/matterbridgeDynamicPlatform.js +0 -38
  63. package/dist/matterbridgeEndpoint.js +53 -1444
  64. package/dist/matterbridgeEndpointHelpers.js +20 -483
  65. package/dist/matterbridgeEndpointTypes.js +0 -25
  66. package/dist/matterbridgePlatform.js +2 -460
  67. package/dist/matterbridgeTypes.js +0 -26
  68. package/dist/pluginManager.js +5 -340
  69. package/dist/shelly.js +7 -168
  70. package/dist/storage/export.js +0 -1
  71. package/dist/update.js +0 -69
  72. package/dist/utils/colorUtils.js +2 -97
  73. package/dist/utils/commandLine.js +0 -60
  74. package/dist/utils/copyDirectory.js +0 -37
  75. package/dist/utils/createDirectory.js +0 -33
  76. package/dist/utils/createZip.js +2 -47
  77. package/dist/utils/deepCopy.js +0 -39
  78. package/dist/utils/deepEqual.js +1 -72
  79. package/dist/utils/error.js +0 -41
  80. package/dist/utils/export.js +0 -1
  81. package/dist/utils/format.js +0 -49
  82. package/dist/utils/hex.js +0 -124
  83. package/dist/utils/inspector.js +1 -69
  84. package/dist/utils/isvalid.js +0 -101
  85. package/dist/utils/network.js +5 -96
  86. package/dist/utils/spawn.js +1 -71
  87. package/dist/utils/tracker.js +1 -64
  88. package/dist/utils/wait.js +8 -60
  89. package/frontend/build/assets/index.js +4 -4
  90. package/frontend/build/assets/vendor_mui.js +1 -1
  91. package/frontend/build/assets/vendor_node_modules.js +19 -83
  92. package/frontend/build/assets/vendor_qrcode.js +1 -9
  93. package/frontend/build/assets/vendor_rjsf.js +1 -9
  94. package/frontend/package-lock.json +229 -439
  95. package/frontend/package.json +15 -15
  96. package/marked.ps1 +15 -0
  97. package/npm-shrinkwrap.json +165 -231
  98. package/package.json +2 -3
  99. package/dist/broadcastServer.d.ts +0 -115
  100. package/dist/broadcastServer.d.ts.map +0 -1
  101. package/dist/broadcastServer.js.map +0 -1
  102. package/dist/broadcastServerTypes.d.ts +0 -838
  103. package/dist/broadcastServerTypes.d.ts.map +0 -1
  104. package/dist/broadcastServerTypes.js.map +0 -1
  105. package/dist/cli.d.ts +0 -30
  106. package/dist/cli.d.ts.map +0 -1
  107. package/dist/cli.js.map +0 -1
  108. package/dist/cliEmitter.d.ts +0 -50
  109. package/dist/cliEmitter.d.ts.map +0 -1
  110. package/dist/cliEmitter.js.map +0 -1
  111. package/dist/cliHistory.d.ts +0 -48
  112. package/dist/cliHistory.d.ts.map +0 -1
  113. package/dist/cliHistory.js.map +0 -1
  114. package/dist/clusters/export.d.ts +0 -2
  115. package/dist/clusters/export.d.ts.map +0 -1
  116. package/dist/clusters/export.js.map +0 -1
  117. package/dist/defaultConfigSchema.d.ts +0 -28
  118. package/dist/defaultConfigSchema.d.ts.map +0 -1
  119. package/dist/defaultConfigSchema.js.map +0 -1
  120. package/dist/deviceManager.d.ts +0 -135
  121. package/dist/deviceManager.d.ts.map +0 -1
  122. package/dist/deviceManager.js.map +0 -1
  123. package/dist/devices/airConditioner.d.ts +0 -98
  124. package/dist/devices/airConditioner.d.ts.map +0 -1
  125. package/dist/devices/airConditioner.js.map +0 -1
  126. package/dist/devices/batteryStorage.d.ts +0 -48
  127. package/dist/devices/batteryStorage.d.ts.map +0 -1
  128. package/dist/devices/batteryStorage.js.map +0 -1
  129. package/dist/devices/cooktop.d.ts +0 -61
  130. package/dist/devices/cooktop.d.ts.map +0 -1
  131. package/dist/devices/cooktop.js.map +0 -1
  132. package/dist/devices/dishwasher.d.ts +0 -71
  133. package/dist/devices/dishwasher.d.ts.map +0 -1
  134. package/dist/devices/dishwasher.js.map +0 -1
  135. package/dist/devices/evse.d.ts +0 -76
  136. package/dist/devices/evse.d.ts.map +0 -1
  137. package/dist/devices/evse.js.map +0 -1
  138. package/dist/devices/export.d.ts +0 -17
  139. package/dist/devices/export.d.ts.map +0 -1
  140. package/dist/devices/export.js.map +0 -1
  141. package/dist/devices/extractorHood.d.ts +0 -46
  142. package/dist/devices/extractorHood.d.ts.map +0 -1
  143. package/dist/devices/extractorHood.js.map +0 -1
  144. package/dist/devices/heatPump.d.ts +0 -47
  145. package/dist/devices/heatPump.d.ts.map +0 -1
  146. package/dist/devices/heatPump.js.map +0 -1
  147. package/dist/devices/laundryDryer.d.ts +0 -67
  148. package/dist/devices/laundryDryer.d.ts.map +0 -1
  149. package/dist/devices/laundryDryer.js.map +0 -1
  150. package/dist/devices/laundryWasher.d.ts +0 -81
  151. package/dist/devices/laundryWasher.d.ts.map +0 -1
  152. package/dist/devices/laundryWasher.js.map +0 -1
  153. package/dist/devices/microwaveOven.d.ts +0 -168
  154. package/dist/devices/microwaveOven.d.ts.map +0 -1
  155. package/dist/devices/microwaveOven.js.map +0 -1
  156. package/dist/devices/oven.d.ts +0 -105
  157. package/dist/devices/oven.d.ts.map +0 -1
  158. package/dist/devices/oven.js.map +0 -1
  159. package/dist/devices/refrigerator.d.ts +0 -118
  160. package/dist/devices/refrigerator.d.ts.map +0 -1
  161. package/dist/devices/refrigerator.js.map +0 -1
  162. package/dist/devices/roboticVacuumCleaner.d.ts +0 -112
  163. package/dist/devices/roboticVacuumCleaner.d.ts.map +0 -1
  164. package/dist/devices/roboticVacuumCleaner.js.map +0 -1
  165. package/dist/devices/solarPower.d.ts +0 -40
  166. package/dist/devices/solarPower.d.ts.map +0 -1
  167. package/dist/devices/solarPower.js.map +0 -1
  168. package/dist/devices/speaker.d.ts +0 -87
  169. package/dist/devices/speaker.d.ts.map +0 -1
  170. package/dist/devices/speaker.js.map +0 -1
  171. package/dist/devices/temperatureControl.d.ts +0 -166
  172. package/dist/devices/temperatureControl.d.ts.map +0 -1
  173. package/dist/devices/temperatureControl.js.map +0 -1
  174. package/dist/devices/waterHeater.d.ts +0 -111
  175. package/dist/devices/waterHeater.d.ts.map +0 -1
  176. package/dist/devices/waterHeater.js.map +0 -1
  177. package/dist/dgram/coap.d.ts +0 -205
  178. package/dist/dgram/coap.d.ts.map +0 -1
  179. package/dist/dgram/coap.js.map +0 -1
  180. package/dist/dgram/dgram.d.ts +0 -141
  181. package/dist/dgram/dgram.d.ts.map +0 -1
  182. package/dist/dgram/dgram.js.map +0 -1
  183. package/dist/dgram/mb_coap.d.ts +0 -24
  184. package/dist/dgram/mb_coap.d.ts.map +0 -1
  185. package/dist/dgram/mb_coap.js.map +0 -1
  186. package/dist/dgram/mb_mdns.d.ts +0 -24
  187. package/dist/dgram/mb_mdns.d.ts.map +0 -1
  188. package/dist/dgram/mb_mdns.js.map +0 -1
  189. package/dist/dgram/mdns.d.ts +0 -290
  190. package/dist/dgram/mdns.d.ts.map +0 -1
  191. package/dist/dgram/mdns.js.map +0 -1
  192. package/dist/dgram/multicast.d.ts +0 -67
  193. package/dist/dgram/multicast.d.ts.map +0 -1
  194. package/dist/dgram/multicast.js.map +0 -1
  195. package/dist/dgram/unicast.d.ts +0 -56
  196. package/dist/dgram/unicast.d.ts.map +0 -1
  197. package/dist/dgram/unicast.js.map +0 -1
  198. package/dist/frontend.d.ts +0 -238
  199. package/dist/frontend.d.ts.map +0 -1
  200. package/dist/frontend.js.map +0 -1
  201. package/dist/frontendTypes.d.ts +0 -529
  202. package/dist/frontendTypes.d.ts.map +0 -1
  203. package/dist/frontendTypes.js.map +0 -1
  204. package/dist/helpers.d.ts +0 -48
  205. package/dist/helpers.d.ts.map +0 -1
  206. package/dist/helpers.js.map +0 -1
  207. package/dist/index.d.ts +0 -34
  208. package/dist/index.d.ts.map +0 -1
  209. package/dist/index.js.map +0 -1
  210. package/dist/jestutils/export.d.ts +0 -2
  211. package/dist/jestutils/export.d.ts.map +0 -1
  212. package/dist/jestutils/export.js.map +0 -1
  213. package/dist/jestutils/jestHelpers.d.ts +0 -303
  214. package/dist/jestutils/jestHelpers.d.ts.map +0 -1
  215. package/dist/jestutils/jestHelpers.js.map +0 -1
  216. package/dist/logger/export.d.ts +0 -2
  217. package/dist/logger/export.d.ts.map +0 -1
  218. package/dist/logger/export.js.map +0 -1
  219. package/dist/matter/behaviors.d.ts +0 -2
  220. package/dist/matter/behaviors.d.ts.map +0 -1
  221. package/dist/matter/behaviors.js.map +0 -1
  222. package/dist/matter/clusters.d.ts +0 -2
  223. package/dist/matter/clusters.d.ts.map +0 -1
  224. package/dist/matter/clusters.js.map +0 -1
  225. package/dist/matter/devices.d.ts +0 -2
  226. package/dist/matter/devices.d.ts.map +0 -1
  227. package/dist/matter/devices.js.map +0 -1
  228. package/dist/matter/endpoints.d.ts +0 -2
  229. package/dist/matter/endpoints.d.ts.map +0 -1
  230. package/dist/matter/endpoints.js.map +0 -1
  231. package/dist/matter/export.d.ts +0 -5
  232. package/dist/matter/export.d.ts.map +0 -1
  233. package/dist/matter/export.js.map +0 -1
  234. package/dist/matter/types.d.ts +0 -3
  235. package/dist/matter/types.d.ts.map +0 -1
  236. package/dist/matter/types.js.map +0 -1
  237. package/dist/matterNode.d.ts +0 -342
  238. package/dist/matterNode.d.ts.map +0 -1
  239. package/dist/matterNode.js.map +0 -1
  240. package/dist/matterbridge.d.ts +0 -473
  241. package/dist/matterbridge.d.ts.map +0 -1
  242. package/dist/matterbridge.js.map +0 -1
  243. package/dist/matterbridgeAccessoryPlatform.d.ts +0 -41
  244. package/dist/matterbridgeAccessoryPlatform.d.ts.map +0 -1
  245. package/dist/matterbridgeAccessoryPlatform.js.map +0 -1
  246. package/dist/matterbridgeBehaviors.d.ts +0 -2404
  247. package/dist/matterbridgeBehaviors.d.ts.map +0 -1
  248. package/dist/matterbridgeBehaviors.js.map +0 -1
  249. package/dist/matterbridgeDeviceTypes.d.ts +0 -698
  250. package/dist/matterbridgeDeviceTypes.d.ts.map +0 -1
  251. package/dist/matterbridgeDeviceTypes.js.map +0 -1
  252. package/dist/matterbridgeDynamicPlatform.d.ts +0 -41
  253. package/dist/matterbridgeDynamicPlatform.d.ts.map +0 -1
  254. package/dist/matterbridgeDynamicPlatform.js.map +0 -1
  255. package/dist/matterbridgeEndpoint.d.ts +0 -1507
  256. package/dist/matterbridgeEndpoint.d.ts.map +0 -1
  257. package/dist/matterbridgeEndpoint.js.map +0 -1
  258. package/dist/matterbridgeEndpointHelpers.d.ts +0 -787
  259. package/dist/matterbridgeEndpointHelpers.d.ts.map +0 -1
  260. package/dist/matterbridgeEndpointHelpers.js.map +0 -1
  261. package/dist/matterbridgeEndpointTypes.d.ts +0 -166
  262. package/dist/matterbridgeEndpointTypes.d.ts.map +0 -1
  263. package/dist/matterbridgeEndpointTypes.js.map +0 -1
  264. package/dist/matterbridgePlatform.d.ts +0 -524
  265. package/dist/matterbridgePlatform.d.ts.map +0 -1
  266. package/dist/matterbridgePlatform.js.map +0 -1
  267. package/dist/matterbridgeTypes.d.ts +0 -251
  268. package/dist/matterbridgeTypes.d.ts.map +0 -1
  269. package/dist/matterbridgeTypes.js.map +0 -1
  270. package/dist/pluginManager.d.ts +0 -371
  271. package/dist/pluginManager.d.ts.map +0 -1
  272. package/dist/pluginManager.js.map +0 -1
  273. package/dist/shelly.d.ts +0 -174
  274. package/dist/shelly.d.ts.map +0 -1
  275. package/dist/shelly.js.map +0 -1
  276. package/dist/storage/export.d.ts +0 -2
  277. package/dist/storage/export.d.ts.map +0 -1
  278. package/dist/storage/export.js.map +0 -1
  279. package/dist/update.d.ts +0 -75
  280. package/dist/update.d.ts.map +0 -1
  281. package/dist/update.js.map +0 -1
  282. package/dist/utils/colorUtils.d.ts +0 -101
  283. package/dist/utils/colorUtils.d.ts.map +0 -1
  284. package/dist/utils/colorUtils.js.map +0 -1
  285. package/dist/utils/commandLine.d.ts +0 -66
  286. package/dist/utils/commandLine.d.ts.map +0 -1
  287. package/dist/utils/commandLine.js.map +0 -1
  288. package/dist/utils/copyDirectory.d.ts +0 -35
  289. package/dist/utils/copyDirectory.d.ts.map +0 -1
  290. package/dist/utils/copyDirectory.js.map +0 -1
  291. package/dist/utils/createDirectory.d.ts +0 -34
  292. package/dist/utils/createDirectory.d.ts.map +0 -1
  293. package/dist/utils/createDirectory.js.map +0 -1
  294. package/dist/utils/createZip.d.ts +0 -39
  295. package/dist/utils/createZip.d.ts.map +0 -1
  296. package/dist/utils/createZip.js.map +0 -1
  297. package/dist/utils/deepCopy.d.ts +0 -32
  298. package/dist/utils/deepCopy.d.ts.map +0 -1
  299. package/dist/utils/deepCopy.js.map +0 -1
  300. package/dist/utils/deepEqual.d.ts +0 -54
  301. package/dist/utils/deepEqual.d.ts.map +0 -1
  302. package/dist/utils/deepEqual.js.map +0 -1
  303. package/dist/utils/error.d.ts +0 -44
  304. package/dist/utils/error.d.ts.map +0 -1
  305. package/dist/utils/error.js.map +0 -1
  306. package/dist/utils/export.d.ts +0 -13
  307. package/dist/utils/export.d.ts.map +0 -1
  308. package/dist/utils/export.js.map +0 -1
  309. package/dist/utils/format.d.ts +0 -53
  310. package/dist/utils/format.d.ts.map +0 -1
  311. package/dist/utils/format.js.map +0 -1
  312. package/dist/utils/hex.d.ts +0 -89
  313. package/dist/utils/hex.d.ts.map +0 -1
  314. package/dist/utils/hex.js.map +0 -1
  315. package/dist/utils/inspector.d.ts +0 -87
  316. package/dist/utils/inspector.d.ts.map +0 -1
  317. package/dist/utils/inspector.js.map +0 -1
  318. package/dist/utils/isvalid.d.ts +0 -103
  319. package/dist/utils/isvalid.d.ts.map +0 -1
  320. package/dist/utils/isvalid.js.map +0 -1
  321. package/dist/utils/network.d.ts +0 -111
  322. package/dist/utils/network.d.ts.map +0 -1
  323. package/dist/utils/network.js.map +0 -1
  324. package/dist/utils/spawn.d.ts +0 -33
  325. package/dist/utils/spawn.d.ts.map +0 -1
  326. package/dist/utils/spawn.js.map +0 -1
  327. package/dist/utils/tracker.d.ts +0 -108
  328. package/dist/utils/tracker.d.ts.map +0 -1
  329. package/dist/utils/tracker.js.map +0 -1
  330. package/dist/utils/wait.d.ts +0 -54
  331. package/dist/utils/wait.d.ts.map +0 -1
  332. package/dist/utils/wait.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,12 +1,10 @@
1
- # <img src="frontend/public/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge changelog
1
+ # <img src="https://matterbridge.io/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge changelog
2
2
 
3
3
  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>
7
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
10
8
 
11
9
  ## Project evolution
12
10
 
@@ -28,6 +26,26 @@ Advantages:
28
26
  - individual plugin isolation in childbridge mode;
29
27
  - ability to update the plugin in childbridge mode without restarting matterbridge;
30
28
 
29
+ ## [3.4.1] - 2025-11-30
30
+
31
+ ### Added
32
+
33
+ - [matterbridge.io]: Updated website https://matterbridge.io with all guides.
34
+ - [matterbridge]: Added addVirtualEndpoint() to match thread module.
35
+
36
+ ### Changed
37
+
38
+ - [package]: Updated dependencies.
39
+ - [frontend]: Updated dependencies.
40
+ - [frontend]: Bumped `frontend` version to 3.3.2.
41
+ - [platform]: Bumped MatterbridgePlatform v.1.5.0.
42
+
43
+ ### Fixed
44
+
45
+ - [frontend]: Fixed when the user put special characters in password. Thanks Dabern (https://github.com/Luligu/matterbridge/issues/443).
46
+
47
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
48
+
31
49
  ## [3.4.0] - 2025-11-26
32
50
 
33
51
  ### Development Breaking Changes
@@ -60,9 +78,7 @@ Removed the following long deprecated elements:
60
78
  - [jest]: Bumped jestHelpers v.1.0.13.
61
79
  - [spawn]: Bumped spawn module v.1.2.0.
62
80
 
63
- <a href="https://www.buymeacoffee.com/luligugithub">
64
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
65
- </a>
81
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
66
82
 
67
83
  ## [3.3.8] - 2025-11-15
68
84
 
@@ -97,7 +113,7 @@ So please update your plugin.
97
113
  - [endpoint]: Changed logger level of single device classes.
98
114
 
99
115
  <a href="https://www.buymeacoffee.com/luligugithub">
100
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
116
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
101
117
  </a>
102
118
 
103
119
  ## [3.3.7] - 2025-11-08
@@ -124,7 +140,7 @@ So please update your plugin.
124
140
  - [frontend]: Fixed route fallback and cross platform path failing randomly with node prefix.
125
141
 
126
142
  <a href="https://www.buymeacoffee.com/luligugithub">
127
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
143
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
128
144
  </a>
129
145
 
130
146
  ## [3.3.6] - 2025-11-01
@@ -141,7 +157,7 @@ So please update your plugin.
141
157
  - [ingress]: Fixed websocket connection from Ingress.
142
158
 
143
159
  <a href="https://www.buymeacoffee.com/luligugithub">
144
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
160
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
145
161
  </a>
146
162
 
147
163
  ## [3.3.5] - 2025-10-31
@@ -166,7 +182,7 @@ So please update your plugin.
166
182
  - [service]: Fixed systemd [configuration](README-SERVICE-LOCAL.md) with local global node_modules.
167
183
 
168
184
  <a href="https://www.buymeacoffee.com/luligugithub">
169
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
185
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
170
186
  </a>
171
187
 
172
188
  ## [3.3.4] - 2025-10-24
@@ -197,7 +213,7 @@ So please update your plugin.
197
213
  - [thrmostat]: Fixed minSetpointDeadBand data type. Thanks Apollon!
198
214
 
199
215
  <a href="https://www.buymeacoffee.com/luligugithub">
200
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
216
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
201
217
  </a>
202
218
 
203
219
  ## [3.3.3] - 2025-10-18
@@ -224,7 +240,7 @@ So please update your plugin.
224
240
  - [history]: Added external and array buffers to the history chart.
225
241
 
226
242
  <a href="https://www.buymeacoffee.com/luligugithub">
227
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
243
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
228
244
  </a>
229
245
 
230
246
  ## [3.3.2] - 2025-10-13
@@ -234,7 +250,7 @@ So please update your plugin.
234
250
  - [frontend]: Fixed update to latest.
235
251
 
236
252
  <a href="https://www.buymeacoffee.com/luligugithub">
237
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
253
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
238
254
  </a>
239
255
 
240
256
  ## [3.3.1] - 2025-10-12
@@ -274,7 +290,7 @@ So please update your plugin.
274
290
  - [frontend]: Fixed matter log on file not setting correctly.
275
291
 
276
292
  <a href="https://www.buymeacoffee.com/luligugithub">
277
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
293
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
278
294
  </a>
279
295
 
280
296
  ## [3.3.0] - 2025-10-03
@@ -357,7 +373,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
357
373
  - [frontend]: General improvements and small bug fixes.
358
374
 
359
375
  <a href="https://www.buymeacoffee.com/luligugithub">
360
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
376
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
361
377
  </a>
362
378
 
363
379
  ## [3.2.9] - 2025-09-27
@@ -388,7 +404,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
388
404
  - [frontend]: Fix default values (devices) for homePageMode (logs/devices) in MatterbridgeSettings.
389
405
 
390
406
  <a href="https://www.buymeacoffee.com/luligugithub">
391
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
407
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
392
408
  </a>
393
409
 
394
410
  ## [3.2.8] - 2025-09-20
@@ -417,7 +433,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
417
433
  - [shutdown]: Fixed the case when shutting down the http(s) server took 10 seconds.
418
434
 
419
435
  <a href="https://www.buymeacoffee.com/luligugithub">
420
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
436
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
421
437
  </a>
422
438
 
423
439
  ## [3.2.7] - 2025-09-14
@@ -441,7 +457,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
441
457
  - [matterbridge.io]: Updated web site [matterbridge.io](matterbridge.io).
442
458
 
443
459
  <a href="https://www.buymeacoffee.com/luligugithub">
444
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
460
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
445
461
  </a>
446
462
 
447
463
  ## [3.2.6] - 2025-09-06
@@ -477,7 +493,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
477
493
  - [jest]: Fixed cli test failing with Jest v. 30.1.3.
478
494
 
479
495
  <a href="https://www.buymeacoffee.com/luligugithub">
480
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
496
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
481
497
  </a>
482
498
 
483
499
  ## [3.2.5] - 2025-09-02
@@ -500,7 +516,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
500
516
  - [frontend]: Fixed padding in QRDivDevice (devices in 'server' mode).
501
517
 
502
518
  <a href="https://www.buymeacoffee.com/luligugithub">
503
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
519
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
504
520
  </a>
505
521
 
506
522
  ## [3.2.4] - 2025-08-29
@@ -514,7 +530,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
514
530
  - [package]: Updated dependencies.
515
531
 
516
532
  <a href="https://www.buymeacoffee.com/luligugithub">
517
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
533
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
518
534
  </a>
519
535
 
520
536
  ## [3.2.3] - 2025-08-20
@@ -534,7 +550,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
534
550
  - [package]: Updated dependencies.
535
551
 
536
552
  <a href="https://www.buymeacoffee.com/luligugithub">
537
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
553
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
538
554
  </a>
539
555
 
540
556
  ## [3.2.2] - 2025-08-10
@@ -548,7 +564,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
548
564
  - [frontend]: Fixed new Matterbridge frontend version message on the Home page.
549
565
 
550
566
  <a href="https://www.buymeacoffee.com/luligugithub">
551
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
567
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
552
568
  </a>
553
569
 
554
570
  ## [3.2.1] - 2025-08-10
@@ -578,7 +594,7 @@ In this phase (matterbridge `3.4.x`) all plugins will not build and will not run
578
594
  - [frontend]: Fixed new Matterbridge version message on the Home page.
579
595
 
580
596
  <a href="https://www.buymeacoffee.com/luligugithub">
581
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
597
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
582
598
  </a>
583
599
 
584
600
  ## [3.2.0] - 2025-08-01
@@ -606,7 +622,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
606
622
  - [node.js]: Removed node 18 support.
607
623
 
608
624
  <a href="https://www.buymeacoffee.com/luligugithub">
609
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
625
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
610
626
  </a>
611
627
 
612
628
  ## [3.1.8] - 2025-07-28
@@ -636,7 +652,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
636
652
  - [advertise]: Changed the message advertise stopped to work also in childbridge mode.
637
653
 
638
654
  <a href="https://www.buymeacoffee.com/luligugithub">
639
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
655
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
640
656
  </a>
641
657
 
642
658
  ## [3.1.7] - 2025-07-25
@@ -660,7 +676,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
660
676
  - [package]: Updated dependencies.
661
677
 
662
678
  <a href="https://www.buymeacoffee.com/luligugithub">
663
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
679
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
664
680
  </a>
665
681
 
666
682
  ## [3.1.6] - 2025-07-22
@@ -680,7 +696,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
680
696
  - [package]: Updated dependencies.
681
697
 
682
698
  <a href="https://www.buymeacoffee.com/luligugithub">
683
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
699
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
684
700
  </a>
685
701
 
686
702
  ## [3.1.5] - 2025-07-19
@@ -699,7 +715,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
699
715
  - [readme-dev]: Added [documentation](README-DEV.md) for default plugin config and schema files.
700
716
 
701
717
  <a href="https://www.buymeacoffee.com/luligugithub">
702
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
718
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
703
719
  </a>
704
720
 
705
721
  ## [3.1.4] - 2025-07-16
@@ -720,7 +736,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
720
736
  - [bin]: Updated matterbridge bin.
721
737
 
722
738
  <a href="https://www.buymeacoffee.com/luligugithub">
723
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
739
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
724
740
  </a>
725
741
 
726
742
  ## [3.1.3] - 2025-07-14
@@ -742,7 +758,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
742
758
  - [shutdown]: Fixed error messages from frontend when Matterbridge is shutting down.
743
759
 
744
760
  <a href="https://www.buymeacoffee.com/luligugithub">
745
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
761
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
746
762
  </a>
747
763
 
748
764
  ## [3.1.2] - 2025-07-06
@@ -762,7 +778,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
762
778
  - [package]: Updated dependencies.
763
779
 
764
780
  <a href="https://www.buymeacoffee.com/luligugithub">
765
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
781
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
766
782
  </a>
767
783
 
768
784
  ## [3.1.1] - 2025-07-04
@@ -790,7 +806,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
790
806
  - [imports]: Added dynamic imports to Matterbridge and Frontend classes.
791
807
 
792
808
  <a href="https://www.buymeacoffee.com/luligugithub">
793
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
809
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
794
810
  </a>
795
811
 
796
812
  ## [3.1.0] - 2025-06-28
@@ -819,7 +835,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
819
835
  - [matter.js]: Bumped `matter.js` to 0.15.0 (https://github.com/project-chip/matter.js/discussions/2203). Great job matter.js!
820
836
 
821
837
  <a href="https://www.buymeacoffee.com/luligugithub">
822
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
838
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
823
839
  </a>
824
840
 
825
841
  ## [3.0.7] - 2025-06-21
@@ -841,7 +857,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
841
857
  - [platform]: Removed long deprecated methods: validateEntityBlackList and validateDeviceWhiteBlackList. Use validateDevice and validateEntity.
842
858
 
843
859
  <a href="https://www.buymeacoffee.com/luligugithub">
844
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
860
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
845
861
  </a>
846
862
 
847
863
  ## [3.0.6] - 2025-06-13
@@ -870,7 +886,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
870
886
  - [evse]: Fixed jsdoc on Evse.
871
887
 
872
888
  <a href="https://www.buymeacoffee.com/luligugithub">
873
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
889
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
874
890
  </a>
875
891
 
876
892
  ## [3.0.5] - 2025-06-07
@@ -894,7 +910,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
894
910
  - [selectAreas]: Fixed MatterbridgeServiceAreaServer.selectAreas.
895
911
 
896
912
  <a href="https://www.buymeacoffee.com/luligugithub">
897
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
913
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
898
914
  </a>
899
915
 
900
916
  ## [3.0.4] - 2025-05-26
@@ -915,7 +931,7 @@ Node.js 23, like all odd-numbered versions, is not supported.
915
931
  - [virtualDevice]: Fixed possible vulnerability in the length of the nodeLabel.
916
932
 
917
933
  <a href="https://www.buymeacoffee.com/luligugithub">
918
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
934
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
919
935
  </a>
920
936
 
921
937
  ## [3.0.3] - 2025-05-19
@@ -947,7 +963,7 @@ AEG RX 9 / Electrolux Pure i9 robot vacuum plugin for Matterbridge.
947
963
  - [rvc]: Added the parameters in the RoboticVacuumCleaner class constructor.
948
964
 
949
965
  <a href="https://www.buymeacoffee.com/luligugithub">
950
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
966
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
951
967
  </a>
952
968
 
953
969
  ## [3.0.2] - 2025-05-14
@@ -970,7 +986,7 @@ AEG RX 9 / Electrolux Pure i9 robot vacuum plugin for Matterbridge.
970
986
  - [frontend]: Fixed refresh of start/stop sharing.
971
987
 
972
988
  <a href="https://www.buymeacoffee.com/luligugithub">
973
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
989
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
974
990
  </a>
975
991
 
976
992
  ## [3.0.1] - 2025-05-06
@@ -1001,7 +1017,7 @@ AEG RX 9 / Electrolux Pure i9 robot vacuum plugin for Matterbridge.
1001
1017
  - [frontend]: Fixed refresh and postfix for select in HomeDevices.
1002
1018
 
1003
1019
  <a href="https://www.buymeacoffee.com/luligugithub">
1004
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1020
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1005
1021
  </a>
1006
1022
 
1007
1023
  ## [3.0.0] - 2025-04-29
@@ -1071,7 +1087,7 @@ Modified clusters:
1071
1087
  - [frontend]: Fixed download logs that broke with express v5.1.0.
1072
1088
 
1073
1089
  <a href="https://www.buymeacoffee.com/luligugithub">
1074
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1090
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1075
1091
  </a>
1076
1092
 
1077
1093
  ## [2.2.9] - 2025-04-18
@@ -1090,7 +1106,7 @@ Modified clusters:
1090
1106
  - [frontend]: Fixed wrong notification when the server node has been paired.
1091
1107
 
1092
1108
  <a href="https://www.buymeacoffee.com/luligugithub">
1093
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1109
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1094
1110
  </a>
1095
1111
 
1096
1112
  ## [2.2.8] - 2025-04-10
@@ -1114,7 +1130,7 @@ Modified clusters:
1114
1130
  - [DevicesIcon]: Fixed rendering of rain, freeze and leak sensors.
1115
1131
 
1116
1132
  <a href="https://www.buymeacoffee.com/luligugithub">
1117
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1133
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1118
1134
  </a>
1119
1135
 
1120
1136
  ## [2.2.7] - 2025-04-06
@@ -1135,7 +1151,7 @@ Modified clusters:
1135
1151
  - [platform]: Fix getSelectDevices and getSelectEntities on node < 22.
1136
1152
 
1137
1153
  <a href="https://www.buymeacoffee.com/luligugithub">
1138
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1154
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1139
1155
  </a>
1140
1156
 
1141
1157
  ## [2.2.6] - 2025-04-01
@@ -1159,7 +1175,7 @@ Modified clusters:
1159
1175
  - [onOff]: The onOff cluster created from createOnOffClusterServer() is now correct (no Lighting feature).
1160
1176
 
1161
1177
  <a href="https://www.buymeacoffee.com/luligugithub">
1162
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1178
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1163
1179
  </a>
1164
1180
 
1165
1181
  ## [2.2.5] - 2025-03-19
@@ -1185,7 +1201,7 @@ Modified clusters:
1185
1201
  - [frontend]: Fixed case where more then one plugin has select in the Home page Devices panel.
1186
1202
 
1187
1203
  <a href="https://www.buymeacoffee.com/luligugithub">
1188
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1204
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1189
1205
  </a>
1190
1206
 
1191
1207
  ## [2.2.4] - 2025-03-10
@@ -1200,7 +1216,7 @@ Modified clusters:
1200
1216
  - [package]: Update dependencies.
1201
1217
 
1202
1218
  <a href="https://www.buymeacoffee.com/luligugithub">
1203
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1219
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1204
1220
  </a>
1205
1221
 
1206
1222
  ## [2.2.3] - 2025-03-05
@@ -1218,7 +1234,7 @@ Modified clusters:
1218
1234
  - [matterbridge]: False error notification on configure plugin.
1219
1235
 
1220
1236
  <a href="https://www.buymeacoffee.com/luligugithub">
1221
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1237
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1222
1238
  </a>
1223
1239
 
1224
1240
  ## [2.2.2] - 2025-03-05
@@ -1236,7 +1252,7 @@ Modified clusters:
1236
1252
  - [frontend]: The config editor cannot be opened a second time before the restart.
1237
1253
 
1238
1254
  <a href="https://www.buymeacoffee.com/luligugithub">
1239
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1255
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1240
1256
  </a>
1241
1257
 
1242
1258
  ## [2.2.1] - 2025-03-02
@@ -1255,7 +1271,7 @@ Modified clusters:
1255
1271
  - [package]: Update matter.js to 0.12.5.
1256
1272
 
1257
1273
  <a href="https://www.buymeacoffee.com/luligugithub">
1258
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1274
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1259
1275
  </a>
1260
1276
 
1261
1277
  ## [2.2.0] - 2025-02-27
@@ -1284,7 +1300,7 @@ Modified clusters:
1284
1300
  - [matterbridge]: Check endpoint state in /api/devices.
1285
1301
 
1286
1302
  <a href="https://www.buymeacoffee.com/luligugithub">
1287
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1303
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1288
1304
  </a>
1289
1305
 
1290
1306
  ## [2.1.5] - 2025-02-11
@@ -1309,7 +1325,7 @@ Modified clusters:
1309
1325
  - [matterbridge]: Refactor reset devices adding a wait of 1 sec to allow matter to deliver all messages before shutting down.
1310
1326
 
1311
1327
  <a href="https://www.buymeacoffee.com/luligugithub">
1312
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1328
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1313
1329
  </a>
1314
1330
 
1315
1331
  ## [2.1.4] - 2025-02-07
@@ -1326,7 +1342,7 @@ Modified clusters:
1326
1342
  - [matter.js]: Since matter.js storage cannot properly encode non latin names, they are encoded before passing them to matter.js.
1327
1343
 
1328
1344
  <a href="https://www.buymeacoffee.com/luligugithub">
1329
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1345
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1330
1346
  </a>
1331
1347
 
1332
1348
  ## [2.1.3] - 2025-02-04
@@ -1340,7 +1356,7 @@ Modified clusters:
1340
1356
  - [package]: Update dependencies.
1341
1357
 
1342
1358
  <a href="https://www.buymeacoffee.com/luligugithub">
1343
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1359
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1344
1360
  </a>
1345
1361
 
1346
1362
  ## [2.1.2] - 2025-02-03
@@ -1357,7 +1373,7 @@ Modified clusters:
1357
1373
  - [frontend]: Fixed update matterbridge.
1358
1374
 
1359
1375
  <a href="https://www.buymeacoffee.com/luligugithub">
1360
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1376
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1361
1377
  </a>
1362
1378
 
1363
1379
  ## [2.1.1] - 2025-02-02
@@ -1367,7 +1383,7 @@ Modified clusters:
1367
1383
  - [matter.js]: Fix close server nodes.
1368
1384
 
1369
1385
  <a href="https://www.buymeacoffee.com/luligugithub">
1370
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1386
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1371
1387
  </a>
1372
1388
 
1373
1389
  ## [2.1.0] - 2025-02-02
@@ -1389,7 +1405,7 @@ Modified clusters:
1389
1405
  - [package]: Update matter.js to 0.12.2.
1390
1406
 
1391
1407
  <a href="https://www.buymeacoffee.com/luligugithub">
1392
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1408
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1393
1409
  </a>
1394
1410
 
1395
1411
  ## [2.0.0] - 2025-01-20
@@ -1420,7 +1436,7 @@ Modified clusters:
1420
1436
  - [sessions]: Fixed the case when Active session was not reporting correctly.
1421
1437
 
1422
1438
  <a href="https://www.buymeacoffee.com/luligugithub">
1423
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1439
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1424
1440
  </a>
1425
1441
 
1426
1442
  ## [1.7.3] - 2025-01-11
@@ -1435,7 +1451,7 @@ Modified clusters:
1435
1451
  - [package]: Workflows use node 22.x.
1436
1452
 
1437
1453
  <a href="https://www.buymeacoffee.com/luligugithub">
1438
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1454
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1439
1455
  </a>
1440
1456
 
1441
1457
  ## [1.7.2] - 2025-01-11
@@ -1462,7 +1478,7 @@ Modified clusters:
1462
1478
  - [frontend]: Fixed restart that was not working correctly in Ingress.
1463
1479
 
1464
1480
  <a href="https://www.buymeacoffee.com/luligugithub">
1465
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1481
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1466
1482
  </a>
1467
1483
 
1468
1484
  ## [1.7.1] - 2025-01-07
@@ -1485,7 +1501,7 @@ Modified clusters:
1485
1501
  - [frontend]: Fixed WebSocketProvider online.
1486
1502
 
1487
1503
  <a href="https://www.buymeacoffee.com/luligugithub">
1488
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1504
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1489
1505
  </a>
1490
1506
 
1491
1507
  ## [1.7.0] - 2025-01-04
@@ -1518,7 +1534,7 @@ Modified clusters:
1518
1534
  - [frontend]: Fixed device/cluster api that was not working in Ingress.
1519
1535
 
1520
1536
  <a href="https://www.buymeacoffee.com/luligugithub">
1521
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1537
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1522
1538
  </a>
1523
1539
 
1524
1540
  ## [1.6.7] - 2024-12-15
@@ -1547,7 +1563,7 @@ It is possible that some controllers see them as new devices or need time to rea
1547
1563
  - [Device]: Fix addChildDeviceType methods to include debug parameter in MatterbridgeDevice instantiation.
1548
1564
 
1549
1565
  <a href="https://www.buymeacoffee.com/luligugithub">
1550
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1566
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1551
1567
  </a>
1552
1568
 
1553
1569
  ## [1.6.6] - 2024-12-12
@@ -1584,7 +1600,7 @@ It is possible that some controllers see them as new devices or need time to rea
1584
1600
  - [device]: Fix typos in Device and Endpoint.
1585
1601
 
1586
1602
  <a href="https://www.buymeacoffee.com/luligugithub">
1587
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1603
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1588
1604
  </a>
1589
1605
 
1590
1606
  ## [1.6.5] - 2024-12-02
@@ -1596,7 +1612,7 @@ It is possible that some controllers see them as new devices or need time to rea
1596
1612
  - [package]: Update dependencies.
1597
1613
 
1598
1614
  <a href="https://www.buymeacoffee.com/luligugithub">
1599
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1615
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1600
1616
  </a>
1601
1617
 
1602
1618
  ## [1.6.4] - 2024-11-29
@@ -1606,7 +1622,7 @@ It is possible that some controllers see them as new devices or need time to rea
1606
1622
  - [matter.js]: Update to matter.js 0.11.7.
1607
1623
 
1608
1624
  <a href="https://www.buymeacoffee.com/luligugithub">
1609
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1625
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1610
1626
  </a>
1611
1627
 
1612
1628
  ## [1.6.3] - 2024-11-27
@@ -1621,7 +1637,7 @@ It is possible that some controllers see them as new devices or need time to rea
1621
1637
  - [matter.js]: Update to matter.js 0.11.6.
1622
1638
 
1623
1639
  <a href="https://www.buymeacoffee.com/luligugithub">
1624
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1640
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1625
1641
  </a>
1626
1642
 
1627
1643
  ## [1.6.2] - 2024-11-25
@@ -1655,7 +1671,7 @@ It is possible that some controllers see them as new devices or need time to rea
1655
1671
  - [energySensor]: Fixed wrong types on ElectricalEnergyMeasurementCluster ElectricalPowerMeasurementCluster.
1656
1672
 
1657
1673
  <a href="https://www.buymeacoffee.com/luligugithub">
1658
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1674
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1659
1675
  </a>
1660
1676
 
1661
1677
  ## [1.6.1] - 2024-11-02
@@ -1673,7 +1689,7 @@ It is possible that some controllers see them as new devices or need time to rea
1673
1689
  - [package]: Update dependencies.
1674
1690
 
1675
1691
  <a href="https://www.buymeacoffee.com/luligugithub">
1676
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1692
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1677
1693
  </a>
1678
1694
 
1679
1695
  ## [1.6.0] - 2024-10-28
@@ -1693,7 +1709,7 @@ It is possible that some controllers see them as new devices or need time to rea
1693
1709
  - [package]: Update dependencies.
1694
1710
 
1695
1711
  <a href="https://www.buymeacoffee.com/luligugithub">
1696
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1712
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1697
1713
  </a>
1698
1714
 
1699
1715
  ## [1.5.10] - 2024-10-01
@@ -1705,7 +1721,7 @@ It is possible that some controllers see them as new devices or need time to rea
1705
1721
  - [package]: Update dependencies.
1706
1722
 
1707
1723
  <a href="https://www.buymeacoffee.com/luligugithub">
1708
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1724
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1709
1725
  </a>
1710
1726
 
1711
1727
  ## [1.5.9] - 2024-09-23
@@ -1721,7 +1737,7 @@ It is possible that some controllers see them as new devices or need time to rea
1721
1737
  - [package]: Update dependencies.
1722
1738
 
1723
1739
  <a href="https://www.buymeacoffee.com/luligugithub">
1724
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1740
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1725
1741
  </a>
1726
1742
 
1727
1743
  ## [1.5.8] - 2024-09-21
@@ -1742,7 +1758,7 @@ It is possible that some controllers see them as new devices or need time to rea
1742
1758
  - [matterbridge]: Reset session informations when the controllers are not connected.
1743
1759
 
1744
1760
  <a href="https://www.buymeacoffee.com/luligugithub">
1745
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1761
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1746
1762
  </a>
1747
1763
 
1748
1764
  ## [1.5.7] - 2024-09-17
@@ -1759,7 +1775,7 @@ It is possible that some controllers see them as new devices or need time to rea
1759
1775
  - [package]: Update dependencies.
1760
1776
 
1761
1777
  <a href="https://www.buymeacoffee.com/luligugithub">
1762
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1778
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1763
1779
  </a>
1764
1780
 
1765
1781
  ## [1.5.6] - 2024-09-13
@@ -1776,7 +1792,7 @@ It is possible that some controllers see them as new devices or need time to rea
1776
1792
  - [package]: Updated dependencies.
1777
1793
 
1778
1794
  <a href="https://www.buymeacoffee.com/luligugithub">
1779
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1795
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1780
1796
  </a>
1781
1797
 
1782
1798
  ## [1.5.5] - 2024-09-09
@@ -1789,7 +1805,7 @@ It is possible that some controllers see them as new devices or need time to rea
1789
1805
  - [package]: Update dependencies.
1790
1806
 
1791
1807
  <a href="https://www.buymeacoffee.com/luligugithub">
1792
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1808
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1793
1809
  </a>
1794
1810
 
1795
1811
  ## [1.5.4] - 2024-09-05
@@ -1801,7 +1817,7 @@ It is possible that some controllers see them as new devices or need time to rea
1801
1817
  - [package]: Removed all local matter 1.3 clusters now present in matter.js.
1802
1818
 
1803
1819
  <a href="https://www.buymeacoffee.com/luligugithub">
1804
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1820
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1805
1821
  </a>
1806
1822
 
1807
1823
  ## [1.5.3] - 2024-09-04
@@ -1818,7 +1834,7 @@ It is possible that some controllers see them as new devices or need time to rea
1818
1834
  - [package]: Removed long deprecated exports.
1819
1835
 
1820
1836
  <a href="https://www.buymeacoffee.com/luligugithub">
1821
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1837
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1822
1838
  </a>
1823
1839
 
1824
1840
  ## [1.5.2] - 2024-08-30
@@ -1847,7 +1863,7 @@ It is possible that some controllers see them as new devices or need time to rea
1847
1863
  - [spawn]: Modified the install or update function to add more info in the log.
1848
1864
 
1849
1865
  <a href="https://www.buymeacoffee.com/luligugithub">
1850
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1866
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1851
1867
  </a>
1852
1868
 
1853
1869
  ## [1.5.1] - 2024-08-28
@@ -1861,7 +1877,7 @@ It is possible that some controllers see them as new devices or need time to rea
1861
1877
  - [package]: Update dependencies.
1862
1878
 
1863
1879
  <a href="https://www.buymeacoffee.com/luligugithub">
1864
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1880
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1865
1881
  </a>
1866
1882
 
1867
1883
  ## [1.5.0] - 2024-08-27
@@ -1882,7 +1898,7 @@ It is possible that some controllers see them as new devices or need time to rea
1882
1898
  - [package]: Update dependencies.
1883
1899
 
1884
1900
  <a href="https://www.buymeacoffee.com/luligugithub">
1885
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1901
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1886
1902
  </a>
1887
1903
 
1888
1904
  ## [1.4.3] - 2024-08-22
@@ -1904,7 +1920,7 @@ It is possible that some controllers see them as new devices or need time to rea
1904
1920
  - [package]: Update matter-history to 1.1.7.
1905
1921
 
1906
1922
  <a href="https://www.buymeacoffee.com/luligugithub">
1907
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1923
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1908
1924
  </a>
1909
1925
 
1910
1926
  ## [1.4.2] - 2024-08-20
@@ -1925,7 +1941,7 @@ It is possible that some controllers see them as new devices or need time to rea
1925
1941
  - [package]: Fixed dependencies.
1926
1942
 
1927
1943
  <a href="https://www.buymeacoffee.com/luligugithub">
1928
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1944
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1929
1945
  </a>
1930
1946
 
1931
1947
  ## [1.4.1] - 2024-07-28
@@ -1942,7 +1958,7 @@ It is possible that some controllers see them as new devices or need time to rea
1942
1958
  - [matter]: Update matter.js to 0.9.4.
1943
1959
 
1944
1960
  <a href="https://www.buymeacoffee.com/luligugithub">
1945
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1961
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1946
1962
  </a>
1947
1963
 
1948
1964
  ## [1.4.0] - 2024-07-23
@@ -1965,7 +1981,7 @@ It is possible that some controllers see them as new devices or need time to rea
1965
1981
  - [matterbridge]: Fixed utils export
1966
1982
 
1967
1983
  <a href="https://www.buymeacoffee.com/luligugithub">
1968
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
1984
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1969
1985
  </a>
1970
1986
 
1971
1987
  ## [1.3.13] - 2024-07-11
@@ -1984,7 +2000,7 @@ It is possible that some controllers see them as new devices or need time to rea
1984
2000
  - [matterbridge]: Fixed load plugin when the don't have author and description.
1985
2001
 
1986
2002
  <a href="https://www.buymeacoffee.com/luligugithub">
1987
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2003
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
1988
2004
  </a>
1989
2005
 
1990
2006
  ## [1.3.12] - 2024-07-10
@@ -2001,7 +2017,7 @@ It is possible that some controllers see them as new devices or need time to rea
2001
2017
  - [frontend]: Fix Home for mobile.
2002
2018
 
2003
2019
  <a href="https://www.buymeacoffee.com/luligugithub">
2004
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2020
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2005
2021
  </a>
2006
2022
 
2007
2023
  ## [1.3.11] - 2024-07-08
@@ -2018,7 +2034,7 @@ It is possible that some controllers see them as new devices or need time to rea
2018
2034
  - [dependencies]: Update dependencies.
2019
2035
 
2020
2036
  <a href="https://www.buymeacoffee.com/luligugithub">
2021
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2037
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2022
2038
  </a>
2023
2039
 
2024
2040
  ## [1.3.10] - 2024-07-05
@@ -2037,7 +2053,7 @@ It is possible that some controllers see them as new devices or need time to rea
2037
2053
  - [dependencies]: Update dependencies.
2038
2054
 
2039
2055
  <a href="https://www.buymeacoffee.com/luligugithub">
2040
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2056
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2041
2057
  </a>
2042
2058
 
2043
2059
  ## [1.3.9] - 2024-07-02
@@ -2048,7 +2064,7 @@ It is possible that some controllers see them as new devices or need time to rea
2048
2064
  - [matterbridge]: Fixed MeasurementClusters
2049
2065
 
2050
2066
  <a href="https://www.buymeacoffee.com/luligugithub">
2051
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2067
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2052
2068
  </a>
2053
2069
 
2054
2070
  ## [1.3.8] - 2024-07-01
@@ -2058,7 +2074,7 @@ It is possible that some controllers see them as new devices or need time to rea
2058
2074
  - [matterbridge]: Fixed crash in childbridge mode
2059
2075
 
2060
2076
  <a href="https://www.buymeacoffee.com/luligugithub">
2061
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2077
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2062
2078
  </a>
2063
2079
 
2064
2080
  ## [1.3.7] - 2024-06-30
@@ -2074,7 +2090,7 @@ It is possible that some controllers see them as new devices or need time to rea
2074
2090
  - [dependencies]: Update matter.js to 0.9.3.
2075
2091
 
2076
2092
  <a href="https://www.buymeacoffee.com/luligugithub">
2077
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2093
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2078
2094
  </a>
2079
2095
 
2080
2096
  ## [1.3.6] - 2024-06-28
@@ -2091,7 +2107,7 @@ It is possible that some controllers see them as new devices or need time to rea
2091
2107
  - [matterbridgeDevice]: Fixed ElectricalEnergyMeasurement and ElectricalPowerMeasurement
2092
2108
 
2093
2109
  <a href="https://www.buymeacoffee.com/luligugithub">
2094
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2110
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2095
2111
  </a>
2096
2112
 
2097
2113
  ## [1.3.5] - 2024-06-26
@@ -2111,7 +2127,7 @@ It is possible that some controllers see them as new devices or need time to rea
2111
2127
  - [matterbridge]: The "plugin add" method now loads, starts, and configures the plugin
2112
2128
 
2113
2129
  <a href="https://www.buymeacoffee.com/luligugithub">
2114
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2130
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2115
2131
  </a>
2116
2132
 
2117
2133
  ## [1.3.4] - 2024-06-23
@@ -2121,7 +2137,7 @@ It is possible that some controllers see them as new devices or need time to rea
2121
2137
  - [matterbridge]: Fixed exports
2122
2138
 
2123
2139
  <a href="https://www.buymeacoffee.com/luligugithub">
2124
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2140
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2125
2141
  </a>
2126
2142
 
2127
2143
  ## [1.3.3] - 2024-06-22
@@ -2132,7 +2148,7 @@ It is possible that some controllers see them as new devices or need time to rea
2132
2148
  - [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).
2133
2149
 
2134
2150
  <a href="https://www.buymeacoffee.com/luligugithub">
2135
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2151
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2136
2152
  </a>
2137
2153
 
2138
2154
  ## [1.3.2] - 2024-06-22
@@ -2173,7 +2189,7 @@ Features:
2173
2189
  - [matter.js]: Updated matter.js to 0.9.2
2174
2190
 
2175
2191
  <a href="https://www.buymeacoffee.com/luligugithub">
2176
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2192
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2177
2193
  </a>
2178
2194
 
2179
2195
  ## [1.3.1] - 2024-06-20
@@ -2185,7 +2201,7 @@ Features:
2185
2201
  - [matterbridge]: Moved getPluginVersion to the start also for disabled plugins.
2186
2202
 
2187
2203
  <a href="https://www.buymeacoffee.com/luligugithub">
2188
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2204
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2189
2205
  </a>
2190
2206
 
2191
2207
  ## [1.3.0] - 2024-06-16
@@ -2218,7 +2234,7 @@ Home Automation supports (probably only like BooleanState cluster):
2218
2234
  - [frontend]: Added logger level settings to reflect -matterlogger [debug | info | notice | warn | error | fatal]
2219
2235
 
2220
2236
  <a href="https://www.buymeacoffee.com/luligugithub">
2221
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2237
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2222
2238
  </a>
2223
2239
 
2224
2240
  ## [1.2.22] - 2024-06-04
@@ -2229,7 +2245,7 @@ Home Automation supports (probably only like BooleanState cluster):
2229
2245
  - [matterbridge]: Default config and schema for the new plugin matterbridge-shelly
2230
2246
 
2231
2247
  <a href="https://www.buymeacoffee.com/luligugithub">
2232
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2248
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2233
2249
  </a>
2234
2250
 
2235
2251
  ## [1.2.21] - 2024-06-04
@@ -2244,7 +2260,7 @@ Home Automation supports (probably only like BooleanState cluster):
2244
2260
  - [matterbridge]: Fixed the error that caused -add plugin to fail at the first run of matterbridge
2245
2261
 
2246
2262
  <a href="https://www.buymeacoffee.com/luligugithub">
2247
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2263
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2248
2264
  </a>
2249
2265
 
2250
2266
  ## [1.2.20] - 2024-06-03
@@ -2259,7 +2275,7 @@ Home Automation supports (probably only like BooleanState cluster):
2259
2275
  - [matterbridge]: Log level of Plugin already configured is now info
2260
2276
 
2261
2277
  <a href="https://www.buymeacoffee.com/luligugithub">
2262
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2278
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2263
2279
  </a>
2264
2280
 
2265
2281
  ## [1.2.19] - 2024-06-01
@@ -2281,7 +2297,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2281
2297
  - [frontend]: Added tooltip to the plugin update badge in the registered plugins window
2282
2298
 
2283
2299
  <a href="https://www.buymeacoffee.com/luligugithub">
2284
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2300
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2285
2301
  </a>
2286
2302
 
2287
2303
  ## [1.2.18] - 2024-05-28
@@ -2300,7 +2316,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2300
2316
  - [frontend]: Added a dropdown menu in Add Remove plugin to select the plugins
2301
2317
 
2302
2318
  <a href="https://www.buymeacoffee.com/luligugithub">
2303
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2319
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2304
2320
  </a>
2305
2321
 
2306
2322
  ## [1.2.17] - 2024-05-25
@@ -2324,7 +2340,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2324
2340
  - [matterbridge]: Added vendorId for Alexa
2325
2341
 
2326
2342
  <a href="https://www.buymeacoffee.com/luligugithub">
2327
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2343
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2328
2344
  </a>
2329
2345
 
2330
2346
  ## [1.2.16] - 2024-05-15
@@ -2343,7 +2359,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2343
2359
  - [frontend]: Added version information badge for Matterbridge.
2344
2360
 
2345
2361
  <a href="https://www.buymeacoffee.com/luligugithub">
2346
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2362
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2347
2363
  </a>
2348
2364
 
2349
2365
  ## [1.2.15] - 2024-05-14
@@ -2358,7 +2374,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2358
2374
  - [frontend]: Fixed the case when the latest version of Matterbridge or a plugin is not available.
2359
2375
 
2360
2376
  <a href="https://www.buymeacoffee.com/luligugithub">
2361
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2377
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2362
2378
  </a>
2363
2379
 
2364
2380
  ## [1.2.14] - 2024-05-09
@@ -2372,7 +2388,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2372
2388
  - [frontend]: Added Error state to registered plugins
2373
2389
 
2374
2390
  <a href="https://www.buymeacoffee.com/luligugithub">
2375
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2391
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2376
2392
  </a>
2377
2393
 
2378
2394
  ## [1.2.13] - 2024-05-05
@@ -2388,7 +2404,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2388
2404
  - [docker]: Added the docker image:dev on the docker hub with architectures: linux/amd64, linux/arm64, linux/arm/v7
2389
2405
 
2390
2406
  <a href="https://www.buymeacoffee.com/luligugithub">
2391
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2407
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2392
2408
  </a>
2393
2409
 
2394
2410
  ## [1.2.12] - 2024-04-30
@@ -2404,7 +2420,7 @@ A special thank to Tamer Salah (https://github.com/tammeryousef1006) for his hel
2404
2420
  - [frontend]: Added factoryreset in the Settings page. Matterbridge will shutdown to allow the factoryreset.
2405
2421
 
2406
2422
  <a href="https://www.buymeacoffee.com/luligugithub">
2407
- <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
2423
+ <img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80">
2408
2424
  </a>
2409
2425
 
2410
2426
  ## [1.2.11] - 2024-04-25