matterbridge 3.2.5-dev-20250831-732330c → 3.2.6-dev-20250903-2acb918
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 +21 -2
- package/dist/devices/roboticVacuumCleaner.js +1 -1
- package/dist/matterbridgeDeviceTypes.js +8 -0
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/{main.b4cc32cf.js → main.ae006df6.js} +3 -3
- package/frontend/build/static/js/{main.b4cc32cf.js.map → main.ae006df6.js.map} +1 -1
- package/frontend/package.json +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- /package/frontend/build/static/js/{main.b4cc32cf.js.LICENSE.txt → main.ae006df6.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,13 +8,31 @@ 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.
|
|
11
|
+
## [3.2.6] - 2025-09-??
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- [package]: Updated dependencies.
|
|
18
|
+
- [package]: Bumped Jest to v. 30.1.3. (this version solves the broken ESM module mock).
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- [jest]: Fixed cli test failing with Jest to v. 30.1.3.
|
|
23
|
+
|
|
24
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
25
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
26
|
+
</a>
|
|
27
|
+
|
|
28
|
+
## [3.2.5] - 2025-09-02
|
|
12
29
|
|
|
13
30
|
### Added
|
|
14
31
|
|
|
15
32
|
- [refrigerator]: Added RefrigeratorAlarm cluster.
|
|
16
33
|
- [refrigerator]: Added setDoorOpenState method to set the doorOpen state of RefrigeratorAlarm cluster.
|
|
17
34
|
- [refrigerator]: Added triggerDoorOpenState method to trigger the alert for the doorOpen state of RefrigeratorAlarm cluster.
|
|
35
|
+
- [frontend]: Bumped `frontend` version to 2.7.4.
|
|
18
36
|
|
|
19
37
|
### Changed
|
|
20
38
|
|
|
@@ -23,7 +41,8 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
23
41
|
|
|
24
42
|
### Fixed
|
|
25
43
|
|
|
26
|
-
- [refrigerator]:
|
|
44
|
+
- [refrigerator]: Fixed device type.
|
|
45
|
+
- [frontend]: Fixed padding in QRDivDevice (devices in 'server' mode).
|
|
27
46
|
|
|
28
47
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
29
48
|
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
@@ -40,7 +40,7 @@ export class RoboticVacuumCleaner extends MatterbridgeEndpoint {
|
|
|
40
40
|
supportedModes: supportedModes ?? [
|
|
41
41
|
{ label: 'Vacuum', mode: 1, modeTags: [{ value: RvcCleanMode.ModeTag.Vacuum }] },
|
|
42
42
|
{ label: 'Mop', mode: 2, modeTags: [{ value: RvcCleanMode.ModeTag.Mop }] },
|
|
43
|
-
{ label: '
|
|
43
|
+
{ label: 'DeepClean', mode: 3, modeTags: [{ value: RvcCleanMode.ModeTag.DeepClean }] },
|
|
44
44
|
],
|
|
45
45
|
currentMode: currentMode ?? 1,
|
|
46
46
|
});
|
|
@@ -89,6 +89,14 @@ export const DeviceTypeDefinition = ({ name, code, deviceClass, revision, requir
|
|
|
89
89
|
requiredClientClusters,
|
|
90
90
|
optionalClientClusters,
|
|
91
91
|
});
|
|
92
|
+
export const rootNode = DeviceTypeDefinition({
|
|
93
|
+
name: 'MA-rootNode',
|
|
94
|
+
code: 0x0016,
|
|
95
|
+
deviceClass: DeviceClasses.Node,
|
|
96
|
+
revision: 3,
|
|
97
|
+
requiredServerClusters: [],
|
|
98
|
+
optionalServerClusters: [],
|
|
99
|
+
});
|
|
92
100
|
export const powerSource = DeviceTypeDefinition({
|
|
93
101
|
name: 'MA-powerSource',
|
|
94
102
|
code: 0x0011,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "./static/css/main.944b63c3.css",
|
|
4
|
-
"main.js": "./static/js/main.
|
|
4
|
+
"main.js": "./static/js/main.ae006df6.js",
|
|
5
5
|
"static/js/453.d855a71b.chunk.js": "./static/js/453.d855a71b.chunk.js",
|
|
6
6
|
"static/media/roboto-latin-700-normal.woff2": "./static/media/roboto-latin-700-normal.c4d6cab43bec89049809.woff2",
|
|
7
7
|
"static/media/roboto-latin-500-normal.woff2": "./static/media/roboto-latin-500-normal.599f66a60bdf974e578e.woff2",
|
|
@@ -77,11 +77,11 @@
|
|
|
77
77
|
"static/media/roboto-greek-ext-300-normal.woff": "./static/media/roboto-greek-ext-300-normal.60729cafbded24073dfb.woff",
|
|
78
78
|
"index.html": "./index.html",
|
|
79
79
|
"main.944b63c3.css.map": "./static/css/main.944b63c3.css.map",
|
|
80
|
-
"main.
|
|
80
|
+
"main.ae006df6.js.map": "./static/js/main.ae006df6.js.map",
|
|
81
81
|
"453.d855a71b.chunk.js.map": "./static/js/453.d855a71b.chunk.js.map"
|
|
82
82
|
},
|
|
83
83
|
"entrypoints": [
|
|
84
84
|
"static/css/main.944b63c3.css",
|
|
85
|
-
"static/js/main.
|
|
85
|
+
"static/js/main.ae006df6.js"
|
|
86
86
|
]
|
|
87
87
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.ae006df6.js"></script><link href="./static/css/main.944b63c3.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|