This commit is contained in:
Giorgio Calderone 2020-04-13 19:24:45 +02:00
parent ef99fe5e4a
commit 21bc959570

View File

@ -1,16 +1,25 @@
# Version 1.2.0
git-tree-sha1: master
released on:
# Version 1.2.0 (not yet released)
- New features:
* REPL mode: a new `Gnuplot.repl_init()` function is available to
install a gnuplot REPL;
* `@gp` and `@gsp` now accepts a `Gnuplot.PlotRecipe` object, to
allow customized data input;
* `@gp` and `@gsp` now accepts a `Gnuplot.PlotRecipe` object,
collect commands, data and plot specifications in a single
argument;
* The `plotrecipe` function can be extended to register new plot
recipes for custom input data;
* The `plotrecipe` function can be extended to register new implicit
recipes to display input data;
* The `linetypes` function now accept the `lw` and `ps` keywords
(to set the line width and point size respectively), and the
`dashed` keyword (to use dashed patterns in place of solid
lines);
* The new `Gnuplot.options.reset::Vector{String}` field allows to
set initialization commands to be executed when a session is
reset. Unlike `Gnuplot.options.reset`, these commands are saved
in the session and can be dumped to a script;
- Bugfix:
* When a `Vector{String}` is passed to `driver()` it used to be
@ -22,9 +31,7 @@ released on:
plot. Now two blanck lines are returned;
# Version 1.1.0
git-tree-sha1: d62f8713b2e49bce9ef37bd21b80c4297d316915
released on: Apr. 09, 2020
# Version 1.1.0 (released on: Apr. 09, 2020)
- First production ready version;
- Completed documentation and example gallery;