iobroker.openknx 0.2.2 → 0.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/README.md CHANGED
@@ -306,7 +306,7 @@ Data is sent to Iobroker Sentry server hosted in Germany. If you have allowed io
306
306
  - only IPv4 supported
307
307
 
308
308
  ## Changelog
309
- ### 0.2.2 (2022-05-26)
309
+ ### 0.2.3 (2022-05-26)
310
310
  * feature: writing to bus l_data.con creates a ack on the iobroker object if successful (the knx conf flag unset)
311
311
  * bugfix: remove manual Physical KNX address dialog, use 0.0.0 instead
312
312
  * bugfix: remove error log when answering to GroupValueRead: #183
package/io-package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "openknx",
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "news": {
6
- "0.2.2": {
6
+ "0.2.3": {
7
7
  "en": "see https://www.npmjs.com/package/iobroker.openknx",
8
8
  "de": "https://www.npmjs.com/package/iobroker.openknx"
9
9
  }
package/main.js CHANGED
@@ -487,10 +487,9 @@ class openknx extends utils.Adapter {
487
487
  let convertedVal = [];
488
488
  let ret = "unknown";
489
489
 
490
- this.log.silly(`event ${evt} src: ${src} dst: ${dest}`);
491
-
492
490
  if (src == this.config.eibadr) {
493
491
  //L_data.ind of own L_data.req
492
+ this.log.info(`receive self ga: ${src}`);//rem
494
493
  return "receive self ga";
495
494
  }
496
495
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.openknx",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "ioBroker knx Adapter",
5
5
  "author": "boellner",
6
6
  "homepage": "https://github.com/iobroker-community-adapters/ioBroker.openknx.git",