matterbridge-eve-motion 2.0.0 → 2.0.1
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 +13 -0
- package/dist/module.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,19 @@
|
|
|
17
17
|
|
|
18
18
|
All notable changes to this project will be documented in this file.
|
|
19
19
|
|
|
20
|
+
## [2.0.1] - 2025-11-13
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- [package]: Updated dependencies.
|
|
25
|
+
- [package]: Bumped package to automator v. 2.0.12.
|
|
26
|
+
- [jest]: Updated jestHelpers to v. 1.0.12.
|
|
27
|
+
- [workflows]: Use shallow clones and --no-fund --no-audit for faster builds.
|
|
28
|
+
|
|
29
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
30
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
31
|
+
</a>
|
|
32
|
+
|
|
20
33
|
## [2.0.0] - 2025-10-24
|
|
21
34
|
|
|
22
35
|
### Changed
|
package/dist/module.js
CHANGED
|
@@ -19,7 +19,7 @@ export class EveMotionPlatform extends MatterbridgeAccessoryPlatform {
|
|
|
19
19
|
async onStart(reason) {
|
|
20
20
|
this.log.info('onStart called with reason:', reason ?? 'none');
|
|
21
21
|
this.history = new MatterHistory(this.log, 'Eve motion', { filePath: this.matterbridge.matterbridgeDirectory, enableDebug: this.config.debug });
|
|
22
|
-
this.motion = new MatterbridgeEndpoint([occupancySensor, lightSensor, powerSource], {
|
|
22
|
+
this.motion = new MatterbridgeEndpoint([occupancySensor, lightSensor, powerSource], { id: 'Eve motion', mode: this.matterbridge.bridgeMode === 'bridge' ? 'server' : undefined }, this.config.debug);
|
|
23
23
|
this.motion.createDefaultIdentifyClusterServer();
|
|
24
24
|
this.motion.createDefaultBasicInformationClusterServer('Eve motion', '0x85483499', 4874, 'Eve Systems', 89, 'Eve Motion 20EBY9901', 6650, '3.2.1');
|
|
25
25
|
this.motion.createDefaultOccupancySensingClusterServer(false);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-motion",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-eve-motion",
|
|
9
|
-
"version": "2.0.
|
|
9
|
+
"version": "2.0.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"matter-history": "1.1.19",
|