diff --git a/doc/ytcc.1 b/doc/ytcc.1 index 3bdd55b..506b3d1 100644 --- a/doc/ytcc.1 +++ b/doc/ytcc.1 @@ -1,4 +1,4 @@ -.TH ytcc 1 "Mar 2022" "2.5.5" "ytcc manual" +.TH ytcc 1 "Jul 2022" "2.6.0" "ytcc manual" .SH NAME ytcc - Command line tool to keep track of your favorite playlists on YouTube and many other places .SH SYNOPSIS @@ -16,8 +16,8 @@ To show the detailed help of a COMMAND run `ytcc COMMAND --help`. Override configuration file. .SS -l, --loglevel [critical|info|debug] Set the log level. Overrides the log level configured in the config file. [default: info] -.SS -o, --output [json|table|xsv|rss] -Set output format. `json` prints in JSON format, which is usually not filtered by --attribute options of commands. `table` prints a human readable table. `xsv` prints x-separated values, where x can be set with the -s option. `rss` prints a RSS 2.0 feed of videos. [default: table] +.SS -o, --output [json|table|xsv|rss|plain] +Set output format. `json` prints in JSON format, which is usually not filtered by --attribute options of commands. `table` prints a human readable table. `xsv` prints x-separated values, where x can be set with the -s option. `rss` prints a RSS 2.0 feed of videos. `plain` prints in a human readable text format. [default: table] .SS -s, --separator TEXT Set the delimiter used in XSV format. [default: ,] .SS -t, --truncate TRUNCATE diff --git a/ytcc/__init__.py b/ytcc/__init__.py index 1c309dd..36d1743 100644 --- a/ytcc/__init__.py +++ b/ytcc/__init__.py @@ -23,7 +23,7 @@ """ __license__ = "GPLv3" -__version__ = "2.5.5" +__version__ = "2.6.0" __author__ = __maintainer__ = "Wolfgang Popp" __email__ = "mail@wolfgang-popp.de"