From 8d23c3d8c728794fa8cb9007376e7206d6b74861 Mon Sep 17 00:00:00 2001 From: Graham Clark Date: Sun, 3 Jul 2022 17:59:25 -0400 Subject: [PATCH] More documentation updates for upcoming v2.4 --- README.md | 2 +- docs/UserGuide.md | 10 +++++++++- version.go | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1a73166..f2f0740 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # Termshark A terminal user-interface for tshark, inspired by Wireshark. -**V2.3 is out now with custom columns, magic wormhole and more! See the [ChangeLog](CHANGELOG.md#changelog).** +**V2.4 is out now with packet search and profiles! See the [ChangeLog](CHANGELOG.md#changelog).** ![demo21](/../gh-pages/images/demo21.png?raw=true) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 8b06b48..6fb3e57 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -41,7 +41,7 @@ Termshark is inspired by Wireshark, and depends on tshark for all its intelligen ```console $ termshark -h -termshark v2.3.0 +termshark v2.4.0 A wireshark-inspired terminal user interface for tshark. Analyze network traffic interactively from your terminal. See https://termshark.io for more information. @@ -59,6 +59,7 @@ Application Options: -f= Apply capture filter. -t=[a|ad|adoy|d|dd|e|r|u|ud|udoy] Set the format of the packet timestamp printed in summary lines. --tty= Display the UI on this terminal. + -C, --profile= Start with this configuration profile. --pass-thru=[auto|true|false] Run tshark instead (auto => if stdout is not a tty). (default: auto) --log-tty Log to the terminal. -h, --help Show this help message. @@ -517,6 +518,13 @@ determines it needs to regenerate parts of the UI e.g. if packet colors or colum currently using profile "old", the settings for "new" are initialized from "old" (the toml file is copied); but then further changes apply to profile "new" only. +Note that some configuration settings are read only from the default profile. These include + +- `main.term` - termshark will launch on this tty (Unix-only) + + + + ### Dark Mode If termshark is too bright for your taste, try dark-mode. To enable, hit Esc to open the main menu and select "Toggle Dark Mode". diff --git a/version.go b/version.go index 09b9a9b..b533c95 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ package termshark -var Version string = "v2.3.0+" +var Version string = "v2.4.0" //====================================================================== // Local Variables: