From 8e140ee998798a50a498473f60cb16cccf65b05b Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Sat, 25 Apr 2020 20:52:19 +0200 Subject: [PATCH] Updated --- ChangeLog.md | 27 ++++++++++++++++++++++----- README.md | 1 + 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 221e21b..70bfd3d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,9 +1,26 @@ # Version 1.3.0 (not yet released) -mime -gpviewer -term_svg, term_png -contourlines(x::AbstractVector{Float64}, y::AbstractVector{Float64}, z::AbstractMatrix{Float64}, -save(mime) + +- 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 `gpviewer` field allowing + to choose the display behaviour (using either gnuplot + 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 + `Options.mime` dictionary; + + * The `contourlines()` function now accepts `AbstractVector` and + `AbstractMatrix` as arguments, rather than `Vector` and + `Matrix`; + +- Breaking changes: + * The `Options` structure no longer provides the `term_svg` and + `term_png` fields. They have been replaced by the `mime` + dictionary. # Version 1.2.0 (released on: Apr. 20, 2020) diff --git a/README.md b/README.md index 3bd4258..3622dd5 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![Build Status](https://travis-ci.org/gcalderone/Gnuplot.jl.svg?branch=master)](https://travis-ci.org/gcalderone/Gnuplot.jl) [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md) [![DocumentationStatus](https://img.shields.io/badge/docs-stable-blue.svg?style=flat)](https://gcalderone.github.io/Gnuplot.jl/v1.2.0/) +[![DocumentationStatus](https://img.shields.io/badge/docs-latest-blue.svg?style=flat)](https://gcalderone.github.io/Gnuplot.jl/v1.3.0/) **Gnuplot.jl** is a simple package able to send both data and commands from Julia to an underlying [gnuplot](http://gnuplot.sourceforge.net/) process. Its main purpose it to provide a fast and powerful data visualization framework, using an extremely concise Julia syntax.