Skip to content

Commit 96b5ee2

Browse files
Updated licensing information (still MIT)
1 parent 6a231e0 commit 96b5ee2

File tree

7 files changed

+36
-30
lines changed

7 files changed

+36
-30
lines changed

AMWD.Protocols.Modbus.Common/README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ This validation is _not_ implemented here due to real world experience, that som
6868

6969
---
7070

71-
Published under MIT License (see [**tl;dr**Legal])
71+
Published under MIT License (see [choose a license])
7272

7373

7474

75-
[RTU over TCP]: https://www.fernhillsoftware.com/help/drivers/modbus/modbus-protocol.html
76-
[**tl;dr**Legal]: https://www.tldrlegal.com/license/mit-license
75+
[RTU over TCP]: https://www.fernhillsoftware.com/help/drivers/modbus/modbus-protocol.html
76+
[choose a license]: https://choosealicense.com/licenses/mit/
77+

AMWD.Protocols.Modbus.Proxy/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ You can use any `ModbusBaseClient` implementation as target client and plug it i
77

88
---
99

10-
Published under MIT License (see [**tl;dr**Legal](https://www.tldrlegal.com/license/mit-license))
10+
Published under MIT License (see [choose a license])
11+
12+
13+
14+
[choose a license]: https://choosealicense.com/licenses/mit/

AMWD.Protocols.Modbus.Serial/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ using var client = new ModbusSerialClient(serialPort)
4444

4545
---
4646

47-
Published under MIT License (see [**tl;dr**Legal])
47+
Published under MIT License (see [choose a license])
4848

4949

5050

51-
[v1.1b3]: https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
52-
[v1.02]: https://modbus.org/docs/Modbus_over_serial_line_V1_02.pdf
53-
[**tl;dr**Legal]: https://www.tldrlegal.com/license/mit-license
51+
[v1.1b3]: https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
52+
[v1.02]: https://modbus.org/docs/Modbus_over_serial_line_V1_02.pdf
53+
[choose a license]: https://choosealicense.com/licenses/mit/

AMWD.Protocols.Modbus.Tcp/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ using var client = new ModbusTcpClient(host, port)
4444

4545
---
4646

47-
Published under MIT License (see [**tl;dr**Legal])
47+
Published under MIT License (see [choose a license])
4848

4949

5050

51-
[v1.1b3]: https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
52-
[v1.0b]: https://modbus.org/docs/Modbus_Messaging_Implementation_Guide_V1_0b.pdf
53-
[**tl;dr**Legal]: https://www.tldrlegal.com/license/mit-license
51+
[v1.1b3]: https://modbus.org/docs/Modbus_Application_Protocol_V1_1b3.pdf
52+
[v1.0b]: https://modbus.org/docs/Modbus_Messaging_Implementation_Guide_V1_0b.pdf
53+
[choose a license]: https://choosealicense.com/licenses/mit/

CHANGELOG.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

1010
### Changed
1111

12-
- The `ModbusTcpProxy.ReadWriteTimeout` has a default of 100 seconds (same default as a `HttpClient` has).
12+
- The `ModbusTcpProxy.ReadWriteTimeout` has a default value of 100 seconds (same default as a `HttpClient` has).
1313

1414

1515
## [v0.3.2] (2024-09-04)
@@ -30,21 +30,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030

3131
### Added
3232

33-
- New `AMWD.Protocols.Modbus.Proxy` package, that contains the server implementations as proxies
33+
- New `AMWD.Protocols.Modbus.Proxy` package, that contains the server implementations as proxies.
3434

3535
### Changed
3636

37-
- Renamed `ModbusSerialServer` to `ModbusRtuServer` to clearify the protocol that is used
38-
- Made `Protocol` property of `ModbusClientBase` non-abstract
37+
- Renamed `ModbusSerialServer` to `ModbusRtuServer` to clearify the protocol that is used.
38+
- Made `Protocol` property of `ModbusClientBase` non-abstract.
3939

4040
### Fixed
4141

42-
- Issue with missing client on TCP connection when using default constructor (seems that `AddressFamily.Unknown` caused the problem)
42+
- Issue with missing client on TCP connection when using default constructor (seems that `AddressFamily.Unknown` caused the problem).
4343

4444

4545
## [v0.2.0] (2024-04-02)
4646

47-
First "final" re-implementation
47+
First "final" re-implementation.
4848

4949

5050
## v0.1.0 (2022-08-28)

LICENSE.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The MIT License
1+
MIT License
22

33
Copyright (c) Andreas Müller
44

@@ -9,8 +9,9 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is
1010
furnished to do so, subject to the following conditions:
1111

12-
The above copyright notice and this permission notice shall be included in
13-
all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice (including the next
13+
paragraph) shall be included in all copies or substantial portions of the
14+
Software.
1415

1516
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1617
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ It uses a specific TCP connection implementation and plugs all things from the C
3939

4040
---
4141

42-
Published under [MIT License] (see [**tl;dr**Legal])
42+
Published under [MIT License] (see [choose a license])
4343
[![Buy me a Coffee](https://shields.am-wd.de/badge/PayPal-Buy_me_a_Coffee-yellow?style=flat&logo=paypal)](https://link.am-wd.de/donate)
4444
[![built with Codeium](https://codeium.com/badges/main)](https://link.am-wd.de/codeium)
4545

4646

4747

48-
[see here]: https://github.com/andreasAMmueller/Modbus
49-
[Common]: AMWD.Protocols.Modbus.Common/README.md
50-
[Proxy]: AMWD.Protocols.Modbus.Proxy/README.md
51-
[Serial]: AMWD.Protocols.Modbus.Serial/README.md
52-
[TCP]: AMWD.Protocols.Modbus.Tcp/README.md
53-
[MIT License]: LICENSE.txt
54-
[**tl;dr**Legal]: https://www.tldrlegal.com/license/mit-license
48+
[see here]: https://github.com/andreasAMmueller/Modbus
49+
[Common]: AMWD.Protocols.Modbus.Common/README.md
50+
[Proxy]: AMWD.Protocols.Modbus.Proxy/README.md
51+
[Serial]: AMWD.Protocols.Modbus.Serial/README.md
52+
[TCP]: AMWD.Protocols.Modbus.Tcp/README.md
53+
[MIT License]: LICENSE.txt
54+
[choose a license]: https://choosealicense.com/licenses/mit/

0 commit comments

Comments
 (0)