Compare commits

..

2 Commits
v1.43 ... v1.44

Author SHA1 Message Date
Dima Kogan
defcf5ef59 changelog bump, release 2017-06-20 16:44:55 -07:00
Dima Kogan
ba112a3bd9 --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
2017-06-20 16:44:02 -07:00
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
feedgnuplot (1.44)
* --image draws its output beneath everything else
-- Dima Kogan <dima@secretsauce.net> Tue, 20 Jun 2017 16:44:30 -0700
feedgnuplot (1.43) feedgnuplot (1.43)
* Added --image * Added --image

View File

@@ -15,7 +15,7 @@ use Text::ParseWords; # for shellwords
use Pod::Usage; use Pod::Usage;
use Time::Piece; use Time::Piece;
my $VERSION = 1.43; my $VERSION = 1.44;
my %options; my %options;
interpretCommandline(); interpretCommandline();
@@ -438,7 +438,7 @@ sub interpretCommandline
die "Couldn't read image '$options{image}'"; 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}; delete $options{image};
} }
} }