iobroker.solarviewdatareader 1.1.4 → 1.2.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/LICENSE +1 -1
- package/README.md +12 -14
- package/build/main.js +717 -232
- package/build/main.js.map +3 -3
- package/io-package.json +28 -28
- package/package.json +11 -13
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2025 Achim Fürhoff <achim.fuerhoff@outlook.de>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -60,6 +60,17 @@ UL3, IL3 = mains voltage, mains power phase 3
|
|
|
60
60
|
TKK= Temperature inverter
|
|
61
61
|
|
|
62
62
|
## Changelog
|
|
63
|
+
### 1.2.1 (2025-02-26)
|
|
64
|
+
* (afuerhoff) dependencies updated
|
|
65
|
+
|
|
66
|
+
### 1.2.0 (2024-12-20)
|
|
67
|
+
* (afuerhoff) dependencies updated
|
|
68
|
+
* (afuerhoff) Migration to ESLint 9 and @iobroker/eslint-config - issue [#189]
|
|
69
|
+
* (afuerhoff) eslint: code optimized
|
|
70
|
+
* (afuerhoff) fixing chksum message if inverter 2 - 4 is not available
|
|
71
|
+
* (afuerhoff) logging optimized
|
|
72
|
+
* (afuerhoff) net handling optimized
|
|
73
|
+
|
|
63
74
|
### 1.1.4 (2024-10-17)
|
|
64
75
|
* (afuerhoff) dependencies updated
|
|
65
76
|
* (afuerhoff) Fixes [#182](https://github.com/afuerhoff/ioBroker.solarviewdatareader/issues/182)
|
|
@@ -73,23 +84,10 @@ TKK= Temperature inverter
|
|
|
73
84
|
* (afuerhoff) dependencies updated
|
|
74
85
|
* (afuerhoff) automatic restart [#170](https://github.com/afuerhoff/ioBroker.solarviewdatareader/issues/170)
|
|
75
86
|
|
|
76
|
-
### 1.1.1 (2024-06-28)
|
|
77
|
-
* (afuerhoff) change to typescript
|
|
78
|
-
* (afuerhoff) dependencies updated
|
|
79
|
-
* (afuerhoff) bugfix CCU variable
|
|
80
|
-
* (afuerhoff) documentation changed
|
|
81
|
-
|
|
82
|
-
### 1.1.0 (2024-05-29)
|
|
83
|
-
* (afuerhoff) code optimizations
|
|
84
|
-
* (afuerhoff) jsonConfig added
|
|
85
|
-
* (afuerhoff) dependencies updated
|
|
86
|
-
* (afuerhoff) node >= 18, js-controller >= 5.0.19
|
|
87
|
-
* (afuerhoff) admin >= 6.17.13 due to timePicker failure
|
|
88
|
-
|
|
89
87
|
## License
|
|
90
88
|
MIT License
|
|
91
89
|
|
|
92
|
-
Copyright (c) 2019-
|
|
90
|
+
Copyright (c) 2019-2025 Achim Fürhoff <achim.fuerhoff@outlook.de>
|
|
93
91
|
|
|
94
92
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
95
93
|
of this software and associated documentation files (the "Software"), to deal
|