diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-06-09 06:59:20 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-06-09 06:59:20 -0700 |
commit | 60ef2a41f547fb5b0a3cfd553f65cfbd700b3da6 (patch) | |
tree | 889298be70ada2f19f40ba0dc835b1bc942dde2a | |
parent | eb16b04f0e8f17471d4c1bec9611040747adfdbd (diff) | |
download | pw-60ef2a41f547fb5b0a3cfd553f65cfbd700b3da6.tar.gz pw-60ef2a41f547fb5b0a3cfd553f65cfbd700b3da6.tar.bz2 pw-60ef2a41f547fb5b0a3cfd553f65cfbd700b3da6.zip |
Version 5 is released.pw-5
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | pw-relnotes.5 | 11 | ||||
-rw-r--r-- | pw.1 | 2 |
3 files changed, 14 insertions, 5 deletions
@@ -1,12 +1,12 @@ -PW_SHA256 := 2faedc2915507276304d7bb9b28231cb46c6bc6c57c6ad27dc1aafe19ca32969 +PW_SHA256 := 9f225df8b1773febda4ff7d6bd2a2c38da98146557ebb9a57f1ecb5be580fe95 DARWIN = $(findstring Darwin,$(shell uname)) NEEDED_CFLAGS := -std=c99 -D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__ NEEDED_CFLAGS += $(if $(DARWIN),-D_DARWIN_C_SOURCE) SHA256TOOL := $(if $(DARWIN),shasum -a 256,sha256sum) ifeq ($(shell $(SHA256TOOL) pw.c),$(PW_SHA256) pw.c) -PW_VERSION := 4 +PW_VERSION := 5 else -PW_VERSION := 4-$(shell git rev-parse --short HEAD) +PW_VERSION := 5-$(shell git rev-parse --short HEAD) PW_VERSION := $(PW_VERSION)$(shell git diff --quiet || printf -- "-dirty") endif CFLAGS ?= -g -O2 -W -Wall diff --git a/pw-relnotes.5 b/pw-relnotes.5 index d64bd25..5bae49a 100644 --- a/pw-relnotes.5 +++ b/pw-relnotes.5 @@ -24,13 +24,22 @@ .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. -.TH PW-RELNOTES 5 "8 Jun 2023" "Version 4" "Pipe Watch Release Notes" +.TH PW-RELNOTES 5 "9 Jun 2023" "Version 5" "Pipe Watch Release Notes" .SH DESCRIPTION This document provides release notes for the .I pw utility. +.SH CHANGES IN VERSION 5 (2023-06-09) + +.IP 1. +Pass-through mode: data can be piped through pw while monitoring +goes on. + +.IP 2. +Highlighting of line numbers of lines that caused trigger capture. + .SH CHANGES IN VERSION 4 (2023-06-08) Working on Mac OS. @@ -24,7 +24,7 @@ .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. -.TH PW 1 "8 Jun 2023" "Version 4" "Pipe Watch" +.TH PW 1 "9 Jun 2023" "Version 5" "Pipe Watch" .SH NAME pw \- Pipe Watch: monitor recent lines of output from pipe |