iobroker.ebus 3.2.4 → 3.2.5
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/.eslintrc.json +34 -34
- package/.releaseconfig.json +3 -0
- package/LICENSE +20 -20
- package/README.md +143 -130
- package/admin/index_m.html +419 -419
- package/admin/style.css +18 -18
- package/admin/words.js +27 -27
- package/io-package.json +205 -192
- package/lib/support_tools.js +370 -370
- package/lib/tools.js +99 -99
- package/main.js +1232 -1232
- package/package.json +12 -10
- package/widgets/ebus/lib/js/flot/jquery.canvaswrapper.js +549 -549
- package/widgets/ebus/lib/js/flot/jquery.colorhelpers.js +199 -199
- package/widgets/ebus/lib/js/flot/jquery.flot.axislabels.js +212 -212
- package/widgets/ebus/lib/js/flot/jquery.flot.browser.js +98 -98
- package/widgets/ebus/lib/js/flot/jquery.flot.categories.js +202 -202
- package/widgets/ebus/lib/js/flot/jquery.flot.composeImages.js +330 -330
- package/widgets/ebus/lib/js/flot/jquery.flot.crosshair.js +202 -202
- package/widgets/ebus/lib/js/flot/jquery.flot.drawSeries.js +662 -662
- package/widgets/ebus/lib/js/flot/jquery.flot.errorbars.js +375 -375
- package/widgets/ebus/lib/js/flot/jquery.flot.fillbetween.js +254 -254
- package/widgets/ebus/lib/js/flot/jquery.flot.flatdata.js +47 -47
- package/widgets/ebus/lib/js/flot/jquery.flot.hover.js +361 -361
- package/widgets/ebus/lib/js/flot/jquery.flot.image.js +249 -249
- package/widgets/ebus/lib/js/flot/jquery.flot.js +2953 -2953
- package/widgets/ebus/lib/js/flot/jquery.flot.legend.js +437 -437
- package/widgets/ebus/lib/js/flot/jquery.flot.logaxis.js +298 -298
- package/widgets/ebus/lib/js/flot/jquery.flot.navigate.js +834 -834
- package/widgets/ebus/lib/js/flot/jquery.flot.pie.js +794 -794
- package/widgets/ebus/lib/js/flot/jquery.flot.resize.js +60 -60
- package/widgets/ebus/lib/js/flot/jquery.flot.saturated.js +43 -43
- package/widgets/ebus/lib/js/flot/jquery.flot.selection.js +527 -527
- package/widgets/ebus/lib/js/flot/jquery.flot.stack.js +220 -220
- package/widgets/ebus/lib/js/flot/jquery.flot.symbol.js +98 -98
- package/widgets/ebus/lib/js/flot/jquery.flot.threshold.js +143 -143
- package/widgets/ebus/lib/js/flot/jquery.flot.time.js +586 -586
- package/widgets/ebus/lib/js/flot/jquery.flot.touch.js +320 -320
- package/widgets/ebus/lib/js/flot/jquery.flot.touchNavigate.js +360 -360
- package/widgets/ebus/lib/js/flot/jquery.flot.uiConstants.js +10 -10
- package/widgets/ebus/lib/js/flot/jquery.js +9473 -9473
- package/widgets/ebus/lib/js/lib/globalize.culture.en-US.js +33 -33
- package/widgets/ebus/lib/js/lib/globalize.js +1601 -1601
- package/widgets/ebus/lib/js/lib/jquery.event.drag.js +145 -145
- package/widgets/ebus/lib/js/lib/jquery.mousewheel.js +86 -86
- package/widgets/ebus.html +2395 -2395
- package/readme.txt +0 -297
package/.eslintrc.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"es6": true,
|
|
4
|
-
"node": true,
|
|
5
|
-
"mocha": true
|
|
6
|
-
},
|
|
7
|
-
"extends": "eslint:recommended",
|
|
8
|
-
"rules": {
|
|
9
|
-
"indent": [
|
|
10
|
-
"error",
|
|
11
|
-
4,
|
|
12
|
-
{
|
|
13
|
-
"SwitchCase": 1
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"no-console": "off",
|
|
17
|
-
"no-var": "error",
|
|
18
|
-
"prefer-const": "error",
|
|
19
|
-
"quotes": [
|
|
20
|
-
"error",
|
|
21
|
-
"double",
|
|
22
|
-
{
|
|
23
|
-
"avoidEscape": true,
|
|
24
|
-
"allowTemplateLiterals": true
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"semi": [
|
|
28
|
-
"error",
|
|
29
|
-
"always"
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
|
-
"parserOptions": {
|
|
33
|
-
"ecmaVersion": 2018
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"es6": true,
|
|
4
|
+
"node": true,
|
|
5
|
+
"mocha": true
|
|
6
|
+
},
|
|
7
|
+
"extends": "eslint:recommended",
|
|
8
|
+
"rules": {
|
|
9
|
+
"indent": [
|
|
10
|
+
"error",
|
|
11
|
+
4,
|
|
12
|
+
{
|
|
13
|
+
"SwitchCase": 1
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"no-console": "off",
|
|
17
|
+
"no-var": "error",
|
|
18
|
+
"prefer-const": "error",
|
|
19
|
+
"quotes": [
|
|
20
|
+
"error",
|
|
21
|
+
"double",
|
|
22
|
+
{
|
|
23
|
+
"avoidEscape": true,
|
|
24
|
+
"allowTemplateLiterals": true
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"semi": [
|
|
28
|
+
"error",
|
|
29
|
+
"always"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"parserOptions": {
|
|
33
|
+
"ecmaVersion": 2018
|
|
34
|
+
}
|
|
35
35
|
}
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2017-
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017-2024 René G. <info@rg-engineering.eu>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,200 +1,213 @@
|
|
|
1
|
-

|
|
2
|
-
# ioBroker.ebus
|
|
3
|
-
|
|
4
|
-
 
|
|
5
|
-
[](https://www.npmjs.com/package/iobroker.ebus)
|
|
6
|
-
[](https://www.npmjs.com/package/iobroker.ebus)
|
|
7
|
-
|
|
8
|
-
[](https://snyk.io/test/github/rg-engineering/ioBroker.ebus)
|
|
9
|
-

|
|
10
|
-
|
|
11
|
-
[](https://nodei.co/npm/iobroker.ebus/)
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
1
|
+

|
|
2
|
+
# ioBroker.ebus
|
|
3
|
+
|
|
4
|
+
 
|
|
5
|
+
[](https://www.npmjs.com/package/iobroker.ebus)
|
|
6
|
+
[](https://www.npmjs.com/package/iobroker.ebus)
|
|
7
|
+
|
|
8
|
+
[](https://snyk.io/test/github/rg-engineering/ioBroker.ebus)
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
[](https://nodei.co/npm/iobroker.ebus/)
|
|
12
|
+
|
|
13
|
+

|
|
14
|
+

|
|
15
|
+
|
|
16
|
+
|
|
17
|
+

|
|
18
|
+

|
|
19
|
+

|
|
20
|
+

|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.**
|
|
25
|
+
For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
**If you like it, please consider a donation:**
|
|
29
|
+
|
|
30
|
+
[](https://www.paypal.com/donate/?hosted_button_id=34ESBMJ932QZC)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
This adapter reads
|
|
34
|
+
- data from ebusd using html
|
|
35
|
+
In this case ebusd must run and must be able to send data to e.g. explorer via http://IP:port/data (http://192.168.0.123:8889/data)
|
|
36
|
+
Current version of ebusd incl. configuration files can be copied from https://github.com/john30/ebusd
|
|
37
|
+
All fields with data, lastup and from global section are parsed. All others are ignored at the moment.
|
|
38
|
+
|
|
39
|
+
There is a possibillity to poll data which are not polled by ebusd directly. Command 'read -f' is used to force reading over ebus.
|
|
40
|
+
|
|
41
|
+
Another feature is to send any command to ebusd and receive answer to work with e.g. scripts.
|
|
42
|
+
|
|
43
|
+
current supported ebusd-version: 23.2
|
|
44
|
+
|
|
45
|
+
**Attention** with ebusd - version 22.1 config path has been changed to http://cfg.ebusd.eu/. Make sure you change it in your installation of ebusd.
|
|
46
|
+
details see in [changelog](https://github.com/john30/ebusd/blob/master/ChangeLog.md)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## how to send commands to ebusd
|
|
50
|
+
1. write a single command or an command list on datapoint ebus.0.cmd
|
|
51
|
+
If you want to use more then one command, use , to separate single commands.
|
|
52
|
+
example:
|
|
53
|
+
read -f YieldTotal,read LegioProtectionEnabled,read -f -c broadcast outsidetemp
|
|
54
|
+
|
|
55
|
+
2. when command is executed you will receive results per command in datapoint ebus.0.cmdResult
|
|
56
|
+
The result is also comma-separeted
|
|
57
|
+
example:
|
|
58
|
+
2000, ERR: element not found, 10.5
|
|
59
|
+
|
|
60
|
+
Attention: command in datapoint ebus.0.cmd is deleted after executing of command!
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
## known issues
|
|
64
|
+
* please create issues at [github](https://github.com/rg-engineering/ioBroker.ebus/issues) if you find bugs or whish new features
|
|
65
|
+
|
|
66
|
+
## Changelog
|
|
67
|
+
|
|
68
|
+
<!--
|
|
69
|
+
Placeholder for the next version (at the beginning of the line):
|
|
70
|
+
### **WORK IN PROGRESS**
|
|
61
71
|
-->
|
|
62
|
-
### 3.2.
|
|
72
|
+
### 3.2.5 (2024-01-12)
|
|
73
|
+
* (René) dependencies updated
|
|
74
|
+
|
|
75
|
+
### 3.2.4 (2023-11-19)
|
|
63
76
|
* (René) revert back to flat 5.x
|
|
64
77
|
|
|
65
|
-
### 3.2.3 (2023-11-18)
|
|
66
|
-
* (René) dependencies updated
|
|
78
|
+
### 3.2.3 (2023-11-18)
|
|
79
|
+
* (René) dependencies updated
|
|
67
80
|
* (René) fix sentry reported exceptions
|
|
68
81
|
|
|
69
|
-
### 3.2.2 (2023-07-30)
|
|
82
|
+
### 3.2.2 (2023-07-30)
|
|
70
83
|
* (René) dependencies updated
|
|
71
84
|
|
|
72
|
-
### 3.2.1 (2023-04-07)
|
|
85
|
+
### 3.2.1 (2023-04-07)
|
|
73
86
|
* (René) dependencies updated
|
|
74
87
|
|
|
75
|
-
### 3.2.0 (2023-02-11)
|
|
76
|
-
* (René) **Attention** polled variables must be set as active in admin now
|
|
77
|
-
* (René) search available variables per circuit added in admin
|
|
88
|
+
### 3.2.0 (2023-02-11)
|
|
89
|
+
* (René) **Attention** polled variables must be set as active in admin now
|
|
90
|
+
* (René) search available variables per circuit added in admin
|
|
78
91
|
* (René) DP "find" added to force read of all existing datapoints (Attention: might take a while) and update name in data point tree
|
|
79
92
|
|
|
80
|
-
### 3.1.1 (2023-01-31)
|
|
81
|
-
* (René) support ebusd 23.1
|
|
93
|
+
### 3.1.1 (2023-01-31)
|
|
94
|
+
* (René) support ebusd 23.1
|
|
82
95
|
* (René) see issue #77: make sure that only one data request is running at the same time
|
|
83
96
|
|
|
84
|
-
### 3.1.0 (2022-12-01)
|
|
85
|
-
* (René) support ebusd 22.4
|
|
86
|
-
* (René) see issue #77: Update data point when read-cmd is used
|
|
97
|
+
### 3.1.0 (2022-12-01)
|
|
98
|
+
* (René) support ebusd 22.4
|
|
99
|
+
* (René) see issue #77: Update data point when read-cmd is used
|
|
87
100
|
* (René) see issue #78: remove CR, LF in answer from ebusd for DP ebus.0.cmdResult
|
|
88
101
|
|
|
89
|
-
### 3.0.7 (2022-08-20)
|
|
102
|
+
### 3.0.7 (2022-08-20)
|
|
90
103
|
* (René) support ebusd 22.3
|
|
91
104
|
|
|
92
|
-
### 3.0.6 (2022-08-19)
|
|
105
|
+
### 3.0.6 (2022-08-19)
|
|
93
106
|
* (René) bug fix in tooltip in wizard
|
|
94
107
|
|
|
95
|
-
### 3.0.4 (2022-08-18)
|
|
96
|
-
* (René) tooltip in wizard added
|
|
97
|
-
* (René) flot and dependencies updated
|
|
98
|
-
* (René) errors from ebusd are shown as warning here in adapter, details schould be checked in logs of ebusd
|
|
99
|
-
* (René) bug fix in widget: if less data available x axes grid point were not shown
|
|
108
|
+
### 3.0.4 (2022-08-18)
|
|
109
|
+
* (René) tooltip in wizard added
|
|
110
|
+
* (René) flot and dependencies updated
|
|
111
|
+
* (René) errors from ebusd are shown as warning here in adapter, details schould be checked in logs of ebusd
|
|
112
|
+
* (René) bug fix in widget: if less data available x axes grid point were not shown
|
|
100
113
|
* (René) except null as valid value from ebusd (e.g. to reset CurrentError)
|
|
101
114
|
|
|
102
|
-
### 3.0.2 (2022-04-02)
|
|
115
|
+
### 3.0.2 (2022-04-02)
|
|
103
116
|
* (René) message for installation added
|
|
104
117
|
|
|
105
|
-
### 3.0.1 (2022-04-02)
|
|
118
|
+
### 3.0.1 (2022-04-02)
|
|
106
119
|
* (René) read interval in admin added
|
|
107
120
|
|
|
108
|
-
### 3.0.0 (2022-04-02)
|
|
109
|
-
* (René) **ATTENTION** change from scheduled to daemon adapter
|
|
121
|
+
### 3.0.0 (2022-04-02)
|
|
122
|
+
* (René) **ATTENTION** change from scheduled to daemon adapter
|
|
110
123
|
* (René) bent by axios replaced
|
|
111
124
|
|
|
112
|
-
### 2.5.1 (2021-12-29)
|
|
125
|
+
### 2.5.1 (2021-12-29)
|
|
113
126
|
* (René) adjustable retries to send data if arbitration error appeared
|
|
114
127
|
|
|
115
|
-
### 2.5.0 (2021-12-28)
|
|
128
|
+
### 2.5.0 (2021-12-28)
|
|
116
129
|
* (René) see issue #62: support ebusd 21.3
|
|
117
130
|
|
|
118
|
-
### 2.4.5 (2021-11-07)
|
|
131
|
+
### 2.4.5 (2021-11-07)
|
|
119
132
|
* (René) bug fix color of labels in widget
|
|
120
133
|
|
|
121
|
-
### 2.4.4 (2021-10-30)
|
|
122
|
-
* (René) see issue #59: avoid endless loop
|
|
123
|
-
* (René) update flot to 4.2.2
|
|
134
|
+
### 2.4.4 (2021-10-30)
|
|
135
|
+
* (René) see issue #59: avoid endless loop
|
|
136
|
+
* (René) update flot to 4.2.2
|
|
124
137
|
* (René) bug fix missing space in command when using circuit name
|
|
125
138
|
|
|
126
|
-
### 0.8.0 (2019-02-24)
|
|
139
|
+
### 0.8.0 (2019-02-24)
|
|
127
140
|
* (René) hcmode2 value 5 = EVU Sperrzeit
|
|
128
141
|
|
|
129
|
-
### 0.7.0 (2019-01-28)
|
|
142
|
+
### 0.7.0 (2019-01-28)
|
|
130
143
|
* (René) add adjustable timeout
|
|
131
144
|
|
|
132
|
-
### 0.6.0 (2019-01-06)
|
|
145
|
+
### 0.6.0 (2019-01-06)
|
|
133
146
|
* (René) support of compact mode
|
|
134
147
|
|
|
135
|
-
### 0.5.5 (2018-11-04)
|
|
148
|
+
### 0.5.5 (2018-11-04)
|
|
136
149
|
* (René) code clean up
|
|
137
150
|
|
|
138
|
-
### 0.5.4
|
|
151
|
+
### 0.5.4
|
|
139
152
|
* (René) arduino support removed
|
|
140
153
|
|
|
141
|
-
### 0.5.3
|
|
154
|
+
### 0.5.3
|
|
142
155
|
* (René) add error information
|
|
143
156
|
|
|
144
|
-
### 0.5.2
|
|
157
|
+
### 0.5.2
|
|
145
158
|
* (René) bug fix: in vis 1.x some values are not stored
|
|
146
159
|
|
|
147
|
-
### 0.5.1
|
|
160
|
+
### 0.5.1
|
|
148
161
|
* (René) bug fix: if nothing to poll then skip telnet connection
|
|
149
162
|
|
|
150
|
-
### 0.5.0
|
|
163
|
+
### 0.5.0
|
|
151
164
|
* (René) write date over TCP to ebusd
|
|
152
165
|
|
|
153
|
-
### 0.4.2
|
|
166
|
+
### 0.4.2
|
|
154
167
|
* (René) bug fix for admin V3
|
|
155
168
|
|
|
156
|
-
### 0.4.1
|
|
169
|
+
### 0.4.1
|
|
157
170
|
* (René) logo changed
|
|
158
171
|
|
|
159
|
-
### 0.4.0
|
|
172
|
+
### 0.4.0
|
|
160
173
|
* (René) reading data from ebusd
|
|
161
174
|
|
|
162
|
-
### 0.3.0
|
|
163
|
-
* (René) support of ebusd
|
|
175
|
+
### 0.3.0
|
|
176
|
+
* (René) support of ebusd
|
|
164
177
|
* (René) admin3 support
|
|
165
178
|
|
|
166
|
-
### 0.2.0
|
|
167
|
-
* (René) add history as JSON for vis
|
|
179
|
+
### 0.2.0
|
|
180
|
+
* (René) add history as JSON for vis
|
|
168
181
|
* (René) add flot based widget to display temperatur, status and power graph
|
|
169
182
|
|
|
170
|
-
### 0.1.0
|
|
183
|
+
### 0.1.0
|
|
171
184
|
* (René) scheduled adapter instead of deamon
|
|
172
185
|
|
|
173
|
-
### 0.0.3
|
|
186
|
+
### 0.0.3
|
|
174
187
|
* (René) UTF8 coding
|
|
175
188
|
|
|
176
|
-
### 0.0.2
|
|
189
|
+
### 0.0.2
|
|
177
190
|
* (René) initial release
|
|
178
191
|
|
|
179
|
-
## License
|
|
180
|
-
MIT License
|
|
181
|
-
|
|
182
|
-
Copyright (c) 2017-
|
|
183
|
-
|
|
184
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
185
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
186
|
-
in the Software without restriction, including without limitation the rights
|
|
187
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
188
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
189
|
-
furnished to do so, subject to the following conditions:
|
|
190
|
-
|
|
191
|
-
The above copyright notice and this permission notice shall be included in all
|
|
192
|
-
copies or substantial portions of the Software.
|
|
193
|
-
|
|
194
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
195
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
196
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
197
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
198
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
199
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
192
|
+
## License
|
|
193
|
+
MIT License
|
|
194
|
+
|
|
195
|
+
Copyright (c) 2017-2024 René G. <info@rg-engineering.eu>
|
|
196
|
+
|
|
197
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
198
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
199
|
+
in the Software without restriction, including without limitation the rights
|
|
200
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
201
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
202
|
+
furnished to do so, subject to the following conditions:
|
|
203
|
+
|
|
204
|
+
The above copyright notice and this permission notice shall be included in all
|
|
205
|
+
copies or substantial portions of the Software.
|
|
206
|
+
|
|
207
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
208
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
209
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
210
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
211
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
212
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
200
213
|
SOFTWARE.
|