matterbridge 3.4.1-dev-20251126-9e86094 → 3.4.1-dev-20251128-441f8db
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 +115 -113
- package/README-DEV.md +22 -6
- package/README-DOCKER.md +1 -1
- package/README-MACOS-PLIST.md +1 -1
- package/README-NGINX.md +1 -1
- package/README-PODMAN.md +1 -1
- package/README-SERVICE-LOCAL.md +1 -1
- package/README-SERVICE-OPT.md +6 -1
- package/README-SERVICE.md +1 -1
- package/README.md +59 -49
- package/dist/broadcastServer.js +15 -4
- package/dist/frontend.js +5 -1
- package/dist/jestutils/jestHelpers.js +49 -0
- package/dist/matterbridge.js +46 -1
- package/dist/matterbridgePlatform.js +1 -21
- package/dist/pluginManager.js +24 -0
- package/dist/shelly.js +12 -12
- package/dist/update.js +69 -53
- package/frontend/build/assets/index.css +1 -1
- package/frontend/build/assets/index.js +1 -1
- package/marked.ps1 +15 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/marked.ps1
CHANGED
|
@@ -8,3 +8,18 @@
|
|
|
8
8
|
(Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE.html -Encoding utf8
|
|
9
9
|
(Get-Content .\docs\markedHeader.html) + (marked .\README.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README.html -Encoding utf8
|
|
10
10
|
(Get-Content .\docs\markedHeader.html) + (marked .\CHANGELOG.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\CHANGELOG.html -Encoding utf8
|
|
11
|
+
|
|
12
|
+
# Replace links from .md to .html in generated files
|
|
13
|
+
Get-ChildItem -Path docs -Filter *.html -Recurse |
|
|
14
|
+
Where-Object { $_.Name -notin @('index.html', 'markedHeader.html', 'markedFooter.html', '404.html', 'CHANGELOG.html') } |
|
|
15
|
+
ForEach-Object { (Get-Content $_.FullName -Raw) -replace '\.md', '.html' | Set-Content -Encoding UTF8 $_.FullName }
|
|
16
|
+
|
|
17
|
+
# Replace links from → to -> in generated files
|
|
18
|
+
Get-ChildItem -Path docs -Filter *.html -Recurse |
|
|
19
|
+
Where-Object { $_.Name -notin @('index.html', 'markedHeader.html', 'markedFooter.html', '404.html', 'CHANGELOG.html') } |
|
|
20
|
+
ForEach-Object { (Get-Content $_.FullName -Raw) -replace '→', '->' | Set-Content -Encoding UTF8 $_.FullName }
|
|
21
|
+
|
|
22
|
+
# Replace links from ✅ to '✔' in generated files
|
|
23
|
+
Get-ChildItem -Path docs -Filter *.html -Recurse |
|
|
24
|
+
Where-Object { $_.Name -notin @('index.html', 'markedHeader.html', 'markedFooter.html', '404.html', 'CHANGELOG.html') } |
|
|
25
|
+
ForEach-Object { (Get-Content $_.FullName -Raw) -replace 'Γ£à', '✔' | Set-Content -Encoding UTF8 $_.FullName }
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.1-dev-
|
|
3
|
+
"version": "3.4.1-dev-20251128-441f8db",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.1-dev-
|
|
9
|
+
"version": "3.4.1-dev-20251128-441f8db",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.6",
|
package/package.json
CHANGED