From 3e03aa27f79f506b2804c051b77751826ba432f0 Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Tue, 28 Apr 2020 18:50:40 +0200 Subject: [PATCH] Updated --- ChangeLog.md | 14 +++++++++++--- docs/src/install.md | 6 +++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 70bfd3d..27b17c8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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` diff --git a/docs/src/install.md b/docs/src/install.md index a3f91e6..66b8583 100644 --- a/docs/src/install.md +++ b/docs/src/install.md @@ -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.