matterbridge 1.7.2-dev.7 → 1.7.2-dev.8
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 +2 -1
- package/dist/matterbridge.js +9 -0
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/js/{main.c320863b.js → main.ca25ed78.js} +12 -12
- package/frontend/build/static/js/{main.c320863b.js.map → main.ca25ed78.js.map} +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- /package/frontend/build/static/js/{main.c320863b.js.LICENSE.txt → main.ca25ed78.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -20,7 +20,7 @@ Matterbridge edge is now released. The default mode is still the normal mode to
|
|
|
20
20
|
The frontend has a new dark and light mode. The dark mode is now the default mode.
|
|
21
21
|
It is possible to change the mode (Classic, Dark or Light) in Settings, Matterbridge settings.
|
|
22
22
|
|
|
23
|
-
## [1.7.2-dev.
|
|
23
|
+
## [1.7.2-dev.8] - 2025-01-10
|
|
24
24
|
|
|
25
25
|
### Added
|
|
26
26
|
|
|
@@ -31,6 +31,7 @@ It is possible to change the mode (Classic, Dark or Light) in Settings, Matterbr
|
|
|
31
31
|
- [frontend]: Added filter by device name and serial number to Devices page.
|
|
32
32
|
- [frontend]: Added Icon view to the Devices page (beta).
|
|
33
33
|
- [frontend]: Added the possibility to select the entities/components from a list in the config editor.
|
|
34
|
+
- [matterbridge]: Added /health endpoint for watchdog.
|
|
34
35
|
|
|
35
36
|
### Changed
|
|
36
37
|
|
package/dist/matterbridge.js
CHANGED
|
@@ -2545,6 +2545,15 @@ export class Matterbridge extends EventEmitter {
|
|
|
2545
2545
|
res.json({ valid: false });
|
|
2546
2546
|
}
|
|
2547
2547
|
});
|
|
2548
|
+
this.expressApp.get('/health', (req, res) => {
|
|
2549
|
+
this.log.debug('Express received /health');
|
|
2550
|
+
const healthStatus = {
|
|
2551
|
+
status: 'ok',
|
|
2552
|
+
uptime: process.uptime(),
|
|
2553
|
+
timestamp: new Date().toISOString(),
|
|
2554
|
+
};
|
|
2555
|
+
res.status(200).json(healthStatus);
|
|
2556
|
+
});
|
|
2548
2557
|
this.expressApp.get('/api/settings', express.json(), async (req, res) => {
|
|
2549
2558
|
this.log.debug('The frontend sent /api/settings');
|
|
2550
2559
|
this.matterbridgeInformation.bridgeMode = this.bridgeMode;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "./static/css/main.8727aee4.css",
|
|
4
|
-
"main.js": "./static/js/main.
|
|
4
|
+
"main.js": "./static/js/main.ca25ed78.js",
|
|
5
5
|
"static/js/453.abd36b29.chunk.js": "./static/js/453.abd36b29.chunk.js",
|
|
6
6
|
"static/media/roboto-latin-700-normal.woff2": "./static/media/roboto-latin-700-normal.4535474e1cf8598695ad.woff2",
|
|
7
7
|
"static/media/roboto-latin-500-normal.woff2": "./static/media/roboto-latin-500-normal.7077203b1982951ecf76.woff2",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"static/media/roboto-greek-ext-400-normal.woff": "./static/media/roboto-greek-ext-400-normal.16eb83b4a3b1ea994243.woff",
|
|
62
62
|
"index.html": "./index.html",
|
|
63
63
|
"main.8727aee4.css.map": "./static/css/main.8727aee4.css.map",
|
|
64
|
-
"main.
|
|
64
|
+
"main.ca25ed78.js.map": "./static/js/main.ca25ed78.js.map",
|
|
65
65
|
"453.abd36b29.chunk.js.map": "./static/js/453.abd36b29.chunk.js.map"
|
|
66
66
|
},
|
|
67
67
|
"entrypoints": [
|
|
68
68
|
"static/css/main.8727aee4.css",
|
|
69
|
-
"static/js/main.
|
|
69
|
+
"static/js/main.ca25ed78.js"
|
|
70
70
|
]
|
|
71
71
|
}
|
|
@@ -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.ca25ed78.js"></script><link href="./static/css/main.8727aee4.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|