matterbridge 3.2.6-dev-20250906-4b022a0 → 3.2.6-dev-20250906-34345e5
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 +1 -1
- package/dist/matterbridge.js +41 -41
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/matterbridge.js
CHANGED
|
@@ -556,46 +556,46 @@ export class Matterbridge extends EventEmitter {
|
|
|
556
556
|
if (hasParameter('help')) {
|
|
557
557
|
this.log.info(`\nUsage: matterbridge [options]\n
|
|
558
558
|
Options:
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
559
|
+
--help: show the help
|
|
560
|
+
--bridge: start Matterbridge in bridge mode
|
|
561
|
+
--childbridge: start Matterbridge in childbridge mode
|
|
562
|
+
--port [port]: start the commissioning server on the given port (default 5540)
|
|
563
|
+
--mdnsinterface [name]: set the interface to use for the matter server mdnsInterface (default all interfaces)
|
|
564
|
+
--ipv4address [address]: set the ipv4 interface address to use for the matter listener (default all interfaces)
|
|
565
|
+
--ipv6address [address]: set the ipv6 interface address to use for the matter listener (default all interfaces)
|
|
566
|
+
--frontend [port]: start the frontend on the given port (default 8283)
|
|
567
|
+
--logger: set the matterbridge logger level: debug | info | notice | warn | error | fatal (default info)
|
|
568
|
+
--filelogger enable the matterbridge file logger (matterbridge.log)
|
|
569
|
+
--matterlogger: set the matter.js logger level: debug | info | notice | warn | error | fatal (default info)
|
|
570
|
+
--matterfilelogger enable the matter.js file logger (matter.log)
|
|
571
|
+
--reset: remove the commissioning for Matterbridge (bridge mode). Shutdown Matterbridge before using it!
|
|
572
|
+
--factoryreset: remove all commissioning information and reset all internal storages. Shutdown Matterbridge before using it!
|
|
573
|
+
--list: list the registered plugins
|
|
574
|
+
--loginterfaces: log the network interfaces (usefull for finding the name of the interface to use with -mdnsinterface option)
|
|
575
|
+
--logstorage: log the node storage
|
|
576
|
+
--sudo: force the use of sudo to install or update packages if the internal logic fails
|
|
577
|
+
--nosudo: force not to use sudo to install or update packages if the internal logic fails
|
|
578
|
+
--norestore: force not to automatically restore the matterbridge node storage and the matter storage from backup if it is corrupted
|
|
579
|
+
--novirtual: disable the creation of the virtual devices Restart, Update and Reboot Matterbridge
|
|
580
|
+
--ssl: enable SSL for the frontend and the WebSocketServer (the server will use the certificates and switch to https)
|
|
581
|
+
--mtls: enable mTLS for the frontend and the WebSocketServer (both server and client will use and require the certificates and switch to https)
|
|
582
|
+
--vendorId: override the default vendorId 0xfff1
|
|
583
|
+
--vendorName: override the default vendorName "Matterbridge"
|
|
584
|
+
--productId: override the default productId 0x8000
|
|
585
|
+
--productName: override the default productName "Matterbridge aggregator"
|
|
586
|
+
--service: enable the service mode (used in the systemctl configuration file)
|
|
587
|
+
--docker: enable the docker mode (used in the docker image)
|
|
588
|
+
--homedir: override the home directory (default: os.homedir())
|
|
589
|
+
--add [plugin path]: register the plugin from the given absolute or relative path
|
|
590
|
+
--add [plugin name]: register the globally installed plugin with the given name
|
|
591
|
+
--remove [plugin path]: remove the plugin from the given absolute or relative path
|
|
592
|
+
--remove [plugin name]: remove the globally installed plugin with the given name
|
|
593
|
+
--enable [plugin path]: enable the plugin from the given absolute or relative path
|
|
594
|
+
--enable [plugin name]: enable the globally installed plugin with the given name
|
|
595
|
+
--disable [plugin path]: disable the plugin from the given absolute or relative path
|
|
596
|
+
--disable [plugin name]: disable the globally installed plugin with the given name
|
|
597
|
+
--reset [plugin path]: remove the commissioning for the plugin from the given absolute or relative path (childbridge mode). Shutdown Matterbridge before using it!
|
|
598
|
+
--reset [plugin name]: remove the commissioning for the globally installed plugin (childbridge mode). Shutdown Matterbridge before using it!${rs}`);
|
|
599
599
|
this.shutdown = true;
|
|
600
600
|
return;
|
|
601
601
|
}
|
|
@@ -608,7 +608,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
608
608
|
this.log.info(`│ └─ entry ${UNDERLINE}${db}${plugin.path}${UNDERLINEOFF}${db}`);
|
|
609
609
|
}
|
|
610
610
|
else {
|
|
611
|
-
this.log.info(`└─┬─ plugin ${plg}${plugin.name}${nf}: "${plg}${BRIGHT}${plugin.description}${RESET}${nf}" type: ${typ}${plugin.type}${nf} ${plugin.enabled ? GREEN : RED}
|
|
611
|
+
this.log.info(`└─┬─ plugin ${plg}${plugin.name}${nf}: "${plg}${BRIGHT}${plugin.description}${RESET}${nf}" type: ${typ}${plugin.type}${nf} ${plugin.enabled ? GREEN : RED}disabled${nf}`);
|
|
612
612
|
this.log.info(` └─ entry ${UNDERLINE}${db}${plugin.path}${UNDERLINEOFF}${db}`);
|
|
613
613
|
}
|
|
614
614
|
index++;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.6-dev-20250906-
|
|
3
|
+
"version": "3.2.6-dev-20250906-34345e5",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.2.6-dev-20250906-
|
|
9
|
+
"version": "3.2.6-dev-20250906-34345e5",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.3",
|
package/package.json
CHANGED