diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b4459d02..b5e801948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # VisiData version history +# v1.2 (2018-04-30) + - macro system - `gD` goes to directory browser of `options.visidata_dir` (default to `~/.visidata/`) which contains saved commandlogs and macros - `z^S` on CommandLog saves selected rows to macro for given keystroke, saving to `.visidata/macro/command-longname.vd` @@ -17,7 +19,7 @@ - [New conda package](https://github.com/conda-forge/visidata-feedstock) - add .visidatarc [snippets](https://github.com/saulpw/visidata/tree/stable/snippets) with examples of extra functionality - add replayable options [#97](https://github.com/saulpw/visidata/issues/97) -- `g^S` for multisave to single file (for formats that support it) or directory +- `g^S` for multisave to single file (`.html`, `.md` and `.txt` are currently supported) or directory - `z^S` to save selected rows of current column only (along with key columns) - `T` to transpose rows and columns [#129](https://github.com/saulpw/visidata/issues/129) - `^A` to specify a command longname to execute diff --git a/README.md b/README.md index deec3a0ec..155889e94 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# VisiData v1.1 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) +# VisiData v1.2 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) A terminal interface for exploring and arranging tabular data. diff --git a/bin/vd b/bin/vd index ebca8fdf5..4decc966c 100755 --- a/bin/vd +++ b/bin/vd @@ -3,7 +3,7 @@ # Usage: $0 [] [ ...] # $0 [] --play [--batch] [-w ] [-o ] [field=value ...] -__version__ = '1.1' +__version__ = '1.2' __version_info__ = 'saul.pw/VisiData v' + __version__ import os diff --git a/setup.py b/setup.py index 915821b2e..32975f951 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup # tox can't actually run python3 setup.py: https://github.com/tox-dev/tox/issues/96 #from visidata import __version__ -__version__ = '1.1' +__version__ = '1.2' setup(name='visidata', version=__version__, diff --git a/visidata/man/vd.1 b/visidata/man/vd.1 index 9928a1168..6dd245ae7 100644 --- a/visidata/man/vd.1 +++ b/visidata/man/vd.1 @@ -1,4 +1,4 @@ -.Dd April 29, 2018 +.Dd April 30, 2018 .Dt vd \&1 "Quick Reference Guide" .Os Linux/MacOS . @@ -713,7 +713,7 @@ directory to load and store macros .It Sy --rowkey-prefix Ns = Ns Ar "str " No "\[u30AD]" string prefix for rowkey in the cmdlog .It Sy --cmdlog-histfile Ns = Ns Ar "str " No "" -autorecords each cmdlog action to the given file +file to autorecord each cmdlog action to .It Sy --regex-maxsplit Ns = Ns Ar "int " No "0" maxsplit to pass to regex.split .It Sy --show-graph-labels Ns = Ns Ar "bool " No "True" @@ -722,7 +722,7 @@ show axes and legend on graph list of distinct colors to use for plotting distinct objects .It Sy --zoom-incr Ns = Ns Ar "float " No "2.0" amount to multiply current zoomlevel when zooming -.It Sy --motd-url Ns = Ns Ar "str " No "http://visidata.org/motd-1.1" +.It Sy --motd-url Ns = Ns Ar "str " No "http://visidata.org/motd-1.2" source of randomized startup messages .It Sy --csv-dialect Ns = Ns Ar "str " No "excel" dialect passed to csv.reader @@ -821,7 +821,7 @@ color for file attributes pending modification color for files pending delete .It Sy "disp_histogram " No "*" histogram element character -.It Sy "disp_histolen " No "80" +.It Sy "disp_histolen " No "50" width of histogram column .It Sy "disp_replay_play " No "\[u25B6]" status indicator for active replay diff --git a/visidata/man/vd.inc b/visidata/man/vd.inc index c19220f8b..96c916874 100644 --- a/visidata/man/vd.inc +++ b/visidata/man/vd.inc @@ -1,4 +1,4 @@ -.Dd April 29, 2018 +.Dd April 30, 2018 .Dt vd \&1 "Quick Reference Guide" .Os Linux/MacOS . diff --git a/visidata/vdtui.py b/visidata/vdtui.py index 09f191c1c..19f59d17e 100755 --- a/visidata/vdtui.py +++ b/visidata/vdtui.py @@ -26,7 +26,7 @@ # Just include this whole file in your project as-is. If you do make # modifications, please keep the base vdtui version and append your own id and # version. -__version__ = '1.1' +__version__ = '1.2' __version_info__ = 'saul.pw/vdtui v' + __version__ __author__ = 'Saul Pwanson ' __license__ = 'MIT' diff --git a/www/index.md b/www/index.md index 312c8f3ba..4879a38cf 100644 --- a/www/index.md +++ b/www/index.md @@ -1,7 +1,7 @@ # VisiData -## Latest Version: [1.1 (released 2018-03-05)](/releases) +## Latest Version: [1.2 (released 2018-04-30)](/releases) VisiData is an interactive multitool for tabular data. It combines the clarity of a spreadsheet, the efficiency of the terminal, and the power of Python, into a lightweight utility which can handle millions of rows with ease.