From b2c57797a7eb8ea6bc2b87e167b040418f83bf06 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Fri, 13 Nov 2020 20:48:32 -0800 Subject: [PATCH 1/5] ping example doesn't use -A There's just no reason for that at all --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 26147e3..3cf20a3 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -2309,7 +2309,7 @@ in a Thinkpad. =head2 Plotting a live histogram of the ping round-trip times for the past 20 seconds - $ ping -A -D 8.8.8.8 | + $ ping -D 8.8.8.8 | perl -anE 'BEGIN { $| = 1; } $F[0] =~ s/[\[\]]//g or next; $F[7] =~ s/.*=//g or next; From 099ef3384361249715acfbea31a6da0416ca5109 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Mon, 11 Jan 2021 15:12:06 -0800 Subject: [PATCH 2/5] fixed typo in docs --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 3cf20a3..9c61eb1 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -2005,7 +2005,7 @@ instance, to plot 1% of the data, pass a factor of 100. =item -C<--everyallID factor> +C<--everyall factor> Decimates the input. This works exactly like C<--every>, except it applies to I the curves. From bb9220ea97a19cca3e03d9d30542b4af6b90689d Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Wed, 3 Feb 2021 14:41:28 -0800 Subject: [PATCH 3/5] updated default hardcopy settings --- bin/feedgnuplot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 9c61eb1..6f46037 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -649,11 +649,11 @@ sub mainThread } my %terminalOpts = - ( eps => 'postscript noenhanced solid color enhanced eps', + ( eps => 'postscript noenhanced solid color eps', ps => 'postscript noenhanced solid color landscape 12', - pdf => 'pdfcairo noenhanced solid color font ",12" size 11in,8.5in', - png => 'png noenhanced size 1280,1024', - svg => 'svg noenhanced', + pdf => 'pdfcairo noenhanced solid color font ",12" size 8in,6in', + png => 'pngcairo noenhanced size 1024,768 transparent crop font ",12"', + svg => 'svg noenhanced solid dynamic size 800,600 font ",14"', gp => 'gp'); if( !defined $options{terminal} && From 47957cfed60fbbc3a3f49eae4d8487169c8d5329 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Wed, 3 Feb 2021 14:42:22 -0800 Subject: [PATCH 4/5] changelog bump --- Changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Changes b/Changes index 4c76abb..6f9eef6 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +feedgnuplot (1.56) unstable; urgency=medium + + * Updated default hardcopy settings + + -- Dima Kogan Wed, 03 Feb 2021 14:42:15 -0800 + feedgnuplot (1.55) * Fixed regression introduced in 1.54: From fce0b9bb99dd3393b97101a1803ef0566f2333c3 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Wed, 3 Feb 2021 14:49:06 -0800 Subject: [PATCH 5/5] version bump --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 6f46037..3262f71 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -16,7 +16,7 @@ use Pod::Usage; use Time::Piece; # Makefile.PL assumes this is in '' -my $VERSION = '1.55'; +my $VERSION = '1.56'; my %options; interpretCommandline();