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 f976180..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(); @@ -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}; } }