matterbridge 3.2.3-dev-20250821-ef6a4eb → 3.2.4-dev-20250828-cf98212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/matterbridgePlatform.js +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,22 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
8
8
|
<img src="bmc-button.svg" alt="Buy me a coffee" width="120">
|
|
9
9
|
</a>
|
|
10
10
|
|
|
11
|
+
## [3.2.4] - 2025-08-27
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- [platform]: Added clearEntitySelect() to Platform.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- [package]: Updated dependencies.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
24
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
25
|
+
</a>
|
|
26
|
+
|
|
11
27
|
## [3.2.3] - 2025-08-20
|
|
12
28
|
|
|
13
29
|
### Added
|
|
@@ -175,6 +175,10 @@ export class MatterbridgePlatform {
|
|
|
175
175
|
this.selectDevice.delete(serial);
|
|
176
176
|
await this.saveSelects();
|
|
177
177
|
}
|
|
178
|
+
async clearEntitySelect(name) {
|
|
179
|
+
this.selectEntity.delete(name);
|
|
180
|
+
await this.saveSelects();
|
|
181
|
+
}
|
|
178
182
|
setSelectDevice(serial, name, configUrl, icon, entities) {
|
|
179
183
|
const device = this.selectDevice.get(serial);
|
|
180
184
|
if (device) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4-dev-20250828-cf98212",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.4-dev-20250828-cf98212",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.3",
|
package/package.json
CHANGED