mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-18 19:18:06 +08:00
Compare commits
6 Commits
debian/1.5
...
debian/1.5
Author | SHA1 | Date | |
---|---|---|---|
![]() |
bfc12f82a0 | ||
![]() |
09d2000bec | ||
![]() |
c8dac15db3 | ||
![]() |
4244299169 | ||
![]() |
4234c94737 | ||
![]() |
154377691c |
7
Changes
7
Changes
@@ -1,3 +1,10 @@
|
||||
feedgnuplot (1.55)
|
||||
|
||||
* Fixed regression introduced in 1.54:
|
||||
--style now correctly overrides --with
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Mon, 20 Jul 2020 15:51:23 -0700
|
||||
|
||||
feedgnuplot (1.54)
|
||||
|
||||
* Added --every and --everyall to decimate the input data
|
||||
|
@@ -16,7 +16,7 @@ use Pod::Usage;
|
||||
use Time::Piece;
|
||||
|
||||
# Makefile.PL assumes this is in ''
|
||||
my $VERSION = '1.54';
|
||||
my $VERSION = '1.55';
|
||||
|
||||
my %options;
|
||||
interpretCommandline();
|
||||
@@ -1188,7 +1188,10 @@ sub getCurve
|
||||
|
||||
if( !exists $curveFromID{$id} )
|
||||
{
|
||||
my $curve = {extraoptions => ( exists $options{curvestyleall}) ?
|
||||
my $curve = {# if we have a catch-all style and no specific style, use
|
||||
# the catch-all style
|
||||
extraoptions => (!exists $options{curvestyle_hash}{$id} &&
|
||||
exists $options{curvestyleall}) ?
|
||||
"$options{curvestyleall} " : ' ',
|
||||
everyoptions => (!exists $options{every_hash}{$id} &&
|
||||
exists $options{everyall}) ?
|
||||
@@ -2246,7 +2249,10 @@ also.
|
||||
|
||||
C<--geometry>
|
||||
|
||||
If using X11, specifies the size, position of the plot window
|
||||
Specifies the size, position of the plot window. This applies I<only> to the
|
||||
C<x11> gnuplot terminal, and has no effect otherwise. To control the window size
|
||||
for any other terminal, ask for the terminal explicitly, with the options
|
||||
specifying the size. For instance C<--terminal 'qt size 1024,768'>
|
||||
|
||||
=item
|
||||
|
||||
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@@ -1,3 +1,10 @@
|
||||
feedgnuplot (1.55-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
- Fixed regression in 1.54: --style overrides --with
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Mon, 20 Jul 2020 15:55:13 -0700
|
||||
|
||||
feedgnuplot (1.54-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
|
Reference in New Issue
Block a user