Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.2 KB

CHANGELOG.md

File metadata and controls

30 lines (22 loc) · 1.2 KB

Change Log

2024.05.27 - v0.4.0

  • Added support for environment options RFC1572. @not-jan
  • Added support for binary transmission RFC856. @not-jan
  • Added support for Unicode characters in character-at-a-time mode. This is gated behind the unicode feature. @not-jan

2024.04.07 - v0.3.0

  • Added support for character-at-a-time mode and line mode. @not-jan
    • Character-at-a-time mode can be enabled by setting the message_mode field in the TelnetCodec struct to false. This will result in each character generating an individual event.
  • Exposed the full TelnetCodec struct to the public API, where previously it was only partially exposed.

2024.03.20 - v0.2.0

  • Fixes several off-by-one errors in the decoding logic. @xxx
  • Added raw message support in the TelnetEvent enum. @xxx
  • Added tests for decoding logic. @xxx
  • General documentation improvements.

2023.02.18 - v0.1.0

Initial release.