iobroker.openknx 0.1.5 → 0.1.6
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/README.md +6 -2
- package/io-package.json +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,16 +21,17 @@ This is an early untested version. Please make a good backup of all your data be
|
|
|
21
21
|
|
|
22
22
|
installation from shell
|
|
23
23
|
|
|
24
|
-
cd /opt/iobroker/
|
|
24
|
+
cd /opt/iobroker/
|
|
25
25
|
npm i iobroker.openknx
|
|
26
26
|
iobroker add openknx
|
|
27
|
-
npm i knx
|
|
28
27
|
|
|
29
28
|
updates
|
|
30
29
|
|
|
31
30
|
npm i iobroker.openknx
|
|
32
31
|
iobroker upload openknx
|
|
33
32
|
|
|
33
|
+
Check the npm output for error logs. Stop the openknx adapter before update.
|
|
34
|
+
|
|
34
35
|
# Adapter configuration
|
|
35
36
|

|
|
36
37
|
Press "save & close" or "save" to restart the adapter and take over the changes.
|
|
@@ -210,6 +211,9 @@ Receiving will update the value of the iobroker object in read is set to true.
|
|
|
210
211
|
- only three level group addresses are supported
|
|
211
212
|
|
|
212
213
|
## Changelog
|
|
214
|
+
### 0.1.6
|
|
215
|
+
* (boellner) fix: missing dependencies
|
|
216
|
+
|
|
213
217
|
### 0.1.5
|
|
214
218
|
* (boellner) fix: remove default fallback ip settings from stack to get error message on missing configuration
|
|
215
219
|
* (boellner) feature: corrected adapter status info.connection (green, yellow, red indicator)
|
package/io-package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.openknx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "ioBroker knx Adapter",
|
|
5
5
|
"author": "boellner",
|
|
6
6
|
"homepage": "https://github.com/boellner/ioBroker.openknx.git",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"machina": "^2.0.0-1",
|
|
26
26
|
"similarity": "^1.1.0",
|
|
27
27
|
"xml2js": "^0.4.17",
|
|
28
|
-
"xml2js-xpath": "^0.7.0"
|
|
29
|
-
"xmldom": "^0.1.27",
|
|
30
|
-
"knx": "2.4.1"
|
|
28
|
+
"xml2js-xpath": "^0.7.0"
|
|
31
29
|
},
|
|
32
30
|
"dependencies": {
|
|
33
31
|
"@iobroker/adapter-core": "^2.5.1",
|
|
34
32
|
"underscore": "^1.8.3",
|
|
35
|
-
"xpath": "0.0.23"
|
|
33
|
+
"xpath": "0.0.23",
|
|
34
|
+
"xmldom": "^0.1.27",
|
|
35
|
+
"knx": "2.4.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@alcalzone/release-script": "^2.2.1",
|