ads-client 2.0.0-beta.3 → 2.0.0-beta.4
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 +13 -0
- package/README.md +505 -258
- package/dist/ads-client.d.ts +280 -69
- package/dist/ads-client.js +332 -76
- package/dist/ads-client.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [2.0.0-beta.4] - 02.10.2024
|
|
8
|
+
- Improved TwinCAT 2 support
|
|
9
|
+
- Improved performance by caching base data types that aren't available in the PLC (for example, `INT16` in TC2)
|
|
10
|
+
- Bug fix: Building data types for TC2 system didn't always work (`DataType` flag is not set in base types)
|
|
11
|
+
- Bug fix: Building data types for TC2 system didn't always work (with arrays of base types)
|
|
12
|
+
- Added test suites for TwinCAT 2
|
|
13
|
+
- Separate TwinCAT 2 test PLC project created (See [https://github.com/jisotalo/ads-client-test-plc-project/tree/v2-dev](https://github.com/jisotalo/ads-client-test-plc-project/tree/v2-dev))
|
|
14
|
+
- Updated tests to work with TC2 (and removed tests for TC2 unsupported features)
|
|
15
|
+
- Bug fix: Client failed to disconnect when using [AdsRouterConsole](https://github.com/Beckhoff/TF6000_ADS_DOTNET_V5_Samples/tree/main/Sources/RouterSamples/AdsRouterConsoleApp) as a TwinCAT router
|
|
16
|
+
- Client now waits for port unregistering response, if the connection is not dropped immediately
|
|
17
|
+
|
|
18
|
+
Thank you [Christian Rishøj](https://github.com/crishoj) for contribution!
|
|
19
|
+
|
|
7
20
|
## [2.0.0-beta.3] - 10.09.2024
|
|
8
21
|
- **BREAKING:** Renamed `ReadWriteRawMultiCommand` property `writeData` to `value`
|
|
9
22
|
- Added `warning` event to listen for console warnings
|