matterbridge 3.4.4-dev-20251221-5d36df6 → 3.4.5-dev-20251222-5853b56

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 CHANGED
@@ -28,6 +28,20 @@ Advantages:
28
28
  - individual plugin isolation in childbridge mode;
29
29
  - ability to update the plugin in childbridge mode without restarting matterbridge;
30
30
 
31
+ ## [3.4.5] - Dev branch
32
+
33
+ ### Added
34
+
35
+ - [DevContainer]: Refactored Dev Container setup. The Matterbridge instance can be paired on native Linux hosts or WSL 2 with Docker engine CLI integration. On Docker Desktop on Windows or macOS is not possible cause Docker Desktop runs inside a VM and not directly on the host.
36
+
37
+ ### Changed
38
+
39
+ - [package]: Updated dependencies.
40
+
41
+ ### Fixed
42
+
43
+ <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
44
+
31
45
  ## [3.4.4] - 2025-12-19
32
46
 
33
47
  ### Added
package/README.md CHANGED
@@ -533,6 +533,17 @@ Examples:
533
533
  /error|warning/ -> match either "error" OR "warning" (double search)
534
534
  ```
535
535
 
536
+ ## Window Covering cluster and position explained
537
+
538
+ In Matter spec the Window Covering cluster uses:
539
+
540
+ - 10000 = fully closed
541
+ - 0 = fully opened
542
+
543
+ So depending on the controller you pair with, you should see 100 for fully closed and 0 for fully open.
544
+
545
+ Some controllers invert the position so you need to verify your controller.
546
+
536
547
  # Known general issues
537
548
 
538
549
  ## Session XYZ does not exist or Cannot find a session for ID XYZ
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.4-dev-20251221-5d36df6",
3
+ "version": "3.4.5-dev-20251222-5853b56",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.4.4-dev-20251221-5d36df6",
9
+ "version": "3.4.5-dev-20251222-5853b56",
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.4-dev-20251221-5d36df6",
3
+ "version": "3.4.5-dev-20251222-5853b56",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
package/marked.ps1 DELETED
@@ -1,25 +0,0 @@
1
- (Get-Content .\docs\markedHeader.html) + (marked .\README-DEV.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-DEV.html -Encoding utf8
2
- (Get-Content .\docs\markedHeader.html) + (marked .\README-DOCKER.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-DOCKER.html -Encoding utf8
3
- (Get-Content .\docs\markedHeader.html) + (marked .\README-MACOS-PLIST.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-MACOS-PLIST.html -Encoding utf8
4
- (Get-Content .\docs\markedHeader.html) + (marked .\README-NGINX.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-NGINX.html -Encoding utf8
5
- (Get-Content .\docs\markedHeader.html) + (marked .\README-PODMAN.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-PODMAN.html -Encoding utf8
6
- (Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE-LOCAL.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE-LOCAL.html -Encoding utf8
7
- (Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE-OPT.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE-OPT.html -Encoding utf8
8
- (Get-Content .\docs\markedHeader.html) + (marked .\README-SERVICE.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README-SERVICE.html -Encoding utf8
9
- (Get-Content .\docs\markedHeader.html) + (marked .\README.md) + (Get-Content .\docs\markedFooter.html) | Out-File .\docs\README.html -Encoding utf8
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 '&#x2714;' 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 '✅', '&#x2714;' | Set-Content -Encoding UTF8 $_.FullName }