mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-18 19:18:06 +08:00
Compare commits
42 Commits
debian/1.2
...
v1.25
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0270ec7679 | ||
![]() |
46123fc308 | ||
![]() |
f342a42cf9 | ||
![]() |
d55e54c095 | ||
![]() |
0ca3482607 | ||
![]() |
48254eefa8 | ||
![]() |
54862ec2fd | ||
![]() |
74e95d8e6f | ||
![]() |
6f23f89c28 | ||
![]() |
0f4fc69835 | ||
![]() |
f83d8db27a | ||
![]() |
59625675f7 | ||
![]() |
0863998848 | ||
![]() |
f2fa0bf14c | ||
![]() |
ffd19b9b87 | ||
![]() |
669fb8dee6 | ||
![]() |
deaa85dbd3 | ||
![]() |
99369d1542 | ||
![]() |
f4976bd0f7 | ||
![]() |
acd6de507c | ||
![]() |
faaeac7990 | ||
![]() |
1acb30c3cd | ||
![]() |
1252315598 | ||
![]() |
fad78b60b0 | ||
![]() |
809442e2dc | ||
![]() |
f022590344 | ||
![]() |
3c0743c192 | ||
![]() |
c615c8d65e | ||
![]() |
c169330fca | ||
![]() |
d76f163be4 | ||
![]() |
386c5f6d41 | ||
![]() |
720c332dd9 | ||
![]() |
4e823e7de5 | ||
![]() |
3badf920b6 | ||
![]() |
756d934058 | ||
![]() |
b43c9b985f | ||
![]() |
2f5e9d95ca | ||
![]() |
08d2f79fba | ||
![]() |
ef2bff2af6 | ||
![]() |
70b7c98124 | ||
![]() |
3146dbdfe7 | ||
![]() |
707196580a |
14
Changes
14
Changes
@@ -1,3 +1,17 @@
|
||||
feedgnuplot (1.25) unstable; urgency=low
|
||||
|
||||
* Added test suite
|
||||
* Added initial support for --timefmt. Currently time/date data is
|
||||
supported only at the x-axis domain
|
||||
* Added --exit option for force feedgnuplot to return even if gnuplot
|
||||
may not yet be done rendering (patch by Eric Schulte)
|
||||
* Reformatted the documentation
|
||||
* y2-axis curves no longer have a thicker line by default
|
||||
* --hardcopy now handles piped output (gnuplot 'set output |process'
|
||||
syntax)
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 00:09:36 -0700
|
||||
|
||||
feedgnuplot (1.24) unstable; urgency=low
|
||||
|
||||
* Fixed regression in --monotonic. This works again now
|
||||
|
2
MANIFEST
2
MANIFEST
@@ -1,7 +1,7 @@
|
||||
Makefile.PL
|
||||
MANIFEST
|
||||
bin/feedgnuplot
|
||||
t/00-load.t
|
||||
t/manifest.t
|
||||
t/plots.t
|
||||
Changes
|
||||
LICENSE
|
||||
|
@@ -63,7 +63,7 @@ WriteMakefile
|
||||
: ()),
|
||||
PL_FILES => {},
|
||||
EXE_FILES => [ 'bin/feedgnuplot' ],
|
||||
PREREQ_PM => { 'Test::Script::Run' => 0},
|
||||
BUILD_REQUIRES => { 'String::ShellQuote' => 0},
|
||||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||||
clean => { FILES => 'feedgnuplot-*' },
|
||||
);
|
||||
|
1066
bin/feedgnuplot
1066
bin/feedgnuplot
File diff suppressed because it is too large
Load Diff
@@ -1,43 +1,46 @@
|
||||
complete -W \
|
||||
' \
|
||||
--domain \
|
||||
--dataid \
|
||||
--3d \
|
||||
--colormap \
|
||||
--stream \
|
||||
--lines \
|
||||
--points \
|
||||
--circles \
|
||||
--xlabel \
|
||||
--ylabel \
|
||||
--y2label \
|
||||
--zlabel \
|
||||
--zlabel \
|
||||
--title \
|
||||
--autolegend \
|
||||
--xlen \
|
||||
--xmin \
|
||||
--xmax \
|
||||
--ymin \
|
||||
--ymax \
|
||||
--y2min \
|
||||
--y2max \
|
||||
--zmin \
|
||||
--zmax \
|
||||
--y2 \
|
||||
--curvestyleall \
|
||||
--extracmds \
|
||||
--square \
|
||||
--square_xy \
|
||||
--hardcopy \
|
||||
--maxcurves \
|
||||
--monotonic \
|
||||
--extraValuesPerPoint \
|
||||
--dump \
|
||||
--geometry \
|
||||
--curvestyle \
|
||||
--histogram \
|
||||
--binwidth \
|
||||
--histstyle \
|
||||
--terminal \
|
||||
--legend' feedgnuplot
|
||||
complete -W \
|
||||
' \
|
||||
--3d \
|
||||
--autolegend \
|
||||
--binwidth \
|
||||
--circles \
|
||||
--colormap \
|
||||
--curvestyle \
|
||||
--curvestyleall \
|
||||
--dataid \
|
||||
--domain \
|
||||
--dump \
|
||||
--exit \
|
||||
--extraValuesPerPoint \
|
||||
--extracmds \
|
||||
--geometry \
|
||||
--hardcopy \
|
||||
--help \
|
||||
--histogram \
|
||||
--histstyle \
|
||||
--legend \
|
||||
--lines \
|
||||
--maxcurves \
|
||||
--monotonic \
|
||||
--points \
|
||||
--square \
|
||||
--square_xy \
|
||||
--stream \
|
||||
--terminal \
|
||||
--timefmt \
|
||||
--title \
|
||||
--version \
|
||||
--xlabel \
|
||||
--xlen \
|
||||
--xmax \
|
||||
--xmin \
|
||||
--y2 \
|
||||
--y2label \
|
||||
--y2max \
|
||||
--y2min \
|
||||
--ylabel \
|
||||
--ymax \
|
||||
--ymin \
|
||||
--zlabel \
|
||||
--zmax \
|
||||
--zmin' feedgnuplot
|
||||
|
@@ -1,44 +1,48 @@
|
||||
#compdef feedgnuplot
|
||||
|
||||
_arguments -S \
|
||||
'()--domain[first element of each line is the domain variable]' \
|
||||
'--dataid[each data point is preceded by the corresponding ID]' \
|
||||
'(--monotonic --xlen --histogram)--3d' \
|
||||
'--colormap[show a colormapped xy plot]' \
|
||||
'--stream[Plot the data in realtime]::period in s:' \
|
||||
'--lines' \
|
||||
'--points' \
|
||||
'--circles' \
|
||||
'--xlabel:X-axis label:' \
|
||||
'--ylabel:Y-axis label:' \
|
||||
'--y2label:Y2-axis label:' \
|
||||
'--zlabel:Z-axis label:' \
|
||||
'--zlabel:Z-axis label:' \
|
||||
'--title:Plot title:' \
|
||||
'--autolegend[Label each plot with its data ID]' \
|
||||
'(--3d)--xlen[the size of the x-window to plot]::window size:' \
|
||||
'--xmin:min X:' \
|
||||
'--xmax:max X:' \
|
||||
'--ymin:min Y:' \
|
||||
'--ymax:max Y:' \
|
||||
'--y2min:min Y2:' \
|
||||
'--y2max:max Y2:' \
|
||||
'--zmin:min Z:' \
|
||||
'--zmax:max Z:' \
|
||||
'*--y2:plot to place on the Y2 axis:' \
|
||||
'--curvestyleall[Additional styles for ALL curves]:' \
|
||||
'*--extracmds[Additional gnuplot commands]:' \
|
||||
'--square[Plot data with square aspect ratio]' \
|
||||
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
|
||||
'--hardcopy[Plot to a file]:' \
|
||||
'--maxcurves[The maximum allowed number of curves]:' \
|
||||
'(--3d)--monotonic[Resets plot if an X in the past is seen]' \
|
||||
'--extraValuesPerPoint[How many extra values are given for each data point]:' \
|
||||
'--dump[Instead of printing to gnuplot, print to STDOUT]' \
|
||||
'--geometry[The X11 geometry string]:geometry string:' \
|
||||
'*--curvestyle[Additional styles for a curve]:curve id: :style:' \
|
||||
'(--3d)*--histogram:plot to treat as a histogram:' \
|
||||
'--binwidth:Histogram bin width:' \
|
||||
'--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \
|
||||
'--terminal:Terminal options to set with "set terminal":' \
|
||||
'*--legend[Legend for a curve]:curve id: :legend:'
|
||||
_arguments -S \
|
||||
'()--domain[first element of each line is the domain variable]' \
|
||||
'--dataid[each data point is preceded by the corresponding ID]' \
|
||||
'(--monotonic --xlen --histogram)--3d' \
|
||||
'--colormap[show a colormapped xy plot]' \
|
||||
'--stream[Plot the data in realtime]::period in s:' \
|
||||
'--lines' \
|
||||
'--points' \
|
||||
'--circles' \
|
||||
'--xlabel:X-axis label:' \
|
||||
'--ylabel:Y-axis label:' \
|
||||
'--y2label:Y2-axis label:' \
|
||||
'--zlabel:Z-axis label:' \
|
||||
'--zlabel:Z-axis label:' \
|
||||
'--title:Plot title:' \
|
||||
'--autolegend[Label each plot with its data ID]' \
|
||||
'(--3d)--xlen[the size of the x-window to plot]::window size:' \
|
||||
'(--xlen)--xmin:min X:' \
|
||||
'(--xlen)--xmax:max X:' \
|
||||
'--ymin:min Y:' \
|
||||
'--ymax:max Y:' \
|
||||
'--y2min:min Y2:' \
|
||||
'--y2max:max Y2:' \
|
||||
'--zmin:min Z:' \
|
||||
'--zmax:max Z:' \
|
||||
'*--y2:plot to place on the Y2 axis:' \
|
||||
'--curvestyleall[Additional styles for ALL curves]:style' \
|
||||
'*--extracmds[Additional gnuplot commands]:command' \
|
||||
'--square[Plot data with square aspect ratio]' \
|
||||
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
|
||||
'--hardcopy[Plot to a file]:filename' \
|
||||
'--maxcurves[The maximum allowed number of curves]:number of curves' \
|
||||
'(--3d)--monotonic[Resets plot if an X in the past is seen]' \
|
||||
'--extraValuesPerPoint[How many extra values are given for each data point]:N'\
|
||||
'--dump[Instead of printing to gnuplot, print to STDOUT]' \
|
||||
'--geometry[The X11 geometry string]:geometry string:' \
|
||||
'*--curvestyle[Additional styles for a curve]:curve id: :style:' \
|
||||
'(--3d)*--histogram:plot to treat as a histogram:' \
|
||||
'--binwidth:Histogram bin width:' \
|
||||
'--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \
|
||||
'--terminal:Terminal options to set with "set terminal":' \
|
||||
'*--legend[Legend for a curve]:curve id: :legend:' \
|
||||
'--exit[Exit gnuplot after making the plot]' \
|
||||
'--version' \
|
||||
'--help' \
|
||||
'--timefmt[Format for time/date data]:time format'
|
||||
|
16
t/00-load.t
16
t/00-load.t
@@ -1,16 +0,0 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# require a threaded perl for my tests. This block lifted verbatim from the cpantesters wiki
|
||||
BEGIN {
|
||||
use Config;
|
||||
if (! $Config{'useithreads'}) {
|
||||
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
use Test::More tests => 1;
|
||||
use Test::Script::Run;
|
||||
|
||||
run_ok( 'feedgnuplot', ['--help'], 'feedgnuplot can run');
|
||||
|
Reference in New Issue
Block a user