homebridge-enphase-envoy 10.3.1 → 10.3.2
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 +14 -0
- package/package.json +1 -1
- package/src/customcharacteristics.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- after update to v10.0.0 and above the accessory and bridge need to be removed from the homebridge / Home.app and added again
|
|
11
11
|
|
|
12
|
+
## [10.3.2] - (30.10.2025)
|
|
13
|
+
|
|
14
|
+
## Changes
|
|
15
|
+
|
|
16
|
+
- fix [#220](https://github.com/grzegorz914/homebridge-enphase-envoy/issues/220)
|
|
17
|
+
|
|
18
|
+
## [10.3.1] - (29.10.2025)
|
|
19
|
+
|
|
20
|
+
## Changes
|
|
21
|
+
|
|
22
|
+
- bump dependencies
|
|
23
|
+
- redme updated
|
|
24
|
+
- cleanup
|
|
25
|
+
|
|
12
26
|
## [10.3.0] - (20.10.2025)
|
|
13
27
|
|
|
14
28
|
## Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"displayName": "Enphase Envoy",
|
|
4
4
|
"name": "homebridge-enphase-envoy",
|
|
5
|
-
"version": "10.3.
|
|
5
|
+
"version": "10.3.2",
|
|
6
6
|
"description": "Homebridge p7ugin for Photovoltaic Energy System manufactured by Enphase.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "grzegorz914",
|
|
@@ -1085,8 +1085,8 @@ export default (api) => {
|
|
|
1085
1085
|
this.setProps({
|
|
1086
1086
|
format: Formats.FLOAT,
|
|
1087
1087
|
unit: 'A',
|
|
1088
|
-
maxValue:
|
|
1089
|
-
minValue: -
|
|
1088
|
+
maxValue: 10000000,
|
|
1089
|
+
minValue: -10000000,
|
|
1090
1090
|
minStep: 0.1,
|
|
1091
1091
|
perms: [Perms.PAIRED_READ, Perms.NOTIFY]
|
|
1092
1092
|
});
|