matterbridge 1.2.9 → 1.2.11
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 +31 -0
- package/README.md +98 -5
- package/dist/matterbridge.d.ts +6 -2
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +86 -73
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +19 -45
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +91 -51
- package/dist/matterbridgeDevice.js.map +1 -1
- package/frontend/build/asset-manifest.json +6 -6
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/css/main.1880392b.css +2 -0
- package/frontend/build/static/css/main.1880392b.css.map +1 -0
- package/frontend/build/static/js/{main.cf64bc64.js → main.60e6f24a.js} +3 -3
- package/frontend/build/static/js/main.60e6f24a.js.map +1 -0
- package/package.json +7 -3
- package/frontend/build/static/css/main.4c325919.css +0 -2
- package/frontend/build/static/css/main.4c325919.css.map +0 -1
- package/frontend/build/static/js/main.cf64bc64.js.map +0 -1
- /package/frontend/build/static/js/{main.cf64bc64.js.LICENSE.txt → main.60e6f24a.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.2.11] - 2024-04-25
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- [matterbridge]: Added user to system information.
|
|
10
|
+
- [frontend]: Persist the filter selection (debug level and search criteria) in the Logs route.
|
|
11
|
+
- [frontend]: Added version and two badges for bridgeMode and restartMode.
|
|
12
|
+
- [frontend]: Frontend updated to 0.8.8.
|
|
13
|
+
- [docker]: Added support for docker (BETA). The Matterbridge image is published on the docker hub.
|
|
14
|
+
- [docker]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-the-Docker-container-and-start-it.
|
|
15
|
+
- [docker compose]: See the guidelines on https://github.com/Luligu/matterbridge?tab=readme-ov-file#Run-with-docker-compose.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- [matterbridge]: Fixed the case when a plugin throws errors.
|
|
20
|
+
|
|
21
|
+
### New plugin
|
|
22
|
+
|
|
23
|
+
- Matterbridge Somfy Tahoma https://github.com/Luligu/matterbridge-somfy-tahoma
|
|
24
|
+
|
|
25
|
+
## [1.2.10] - 2024-04-23
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- [extension]: Finalized implementation of zigbee2MQTT internal extension v. 1.0.0.
|
|
30
|
+
|
|
31
|
+
|
|
5
32
|
## [1.2.9] - 2024-04-19
|
|
6
33
|
|
|
7
34
|
### Added
|
|
8
35
|
|
|
36
|
+
- [Matterbridge]: Added call to set reachability at start.
|
|
37
|
+
|
|
38
|
+
### Added
|
|
39
|
+
|
|
9
40
|
- [Matterbridge]: Added call to set reachability at start.
|
|
10
41
|
- [frontend]: Added filter for log level and search criteria in the Logs page.
|
|
11
42
|
- [frontend]: Added colors to the logs in the Home page and in the Logs page.
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Test the installation with:
|
|
|
57
57
|
matterbridge -bridge
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
Now it is possible to open the frontend at the link provided (default: http://localhost:
|
|
60
|
+
Now it is possible to open the frontend at the link provided (default: http://localhost:8283)
|
|
61
61
|
|
|
62
62
|
## Usage
|
|
63
63
|
|
|
@@ -85,7 +85,7 @@ matterbridge -help
|
|
|
85
85
|
|
|
86
86
|
## Frontend
|
|
87
87
|
|
|
88
|
-
Matterbridge has a frontend available on http://localhost:
|
|
88
|
+
Matterbridge has a frontend available on http://localhost:8283
|
|
89
89
|
|
|
90
90
|
You can change the default port by adding the frontend parameter when you launch it.
|
|
91
91
|
|
|
@@ -153,6 +153,14 @@ The Eve app only shows the history when the plugins run like an AccessoryPlatfor
|
|
|
153
153
|
|
|
154
154
|
[zigbee2mqtt](https://github.com/Luligu/matterbridge-zigbee2mqtt)
|
|
155
155
|
|
|
156
|
+
Matterbridge zigbee2mqtt is a matterbridge production-level plugin that expose all zigbee2mqtt devices and groups to Matter.
|
|
157
|
+
|
|
158
|
+
No hub or dedicated hardware needed.
|
|
159
|
+
|
|
160
|
+
[somy-tahoma](https://github.com/Luligu/matterbridge-somfy-tahoma)
|
|
161
|
+
|
|
162
|
+
Matterbridge Somfy Tahoma is a matterbridge production-level plugin that expose all Somfy Tahoma devices to Matter.
|
|
163
|
+
|
|
156
164
|
## How to install and register a production-level plugin (from npm)
|
|
157
165
|
|
|
158
166
|
To install i.e. https://github.com/Luligu/matterbridge-zigbee2mqtt
|
|
@@ -253,7 +261,7 @@ The easiest way is to clone:
|
|
|
253
261
|
|
|
254
262
|
- https://github.com/Luligu/matterbridge-example-dynamic-platform if you want to create a Dynamic Platform Plugin.
|
|
255
263
|
|
|
256
|
-
Then change the name, version, description and author in the package.json.
|
|
264
|
+
Then change the name (keep matterbridge- at the beginning of the name), version, description and author in the package.json.
|
|
257
265
|
|
|
258
266
|
Add your plugin logic in platform.ts.
|
|
259
267
|
|
|
@@ -309,7 +317,7 @@ Create a systemctl configuration file for Matterbridge
|
|
|
309
317
|
sudo nano /etc/systemd/system/matterbridge.service
|
|
310
318
|
```
|
|
311
319
|
|
|
312
|
-
Add the following to this file, replacing twice USER with your user name (e.g. pi):
|
|
320
|
+
Add the following to this file, replacing twice (!) USER with your user name (e.g. WorkingDirectory=/home/pi/Matterbridge and User=pi):
|
|
313
321
|
|
|
314
322
|
```
|
|
315
323
|
[Unit]
|
|
@@ -318,7 +326,7 @@ After=network-online.target
|
|
|
318
326
|
|
|
319
327
|
[Service]
|
|
320
328
|
Type=simple
|
|
321
|
-
ExecStart=/usr/bin/matterbridge -bridge -service
|
|
329
|
+
ExecStart=/usr/bin/matterbridge -bridge -service -port 5550
|
|
322
330
|
WorkingDirectory=/home/<USER>/Matterbridge
|
|
323
331
|
StandardOutput=inherit
|
|
324
332
|
StandardError=inherit
|
|
@@ -373,6 +381,91 @@ sudo systemctl enable matterbridge.service
|
|
|
373
381
|
sudo systemctl disable matterbridge.service
|
|
374
382
|
```
|
|
375
383
|
|
|
384
|
+
## Run matterbridge with docker (Linux only) BETA
|
|
385
|
+
|
|
386
|
+
The Matterbridge docker image is published on the docker hub.
|
|
387
|
+
|
|
388
|
+
### Run the Docker container and start it
|
|
389
|
+
The container has full access to the host network (needed for mdns).
|
|
390
|
+
|
|
391
|
+
The volume matterbridge_plugin connects to the internal Matterbridge plugin directory (Matterbridge).
|
|
392
|
+
|
|
393
|
+
The volume matterbridge_storage connects to the internal Matterbridge storage directory (.matterbridge).
|
|
394
|
+
|
|
395
|
+
```
|
|
396
|
+
docker volume create matterbridge_plugin
|
|
397
|
+
docker volume create matterbridge_storage
|
|
398
|
+
docker run --name matterbridge \
|
|
399
|
+
-v matterbridge_plugin:/root/Matterbridge \
|
|
400
|
+
-v matterbridge_storage:/root/.matterbridge \
|
|
401
|
+
--network host --restart always -d luligu/matterbridge:latest
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### Run with docker compose
|
|
405
|
+
|
|
406
|
+
The docker-compose.yml file is available in the root of the package
|
|
407
|
+
|
|
408
|
+
```
|
|
409
|
+
services:
|
|
410
|
+
matterbridge:
|
|
411
|
+
container_name: matterbridge
|
|
412
|
+
image: luligu/matterbridge:latest # Matterbridge image with the latest tag
|
|
413
|
+
network_mode: host # Ensures the Matter mdns works
|
|
414
|
+
restart: always # Ensures the container always restarts automatically
|
|
415
|
+
volumes:
|
|
416
|
+
- plugin:/root/Matterbridge
|
|
417
|
+
- storage:/root/.matterbridge
|
|
418
|
+
|
|
419
|
+
volumes:
|
|
420
|
+
plugin:
|
|
421
|
+
storage:
|
|
422
|
+
```
|
|
423
|
+
Run with docker compose
|
|
424
|
+
|
|
425
|
+
```
|
|
426
|
+
docker compose up -d
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
### Stop with docker compose
|
|
430
|
+
```
|
|
431
|
+
docker compose down
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
### Start the Docker container
|
|
435
|
+
```
|
|
436
|
+
docker start matterbridge
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
### Stop the Docker container
|
|
440
|
+
```
|
|
441
|
+
docker stop matterbridge
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
### Restart the Docker container
|
|
445
|
+
```
|
|
446
|
+
docker restart matterbridge
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
### Shows the logs
|
|
450
|
+
```
|
|
451
|
+
docker logs matterbridge
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
### Shows the logs real time (tail)
|
|
455
|
+
```
|
|
456
|
+
docker logs --tail 1000 -f matterbridge
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
### Inspect the Matterbridge plugin volume
|
|
460
|
+
```
|
|
461
|
+
docker volume inspect matterbridge_plugin
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
### Inspect the Matterbridge storage volume
|
|
465
|
+
```
|
|
466
|
+
docker volume inspect matterbridge_storage
|
|
467
|
+
```
|
|
468
|
+
|
|
376
469
|
# Contribution Guidelines
|
|
377
470
|
|
|
378
471
|
Thank you for your interest in contributing to my project!
|
package/dist/matterbridge.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ interface SystemInformation {
|
|
|
32
32
|
ipv6Address: string;
|
|
33
33
|
nodeVersion: string;
|
|
34
34
|
hostname: string;
|
|
35
|
+
user: string;
|
|
35
36
|
osType: string;
|
|
36
37
|
osRelease: string;
|
|
37
38
|
osPlatform: string;
|
|
@@ -49,6 +50,7 @@ interface MatterbridgeInformation {
|
|
|
49
50
|
matterbridgeVersion: string;
|
|
50
51
|
matterbridgeLatestVersion: string;
|
|
51
52
|
bridgeMode: string;
|
|
53
|
+
restartMode: string;
|
|
52
54
|
debugEnabled: boolean;
|
|
53
55
|
}
|
|
54
56
|
/**
|
|
@@ -65,6 +67,7 @@ export declare class Matterbridge extends EventEmitter {
|
|
|
65
67
|
matterbridgeVersion: string;
|
|
66
68
|
matterbridgeLatestVersion: string;
|
|
67
69
|
bridgeMode: 'bridge' | 'childbridge' | 'controller' | '';
|
|
70
|
+
restartMode: 'service' | 'docker' | '';
|
|
68
71
|
debugEnabled: boolean;
|
|
69
72
|
private port;
|
|
70
73
|
private log;
|
|
@@ -98,13 +101,14 @@ export declare class Matterbridge extends EventEmitter {
|
|
|
98
101
|
*
|
|
99
102
|
* @returns A Promise that resolves when the initialization is complete.
|
|
100
103
|
*/
|
|
101
|
-
|
|
104
|
+
startExtension(dataPath: string, debugEnabled: boolean, extensionVersion: string, port?: number): Promise<boolean>;
|
|
102
105
|
/**
|
|
103
106
|
* Close the Matterbridge instance as extension for zigbee2mqtt.
|
|
104
107
|
*
|
|
105
108
|
* @returns A Promise that resolves when the initialization is complete.
|
|
106
109
|
*/
|
|
107
|
-
|
|
110
|
+
stopExtension(): Promise<void>;
|
|
111
|
+
isExtensionCommissioned(): boolean;
|
|
108
112
|
/**
|
|
109
113
|
* Initializes the Matterbridge application.
|
|
110
114
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAE,kBAAkB,EAAgC,MAAM,yBAAyB,CAAC;AAS3F,OAAO,YAAY,MAAM,QAAQ,CAAC;AA2ClC,MAAM,MAAM,mBAAmB,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,IAAI,CAAC;AAEjG,MAAM,MAAM,cAAc,GAAG;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,mBAAmB,CAAC;CACpC,CAAC;AA0CF,UAAU,iBAAiB;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;CACtB;AAGD,UAAU,uBAAuB;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,2BAA2B,EAAE,MAAM,CAAC;IACpC,sBAAsB,EAAE,MAAM,CAAC;IAC/B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,yBAAyB,EAAE,MAAM,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,OAAO,CAAC;CACvB;AAMD;;GAEG;AACH,qBAAa,YAAa,SAAQ,YAAY;IACrC,iBAAiB,EAAE,iBAAiB,
|
|
1
|
+
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"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"}
|