matterbridge-eve-weather 2.0.0-dev-20251026-73a9ce0 → 2.0.1-dev-20251112-73da59e
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-11
|
|
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
|
@@ -20,7 +20,7 @@ export class EveWeatherPlatform extends MatterbridgeAccessoryPlatform {
|
|
|
20
20
|
async onStart(reason) {
|
|
21
21
|
this.log.info('onStart called with reason:', reason ?? 'none');
|
|
22
22
|
this.history = new MatterHistory(this.log, 'Eve weather', { filePath: this.matterbridge.matterbridgeDirectory, enableDebug: this.config.debug });
|
|
23
|
-
this.weather = new MatterbridgeEndpoint([temperatureSensor, humiditySensor, pressureSensor, powerSource], {
|
|
23
|
+
this.weather = new MatterbridgeEndpoint([temperatureSensor, humiditySensor, pressureSensor, powerSource], { id: 'Eve weather', mode: this.matterbridge.bridgeMode === 'bridge' ? 'server' : undefined }, this.config.debug);
|
|
24
24
|
this.weather.createDefaultIdentifyClusterServer();
|
|
25
25
|
this.weather.createDefaultBasicInformationClusterServer('Eve weather', '0x84286995', 4874, 'Eve Systems', 0x57, 'Eve Weather 20EBS9901', 2996, '2.1.3', 1, '1.1');
|
|
26
26
|
this.weather.createDefaultTemperatureMeasurementClusterServer(20 * 100);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-eve-weather",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1-dev-20251112-73da59e",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-eve-weather",
|
|
9
|
-
"version": "2.0.
|
|
9
|
+
"version": "2.0.1-dev-20251112-73da59e",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"matter-history": "1.1.19",
|
package/package.json
CHANGED