From a2bbab068428275febeea13906654b9e58400c95 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Sat, 17 Dec 2022 17:11:22 +0100 Subject: [PATCH] Update plain text man page --- man/tio.1.txt | 17 +++++++++-------- meson.build | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/man/tio.1.txt b/man/tio.1.txt index aa26dcc..c66269f 100644 --- a/man/tio.1.txt +++ b/man/tio.1.txt @@ -1,4 +1,4 @@ -tio(1) User Commands tio(1) +tio(1) User Commands tio(1) NAME tio - a simple serial device I/O tool @@ -66,7 +66,8 @@ OPTIONS Disable automatic connect. - By default tio automatically connects to the provided device if present. If the device is not present, it will wait for it to appear and then connect. If the connection is lost (eg. device disconnects), it will wait for the device to reappear and then reconnect. + By default tio automatically connects to the provided device if present. If the device is not present, it will wait for it to appear and then connect. If the connection is lost (eg. device disconnects), it will wait for the device to + reappear and then reconnect. However, if the --no-autoconnect option is provided, tio will exit if the device is not present or an established connection is lost. @@ -150,8 +151,8 @@ OPTIONS Redirect I/O to socket. - Any input from clients connected to the socket is sent on the serial port as if entered at the terminal where tio is running (except that ctrl-t sequences are not recognized), and any input from the serial port is multiplexed to the terminal and all connected - clients. + Any input from clients connected to the socket is sent on the serial port as if entered at the terminal where tio is running (except that ctrl-t sequences are not recognized), and any input from the serial port is multiplexed to the + terminal and all connected clients. Sockets remain open while the serial port is disconnected, and writes will block. @@ -258,11 +259,11 @@ HEXADECIMAL MODE CONFIGURATION FILE Options can be set via configuration file using the INI format. tio uses the configuration file first found in the following locations in the order listed: - $XDG_CONFIG_HOME/tio/tiorc + $XDG_CONFIG_HOME/tio/config - $HOME/.config/tio/tiorc + $HOME/.config/tio/config - $HOME/.tiorc + $HOME/.tioconfig Labels can be used to group settings into named sub-configurations which can be activated from the command-line when starting tio. @@ -443,4 +444,4 @@ WEBSITE AUTHOR Created by Martin Lund . -tio 2.4 2022-11-02 tio(1) +tio 2.5 2022-11-02 tio(1) diff --git a/meson.build b/meson.build index 885efa8..3fb3a22 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('tio', 'c', ) # The tag date of the project_version(), update when the version bumps. -version_date = '2022-11-02' +version_date = '2022-12-17' # Test for dynamic baudrate configuration interface compiler = meson.get_compiler('c')