matterbridge-eve-door 1.2.2 → 1.2.3
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 +12 -0
- package/dist/platform.js +2 -2
- package/npm-shrinkwrap.json +6 -2
- package/package.json +5 -1
- package/tsconfig.jest.json +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.2.3] - 2025-04-30
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- [package]: Require Matterbridge 3.0.0.
|
|
10
|
+
- [package]: Update package.
|
|
11
|
+
- [package]: Update dependencies.
|
|
12
|
+
|
|
13
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
14
|
+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
|
|
15
|
+
</a>
|
|
16
|
+
|
|
5
17
|
## [1.2.2] - 2025-04-03
|
|
6
18
|
|
|
7
19
|
### Changed
|
package/dist/platform.js
CHANGED
|
@@ -7,8 +7,8 @@ export class EveDoorPlatform extends MatterbridgeAccessoryPlatform {
|
|
|
7
7
|
interval;
|
|
8
8
|
constructor(matterbridge, log, config) {
|
|
9
9
|
super(matterbridge, log, config);
|
|
10
|
-
if (this.verifyMatterbridgeVersion === undefined || typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('
|
|
11
|
-
throw new Error(`This plugin requires Matterbridge version >= "
|
|
10
|
+
if (this.verifyMatterbridgeVersion === undefined || typeof this.verifyMatterbridgeVersion !== 'function' || !this.verifyMatterbridgeVersion('3.0.0')) {
|
|
11
|
+
throw new Error(`This plugin requires Matterbridge version >= "3.0.0". Please update Matterbridge from ${this.matterbridge.matterbridgeVersion} to the latest version in the frontend."`);
|
|
12
12
|
}
|
|
13
13
|
this.log.info('Initializing platform:', this.config.name);
|
|
14
14
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-door",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-eve-door",
|
|
9
|
-
"version": "1.2.
|
|
9
|
+
"version": "1.2.3",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"matter-history": "1.1.18",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=22.0.0"
|
|
18
|
+
},
|
|
19
|
+
"funding": {
|
|
20
|
+
"type": "buymeacoffee",
|
|
21
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
18
22
|
}
|
|
19
23
|
},
|
|
20
24
|
"node_modules/matter-history": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-door",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Matterbridge eve door with history",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/Luligu/matterbridge-eve-door/issues"
|
|
15
15
|
},
|
|
16
|
+
"funding": {
|
|
17
|
+
"type": "buymeacoffee",
|
|
18
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
19
|
+
},
|
|
16
20
|
"keywords": [
|
|
17
21
|
"matterbridge",
|
|
18
22
|
"homebridge",
|