This commit is contained in:
Giorgio Calderone 2020-04-28 18:50:40 +02:00
parent dab424bfec
commit 3e03aa27f7
2 changed files with 14 additions and 6 deletions

View File

@ -2,12 +2,13 @@
- New features:
* The `Options` structure features a new `mime` field: a
dictionary mapping a MIME type into gnuplot terminals;
* The `Options` structure features a new `mime` field containing a
dictionary to map a MIME type to gnuplot terminals;
* The `Options` structure features a new `gpviewer` field allowing
to choose the display behaviour (using either gnuplot
interactive terminals or anexternal viewer such as Jupyter or Juno);
interactive terminals or anexternal viewer such as Jupyter or
Juno);
* The `save()` function now accepts a `MIME` argument in place of
the `term=` keyword. The actual terminal is retrieved from the
@ -17,6 +18,13 @@
`AbstractMatrix` as arguments, rather than `Vector` and
`Matrix`;
* The `contourlines()` function now accepts a `fractions` input to
generate contours encompassing given fractions of the total
counts in a 2D histogram;
* The `palette()` function now accept a boolean `smooth` keyword,
allowing to interpolate a discrete palette into a continuous one.
- Breaking changes:
* The `Options` structure no longer provides the `term_svg` and
`term_png` fields. They have been replaced by the `mime`

View File

@ -19,11 +19,11 @@ Check **Gnuplot.jl** version with:
```julia-repl
julia> ]st Gnuplot
Status `~/.julia/environments/v1.4/Project.toml`
[dc211083] Gnuplot v1.2.0
[dc211083] Gnuplot v1.3.0
```
If the displayed version is not `v1.2.0` you are probably having a dependency conflict. In this case try forcing installation of the latest version with:
If the displayed version is not `v1.3.0` you are probably having a dependency conflict. In this case try forcing installation of the latest version with:
```julia-repl
julia> ]add Gnuplot@1.2.0
julia> ]add Gnuplot@1.3.0
```
and check which package is causing the conflict.