Update version date

This commit is contained in:
Martin Lund 2024-06-29 12:19:54 +02:00
parent 561376696b
commit ef6fa8030e
2 changed files with 9 additions and 7 deletions

View file

@ -154,7 +154,7 @@ OPTIONS
-m, --map <flags> -m, --map <flags>
Map (replace, translate) characters on input or output. The following mapping flags are supported: Map (replace, translate) characters on input to the serial device or output from the serial device. The following mapping flags are supported:
ICRNL Map CR to NL on input (unless IGNCR is set) ICRNL Map CR to NL on input (unless IGNCR is set)
@ -166,6 +166,8 @@ OPTIONS
INLCRNL Map NL to CR-NL on input INLCRNL Map NL to CR-NL on input
IMSB2LSB Map MSB bit order to LSB on input
OCRNL Map CR to NL on output OCRNL Map CR to NL on output
ODELBS Map DEL to BS on output ODELBS Map DEL to BS on output
@ -176,7 +178,7 @@ OPTIONS
ONULBRK Map nul (zero) to send break signal on output ONULBRK Map nul (zero) to send break signal on output
MSB2LSB Map MSB bit order to LSB on output OIGNCR Ignore CR on output
If defining more than one flag, the flags must be comma separated. If defining more than one flag, the flags must be comma separated.
@ -311,7 +313,7 @@ KEYS
ctrl-t L Show line states (DTR, RTS, CTS, DSR, DCD, RI) ctrl-t L Show line states (DTR, RTS, CTS, DSR, DCD, RI)
ctrl-t m Toggle MSB to LSB bit order ctrl-t m Change mapping of characters on input or output
ctrl-t o Toggle output mode ctrl-t o Toggle output mode
@ -321,12 +323,12 @@ KEYS
ctrl-t r Run script ctrl-t r Run script
ctrl-t R Execute shell command with I/O redirected to device
ctrl-t s Show TX/RX statistics ctrl-t s Show TX/RX statistics
ctrl-t t Toggle line timestamp mode ctrl-t t Toggle line timestamp mode
ctrl-t U Toggle conversion to uppercase on output
ctrl-t v Show version ctrl-t v Show version
ctrl-t x Send file using the XMODEM-1K or XMODEM-CRC protocol (prompts for file name and protocol) ctrl-t x Send file using the XMODEM-1K or XMODEM-CRC protocol (prompts for file name and protocol)
@ -595,4 +597,4 @@ WEBSITE
AUTHOR AUTHOR
Maintained by Martin Lund <martin.lund@keep-it-simple.com>. Maintained by Martin Lund <martin.lund@keep-it-simple.com>.
tio 3.3 2024-05-15 tio(1) tio 3.5 2024-06-15 tio(1)

View file

@ -6,7 +6,7 @@ project('tio', 'c',
) )
# The tag date of the project_version(), update when the version bumps. # The tag date of the project_version(), update when the version bumps.
version_date = '2024-06-15' version_date = '2024-06-29'
# Test for dynamic baudrate configuration interface # Test for dynamic baudrate configuration interface
compiler = meson.get_compiler('c') compiler = meson.get_compiler('c')