node-red-contrib-knx-ultimate 3.2.12 → 3.2.13
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 +4 -1
- package/nodes/utils/sysLogger.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,12 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 3.2.13** - October 2024<br/>
|
|
10
|
+
- Revert back from gathering the debug log. It doesn't like me.<br/>
|
|
11
|
+
|
|
9
12
|
**Version 3.2.12** - October 2024<br/>
|
|
10
13
|
- Bump knxultimate engine to v. 3.0.4.<br/>
|
|
11
14
|
|
|
12
15
|
**Version 3.2.11** - October 2024<br/>
|
|
13
16
|
- Fixed help texts in various nodes.<br/>
|
|
14
|
-
- When you open a node, the node red's site bar
|
|
17
|
+
- When you open a node, the node red's site bar goes into the help panel. Then, it goes into the info panel once closed.<br/>
|
|
15
18
|
- Gather debug infos + log to be pasted into a new gitHub Issue. See the "Utility" TAB of the KNX Gateway config node. See DISCUSSIONS on gitHub.<br/>
|
|
16
19
|
|
|
17
20
|
**Version 3.2.10** - October 2024<br/>
|
package/nodes/utils/sysLogger.js
CHANGED
|
@@ -78,7 +78,7 @@ class loggerClass {
|
|
|
78
78
|
destroy = () => {
|
|
79
79
|
// 16/08/2020 Supergiovane Destruction of the logger
|
|
80
80
|
try {
|
|
81
|
-
addLineToFile("-------------------------------------------- END LOG SESSION")
|
|
81
|
+
//addLineToFile("-------------------------------------------- END LOG SESSION")
|
|
82
82
|
} catch (error) {
|
|
83
83
|
}
|
|
84
84
|
logger = null
|
|
@@ -87,27 +87,27 @@ class loggerClass {
|
|
|
87
87
|
success = (...args) => {
|
|
88
88
|
this.logger.success(...args);
|
|
89
89
|
// Log to file as well, limited in line numbers
|
|
90
|
-
this.addLineToFile(...args);
|
|
90
|
+
//this.addLineToFile(...args);
|
|
91
91
|
}
|
|
92
92
|
debug = (...args) => {
|
|
93
93
|
this.logger.debug(...args);
|
|
94
94
|
// Log to file as well, limited in line numbers
|
|
95
|
-
this.addLineToFile(...args);
|
|
95
|
+
//this.addLineToFile(...args);
|
|
96
96
|
}
|
|
97
97
|
info = (...args) => {
|
|
98
98
|
this.logger.info(...args);
|
|
99
99
|
// Log to file as well, limited in line numbers
|
|
100
|
-
this.addLineToFile(...args);
|
|
100
|
+
//this.addLineToFile(...args);
|
|
101
101
|
}
|
|
102
102
|
warn = (...args) => {
|
|
103
103
|
this.logger.warn(...args);
|
|
104
104
|
// Log to file as well, limited in line numbers
|
|
105
|
-
this.addLineToFile(...args);
|
|
105
|
+
//this.addLineToFile(...args);
|
|
106
106
|
}
|
|
107
107
|
error = (...args) => {
|
|
108
108
|
this.logger.error(...args);
|
|
109
109
|
// Log to file as well, limited in line numbers
|
|
110
|
-
this.addLineToFile(...args);
|
|
110
|
+
//this.addLineToFile(...args);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.2.
|
|
6
|
+
"version": "3.2.13",
|
|
7
7
|
"description": "Control your KNX intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control and ETS group address importer. Easy to use and highly configurable.",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"binary-parser": "2.2.1",
|