Releases: kattouf/ProgressLine
Releases · kattouf/ProgressLine
0.2.3 - 2024-11-17
📁 Project
- migrate from make to sake by @kattouf in #5
- update checks shield by @kattouf in 7cceff4
- lint pr name by @kattouf in 4f07b0a
- change test to checks workflow name, add lint step by @kattouf in 95ef3ca
- add lint/format commands. reformat project by @kattouf in f9b542a
- add release notes generator (git cliff) by @kattouf in 56a7685
- move to swift 6 by @kattouf in 0d245e1
- add .index-build to .gitignore by @kattouf in 310a070
Full Changelog: 0.2.2...0.2.3
0.2.2
New Feature: Replace log output with custom text
If you don't need to see the log output during execution, even in a single line, you can replace it with your own text using the -t, --static-text
option.
long-running-command | progressline --static-text "Updating sources..."
Implements feature request: #2
0.2.1
0.2.0
New Features
Save log
Save original log using -l, --original-log-path
argument:
long-running-command | progressline --original-log-path original-log.txt
Highlight important lines
Log specific stdin lines above the progress line using the -m, --log-matches
argument:
long-running-command | progressline --log-matches "regex-1" --log-matches "regex-2"
Use progress line as an addition to standard output
Log all stdin data above the progress line using the -a, --log-all
argument:
long-running-command | progressline --log-all