Compare commits

..

3 Commits
v1.37 ... v1.38

Author SHA1 Message Date
Dima Kogan
18994e68e1 version bump 2016-07-27 22:16:34 -07:00
Dima Kogan
f8ed461571 No enhanced text mode in hardcopies, slightly larger font size 2016-07-11 10:11:06 -07:00
Dima Kogan
f01431dd1e removed unneeded old code 2016-01-22 00:48:59 -08:00
2 changed files with 14 additions and 11 deletions

View File

@@ -1,3 +1,11 @@
feedgnuplot (1.38)
* hardcopy defaults:
- no enhanced text mode
- larger font size
-- Dima Kogan <dima@secretsauce.net> Wed, 27 Jul 2016 22:15:11 -0700
feedgnuplot (1.37) feedgnuplot (1.37)
* At the end of a streaming plot, include the last chunk of data * At the end of a streaming plot, include the last chunk of data

View File

@@ -14,7 +14,7 @@ use Text::ParseWords; # for shellwords
use Pod::Usage; use Pod::Usage;
use Time::Piece; use Time::Piece;
my $VERSION = 1.37; my $VERSION = 1.38;
my %options; my %options;
interpretCommandline(); interpretCommandline();
@@ -497,11 +497,11 @@ sub mainThread
} }
my %terminalOpts = my %terminalOpts =
( eps => 'postscript solid color enhanced eps', ( eps => 'postscript noenhanced solid color enhanced eps',
ps => 'postscript solid color landscape 10', ps => 'postscript noenhanced solid color landscape 12',
pdf => 'pdfcairo solid color font ",10" size 11in,8.5in', pdf => 'pdfcairo noenhanced solid color font ",12" size 11in,8.5in',
png => 'png size 1280,1024', png => 'png noenhanced size 1280,1024',
svg => 'svg'); svg => 'svg noenhanced');
if( !defined $options{terminal} && if( !defined $options{terminal} &&
defined $outputfileType && defined $outputfileType &&
@@ -605,11 +605,6 @@ sub mainThread
setCurveAsHistogram( $_ ) foreach (@{$options{histogram}}); setCurveAsHistogram( $_ ) foreach (@{$options{histogram}});
# set all the axis ranges
# If a bound isn't given I want to set it to the empty string, so I can communicate it simply to
# gnuplot
print PIPE "set xtics\n";
if(@{$options{y2}}) if(@{$options{y2}})
{ {
print PIPE "set ytics nomirror\n"; print PIPE "set ytics nomirror\n";