matterbridge 3.4.3-dev-20251213-8f3a86d → 3.4.4-dev-20251214-37296cc
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,26 @@ 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.4] - 2025-12-19
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- [frontend]: Set autoScroll to false in mobileMode.
|
|
36
|
+
- [frontend]: Added Log length: 100, 200, 500, 1000.
|
|
37
|
+
- [frontend]: Added Log search with case-insensitive regex: use /text/ in the search field.
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- [package]: Updated dependencies.
|
|
42
|
+
- [frontend]: Bumped `frontend` version to v.3.4.1.
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- [doorLock]: Fixed DoorLock.supportedOperatingModes. Thanks Ludovic BOUÉ (https://github.com/Luligu/matterbridge/issues/454).
|
|
47
|
+
- [frontend]: Fixed mobileMode menu navigation. Thanks Calimerorulez (https://github.com/Luligu/matterbridge/issues/457).
|
|
48
|
+
|
|
49
|
+
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
50
|
+
|
|
31
51
|
## [3.4.3] - 2025-12-12
|
|
32
52
|
|
|
33
53
|
### Breaking Changes
|
|
@@ -968,7 +968,7 @@ export class MatterbridgeEndpoint extends Endpoint {
|
|
|
968
968
|
lockType,
|
|
969
969
|
actuatorEnabled: false,
|
|
970
970
|
operatingMode: DoorLock.OperatingMode.Normal,
|
|
971
|
-
supportedOperatingModes: { normal: false, vacation: true, privacy: true, noRemoteLockUnlock:
|
|
971
|
+
supportedOperatingModes: { normal: false, vacation: true, privacy: true, noRemoteLockUnlock: false, passage: true, alwaysSet: 2047 },
|
|
972
972
|
autoRelockTime: 0,
|
|
973
973
|
});
|
|
974
974
|
return this;
|