matterbridge 3.3.5-dev-20251028-d89f93f → 3.3.5-dev-20251029-a0d9d11
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 +6 -0
- package/README-SERVICE-LOCAL.md +1 -54
- package/README.md +4 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,8 @@ Advantages:
|
|
|
30
30
|
|
|
31
31
|
## [3.3.5] - 2025-10-??
|
|
32
32
|
|
|
33
|
+
### Added
|
|
34
|
+
|
|
33
35
|
- [thread]: Added get_log_level and set_log_level to BroadcastServer.
|
|
34
36
|
- [frontend]: Added password check to WebSocket.
|
|
35
37
|
|
|
@@ -38,6 +40,10 @@ Advantages:
|
|
|
38
40
|
- [package]: Updated dependencies.
|
|
39
41
|
- [frontend]: Bumped `frontend` version to 3.2.4.
|
|
40
42
|
|
|
43
|
+
### Fixed
|
|
44
|
+
|
|
45
|
+
- [service]: Fixed systemd configuration with local global node_modules.
|
|
46
|
+
|
|
41
47
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
42
48
|
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
43
49
|
</a>
|
package/README-SERVICE-LOCAL.md
CHANGED
|
@@ -51,7 +51,7 @@ Create a systemctl configuration file for Matterbridge
|
|
|
51
51
|
sudo nano /etc/systemd/system/matterbridge.service
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
Add the following to this file, replacing
|
|
54
|
+
Add the following to this file, replacing 4 times (!) USER with your user name (e.g. WorkingDirectory=/home/pi/Matterbridge, User=pi and Group=pi and Environment="NPM_CONFIG_PREFIX=/home/pi/.npm-global"):
|
|
55
55
|
|
|
56
56
|
```
|
|
57
57
|
[Unit]
|
|
@@ -171,56 +171,3 @@ save it and run
|
|
|
171
171
|
```bash
|
|
172
172
|
sudo systemctl restart systemd-journald
|
|
173
173
|
```
|
|
174
|
-
|
|
175
|
-
## Verify that with your distro you can run sudo npm install -g matterbridge without the password
|
|
176
|
-
|
|
177
|
-
Run the following command to verify if you can install Matterbridge globally without being prompted for a password:
|
|
178
|
-
|
|
179
|
-
```bash
|
|
180
|
-
sudo npm install -g matterbridge --omit=dev
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
If you are not prompted for a password, no further action is required.
|
|
184
|
-
|
|
185
|
-
If that is not the case, open the sudoers file for editing using visudo
|
|
186
|
-
|
|
187
|
-
```bash
|
|
188
|
-
sudo visudo
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
verify the presence of of a line
|
|
192
|
-
|
|
193
|
-
```
|
|
194
|
-
@includedir /etc/sudoers.d
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
exit and create a configuration file for sudoers
|
|
198
|
-
|
|
199
|
-
```bash
|
|
200
|
-
sudo nano /etc/sudoers.d/matterbridge
|
|
201
|
-
```
|
|
202
|
-
|
|
203
|
-
add this line replacing USER with your user name (e.g. radxa ALL=(ALL) NOPASSWD: ALL)
|
|
204
|
-
|
|
205
|
-
```
|
|
206
|
-
<USER> ALL=(ALL) NOPASSWD: ALL
|
|
207
|
-
```
|
|
208
|
-
|
|
209
|
-
or if you prefers to only give access to npm without password try with (e.g. radxa ALL=(ALL) NOPASSWD: /usr/bin/npm)
|
|
210
|
-
|
|
211
|
-
```
|
|
212
|
-
<USER> ALL=(ALL) NOPASSWD: /usr/bin/npm
|
|
213
|
-
```
|
|
214
|
-
|
|
215
|
-
save the file and reload the settings with:
|
|
216
|
-
|
|
217
|
-
```bash
|
|
218
|
-
sudo chmod 0440 /etc/sudoers.d/matterbridge
|
|
219
|
-
sudo visudo -c
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
Verify if you can install Matterbridge globally without being prompted for a password:
|
|
223
|
-
|
|
224
|
-
```bash
|
|
225
|
-
sudo npm install -g matterbridge --omit=dev
|
|
226
|
-
```
|
package/README.md
CHANGED
|
@@ -172,6 +172,10 @@ Config editor:
|
|
|
172
172
|
|
|
173
173
|
[Service configurations](README-SERVICE.md)
|
|
174
174
|
|
|
175
|
+
or with local global node_modules
|
|
176
|
+
|
|
177
|
+
[Service configurations with local global node_modules](README-SERVICE-LOCAL.md)
|
|
178
|
+
|
|
175
179
|
### Run matterbridge as a system service with launchctl (macOS only)
|
|
176
180
|
|
|
177
181
|
[Launchctl configurations](README-MACOS-PLIST.md)
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.3.5-dev-
|
|
3
|
+
"version": "3.3.5-dev-20251029-a0d9d11",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.3.5-dev-
|
|
9
|
+
"version": "3.3.5-dev-20251029-a0d9d11",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED