@bitpoolos/edge-bacnet 1.4.4 → 1.4.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/CHANGELOG.md +30 -0
- package/bacnet_client.js +463 -495
- package/bacnet_device.js +10 -0
- package/bacnet_gateway.html +141 -135
- package/bacnet_read.html +73 -47
- package/bacnet_write.html +7 -5
- package/bitpool_inject.html +49 -136
- package/package.json +1 -1
- package/resources/node-bacstack-ts/dist/lib/client.js +3 -0
- package/resources/node-bacstack-ts/dist/lib/transport.js +12 -7
- package/resources/style.css +612 -203
- package/treeBuilder.js +41 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.6] - 17-09-2024
|
|
4
|
+
### Summary
|
|
5
|
+
|
|
6
|
+
Minor fixes.
|
|
7
|
+
|
|
8
|
+
Wrapped updateDeviceName function with promise to avoid network conflict for clients.
|
|
9
|
+
|
|
10
|
+
Fixed UI styling bugs, primarily with long names and numbers wrapping.
|
|
11
|
+
|
|
12
|
+
Added ability to set device name of dummy MSTP routers.
|
|
13
|
+
|
|
14
|
+
Improved error handling for querying devices and building point json structures.
|
|
15
|
+
|
|
16
|
+
Fixed read node point export bug.
|
|
17
|
+
|
|
18
|
+
Excluded commas via point name conditioning
|
|
19
|
+
|
|
20
|
+
Fixed gateway port assignment bug - ability to communicate on different ports working now.
|
|
21
|
+
|
|
22
|
+
More async / await refactoring.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [1.4.5] - 16-08-2024
|
|
26
|
+
### Summary
|
|
27
|
+
|
|
28
|
+
User interface redesign and restyle. Predominantly colors, buttons, fonts, and placement of UI components.
|
|
29
|
+
|
|
30
|
+
Added timestamp update, and online/offline status update for points when an error has occured during the network request for present value. Use in Simple with status and Full Object payload types.
|
|
31
|
+
|
|
32
|
+
|
|
3
33
|
## [1.4.4] - 08-08-2024
|
|
4
34
|
### Summary
|
|
5
35
|
|