diff --git a/CHANGELOG b/CHANGELOG index 61eb3b39..89997433 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,11 +1,12 @@ jc changelog -20220208 v1.18.3 +20220214 v1.18.3 - Add rsync command and log file parser tested on linux and macOS - Add rsync command and log file streaming parser tested on linux and macOS - Add xrandr command parser tested on linux - Enhance timestamp performance with caching and format hints - Refactor ignore_exceptions functionality in streaming parsers +- Fix man page in packages 20220127 v1.18.2 - Fix for plugin parsers with underscores in the name diff --git a/docs/parsers/rsync.md b/docs/parsers/rsync.md index dfaa837b..04f8c664 100644 --- a/docs/parsers/rsync.md +++ b/docs/parsers/rsync.md @@ -6,10 +6,8 @@ jc - JSON CLI output utility `rsync` command output parser Supports the `-i` or `--itemize-changes` options with all levels of -verbosity. - -Will also process the rsync log file generated with the `--log-file` -option and the `-i` or `--itemize-changes` options. +verbosity. This parser will process the STDOUT output or a log file +generated with the `--log-file` option. Usage (cli): diff --git a/docs/parsers/rsync_s.md b/docs/parsers/rsync_s.md index 56b4638e..dc286806 100644 --- a/docs/parsers/rsync_s.md +++ b/docs/parsers/rsync_s.md @@ -8,10 +8,8 @@ jc - JSON CLI output utility `rsync` command output streaming parser > This streaming parser outputs JSON Lines Supports the `-i` or `--itemize-changes` options with all levels of -verbosity. - -Will also process the rsync log file generated with the `--log-file` -option and the `-i` or `--itemize-changes` options. +verbosity. This parser will process the STDOUT output or a log file +generated with the `--log-file` option. Usage (cli): diff --git a/jc/parsers/rsync.py b/jc/parsers/rsync.py index 9ce12183..8b56761a 100644 --- a/jc/parsers/rsync.py +++ b/jc/parsers/rsync.py @@ -1,10 +1,8 @@ """jc - JSON CLI output utility `rsync` command output parser Supports the `-i` or `--itemize-changes` options with all levels of -verbosity. - -Will also process the rsync log file generated with the `--log-file` -option and the `-i` or `--itemize-changes` options. +verbosity. This parser will process the STDOUT output or a log file +generated with the `--log-file` option. Usage (cli): diff --git a/jc/parsers/rsync_s.py b/jc/parsers/rsync_s.py index ad2e78f5..5c0e96b3 100644 --- a/jc/parsers/rsync_s.py +++ b/jc/parsers/rsync_s.py @@ -3,10 +3,8 @@ > This streaming parser outputs JSON Lines Supports the `-i` or `--itemize-changes` options with all levels of -verbosity. - -Will also process the rsync log file generated with the `--log-file` -option and the `-i` or `--itemize-changes` options. +verbosity. This parser will process the STDOUT output or a log file +generated with the `--log-file` option. Usage (cli):