matterbridge 3.4.4-dev-20251216-bf81437 → 3.4.4-dev-20251217-8b8b1cd
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/README.md +13 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -34,7 +34,7 @@ Advantages:
|
|
|
34
34
|
|
|
35
35
|
- [frontend]: Set automatically autoScroll to false in mobileMode.
|
|
36
36
|
- [frontend]: Added Log length: 100, 200, 500, 1000.
|
|
37
|
-
- [frontend]: Added Log search with case-insensitive regex: use /
|
|
37
|
+
- [frontend]: Added Log search with case-insensitive regex: use /regex/ in the search field to activate the regex search mode (i.e. /Frontend/). See [Regex](https://github.com/Luligu/matterbridge/tree/dev?tab=readme-ov-file#how-to-use-the-regex-search-in-the-log-page).
|
|
38
38
|
- [frontend]: Differentiated update icon color: primary color for latest and secondary color for dev.
|
|
39
39
|
- [frontend]: Added `Reset the frontend UI` in the Reset menu. It will reset the frontend local storage to the default and reload the page.
|
|
40
40
|
- [MbfTable]: Added ConditionalTooltip to show clipped column cells. Used in the Cluster table for a better user experience.
|
package/README.md
CHANGED
|
@@ -520,6 +520,19 @@ To solve the race condition on blackout, use the --delay parameter. There is no
|
|
|
520
520
|
|
|
521
521
|
To solve the race condition on docker compose, use the --fixed_delay parameter. The start will always be delayed so use it only if strictly necessary.
|
|
522
522
|
|
|
523
|
+
## How to use the regex search in the Log page
|
|
524
|
+
|
|
525
|
+
The regex search is activated when the search string starts with `/` and ends with `/`.
|
|
526
|
+
|
|
527
|
+
Examples:
|
|
528
|
+
|
|
529
|
+
```text
|
|
530
|
+
/^error/ -> match log names (the part with [...]) or lines that start with "error"
|
|
531
|
+
/timeout/ -> match "timeout" anywhere in the line (beginning/middle/end)
|
|
532
|
+
/disconnected$/ -> match lines that end with "disconnected"
|
|
533
|
+
/error|warning/ -> match either "error" OR "warning" (double search)
|
|
534
|
+
```
|
|
535
|
+
|
|
523
536
|
# Known general issues
|
|
524
537
|
|
|
525
538
|
## Session XYZ does not exist or Cannot find a session for ID XYZ
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.4-dev-
|
|
3
|
+
"version": "3.4.4-dev-20251217-8b8b1cd",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.4-dev-
|
|
9
|
+
"version": "3.4.4-dev-20251217-8b8b1cd",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED