matterbridge-example-accessory-platform 2.0.0 → 2.0.1-dev-20251112-ba39dfb

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
@@ -17,7 +17,20 @@
17
17
 
18
18
  All notable changes to this project will be documented in this file.
19
19
 
20
- If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-example-dynamic-platform and sponsoring it.
20
+ If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-example-accessory-platform and sponsoring it.
21
+
22
+ ## [2.0.1] - 2025-11-11
23
+
24
+ ### Changed
25
+
26
+ - [package]: Updated dependencies.
27
+ - [package]: Bumped package to automator v. 2.0.12.
28
+ - [jest]: Updated jestHelpers to v. 1.0.12.
29
+ - [workflows]: Use shallow clones and --no-fund --no-audit for faster builds.
30
+
31
+ <a href="https://www.buymeacoffee.com/luligugithub">
32
+ <img src="bmc-button.svg" alt="Buy me a coffee" width="80">
33
+ </a>
21
34
 
22
35
  ## [2.0.0] - 2025-10-24
23
36
 
package/dist/module.js CHANGED
@@ -16,7 +16,7 @@ export class ExampleMatterbridgeAccessoryPlatform extends MatterbridgeAccessoryP
16
16
  }
17
17
  async onStart(reason) {
18
18
  this.log.info('onStart called with reason:', reason ?? 'none');
19
- this.cover = new MatterbridgeEndpoint([coverDevice, powerSource], { uniqueStorageKey: 'Cover example device' }, this.config.debug);
19
+ this.cover = new MatterbridgeEndpoint([coverDevice, powerSource], { id: 'Cover example device' }, this.config.debug);
20
20
  this.cover.log.logName = 'Cover example device';
21
21
  this.cover.createDefaultIdentifyClusterServer();
22
22
  this.cover.createDefaultBasicInformationClusterServer('Cover example device', `0x59108853594`, 0xfff1, 'Matterbridge', 0x0001, 'Matterbridge Cover', parseInt(this.version.replace(/\D/g, '')), this.version, parseInt(this.matterbridge.matterbridgeVersion.replace(/\D/g, '')), this.matterbridge.matterbridgeVersion);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "2.0.0",
3
+ "version": "2.0.1-dev-20251112-ba39dfb",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge-example-accessory-platform",
9
- "version": "2.0.0",
9
+ "version": "2.0.1-dev-20251112-ba39dfb",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "node-ansi-logger": "3.1.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-example-accessory-platform",
3
- "version": "2.0.0",
3
+ "version": "2.0.1-dev-20251112-ba39dfb",
4
4
  "description": "Matterbridge accessory plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",