From ba112a3bd941eca2fa1da7252ff22fc90e20f0e3 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Tue, 20 Jun 2017 16:43:52 -0700 Subject: [PATCH 1/2] --image always goes on the FRONT of the equation list The image is intended to be background, so I want it to be rendered first, with everything else on top of it --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index f976180..977580d 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -438,7 +438,7 @@ sub interpretCommandline die "Couldn't read image '$options{image}'"; } - push @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage}; + unshift @{$options{equation}}, qq{"$options{image}" binary filetype=auto flipy with rgbimage}; delete $options{image}; } } From defcf5ef5972894e391e367686a1ccfd3d93ddec Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Tue, 20 Jun 2017 16:44:55 -0700 Subject: [PATCH 2/2] changelog bump, release --- Changes | 6 ++++++ bin/feedgnuplot | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 06ae3ad..8605a73 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +feedgnuplot (1.44) + + * --image draws its output beneath everything else + + -- Dima Kogan Tue, 20 Jun 2017 16:44:30 -0700 + feedgnuplot (1.43) * Added --image diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 977580d..7eda297 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -15,7 +15,7 @@ use Text::ParseWords; # for shellwords use Pod::Usage; use Time::Piece; -my $VERSION = 1.43; +my $VERSION = 1.44; my %options; interpretCommandline();