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/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 }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.1-dev-20251126-9e86094",
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-20251126-9e86094",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.1-dev-20251126-9e86094",
3
+ "version": "3.4.1-dev-20251128-441f8db",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",