matterbridge 3.4.4-dev-20251215-216dfc3 → 3.4.4-dev-20251216-3e9ec5b

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 CHANGED
@@ -36,7 +36,8 @@ Advantages:
36
36
  - [frontend]: Added Log length: 100, 200, 500, 1000.
37
37
  - [frontend]: Added Log search with case-insensitive regex: use /text/ in the search field.
38
38
  - [frontend]: Differentiated update icon color: primary color for latest and secondary color for dev.
39
- - [MbfTable]: Added ConditionalTooltip to show clipped column cells.
39
+ - [frontend]: Added `Reset the frontend UI` in the Reset menu. It will reset the frontend local storage to the default.
40
+ - [MbfTable]: Added ConditionalTooltip to show clipped column cells. Used in the Cluster table.
40
41
 
41
42
  ### Changed
42
43
 
package/README-DOCKER.md CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ## Run matterbridge with docker and docker compose
20
20
 
21
- The Matterbridge Docker image, which includes a manifest list for the linux/amd64, linux/arm64 and linux/arm/v7 architectures, is published on **Docker Hub**.
21
+ The Matterbridge Docker image, which includes a manifest list for the linux/amd64, linux/arm64 and linux/arm/v7 architectures, is published on [**Docker Hub**](https://hub.docker.com/r/luligu/matterbridge).
22
22
 
23
23
  The image (tag **latest**) includes matterbridge and all official plugins with the latest release (as published on npm). You can just pull the new image and matterbridge with all plugins will be the latest release published on npm.
24
24
 
@@ -30,11 +30,11 @@ It is based on node:22-bookworm-slim and integrates the health check.
30
30
 
31
31
  How Health Checks Work in Different Scenarios
32
32
 
33
- With docker-compose
33
+ With docker-compose:
34
34
 
35
35
  Docker monitors the health check and can restart the container if needed.
36
36
 
37
- With docker run
37
+ With docker run:
38
38
 
39
39
  The health check still runs in the background, but:
40
40
  The container doesn’t restart automatically if it becomes unhealthy.
@@ -45,6 +45,8 @@ You can manually check the health status:
45
45
  docker exec -it matterbridge curl -v http://localhost:8283/health
46
46
  ```
47
47
 
48
+ If you use the docker image, please consider giving it a star on [**Docker Hub**](https://hub.docker.com/r/luligu/matterbridge).
49
+
48
50
  ### First create the Matterbridge directories
49
51
 
50
52
  This will create the required directories in your home directory if they don't exist
@@ -84,11 +86,24 @@ sudo docker run --name matterbridge \
84
86
 
85
87
  You may need to adapt the script to your setup.
86
88
 
89
+ ### Run the Docker container and start it adding different parameters (i.e. frontend on port 8585)
90
+
91
+ ```bash
92
+ sudo docker run --name matterbridge \
93
+ -v ~/Matterbridge:/root/Matterbridge \
94
+ -v ~/.matterbridge:/root/.matterbridge \
95
+ -v ~/.mattercert:/root/.mattercert \
96
+ --network host --restart always -d luligu/matterbridge:latest \
97
+ matterbridge --docker --frontend 8585
98
+ ```
99
+
100
+ If you override, always use `matterbridge --docker` like first part of the command.
101
+
87
102
  ### Run with docker compose
88
103
 
89
104
  The docker-compose.yml file is available in the docker directory of the package
90
105
 
91
- ```
106
+ ```yaml
92
107
  services:
93
108
  matterbridge:
94
109
  container_name: matterbridge
@@ -115,6 +130,17 @@ or start only the matterbridge container with:
115
130
  docker compose up -d matterbridge
116
131
  ```
117
132
 
133
+ If you need to start matterbridge adding different parameters (i.e. frontend on port 8585), you can override the default command adding the line command to the service:
134
+
135
+ ```yaml
136
+ services:
137
+ matterbridge:
138
+ ...
139
+ command: ["matterbridge", "--docker", "--frontend", "8585"]
140
+ ```
141
+
142
+ If you override, always use `["matterbridge", "--docker"]` like first part of the command.
143
+
118
144
  ### Stop with docker compose
119
145
 
120
146
  ```bash
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
  ---
17
17
 
18
- Matterbridge is a Matter plugin manager.
18
+ [Matterbridge](https://matterbridge.io) is a Matter plugin manager.
19
19
 
20
20
  It allows you to have all your Matter devices up and running in a couple of minutes without having to deal with the pairing process for each individual device.
21
21
 
@@ -27,7 +27,7 @@ This project aims to enable porting Homebridge plugins to Matterbridge plugins w
27
27
 
28
28
  The easiest way to start create a new plugin is to clone the [Matterbridge Plugin Template](https://github.com/Luligu/matterbridge-plugin-template) which has **Dev Container support for instant development environment** and all tools and extensions (like Node.js, npm, TypeScript, ESLint, Prettier, Jest and Vitest) already loaded and configured.
29
29
 
30
- Matterbridge creates a device that can be paired with any ecosystem, such as Apple Home, Google Home, Amazon Alexa, Home Assistant, or any other platform supporting Matter.
30
+ Matterbridge creates a [Matter device](https://csa-iot.org/all-solutions/matter/) that can be paired with any ecosystem, such as Apple Home, Google Home, Amazon Alexa, Home Assistant, or any other platform supporting Matter.
31
31
 
32
32
  You don't need a hub or a dedicated new machine.
33
33