This commit is contained in:
Giorgio Calderone 2020-04-25 20:52:19 +02:00
parent 6df834bb88
commit 8e140ee998
2 changed files with 23 additions and 5 deletions

View File

@ -1,9 +1,26 @@
# Version 1.3.0 (not yet released) # Version 1.3.0 (not yet released)
mime
gpviewer - New features:
term_svg, term_png
contourlines(x::AbstractVector{Float64}, y::AbstractVector{Float64}, z::AbstractMatrix{Float64}, * The `Options` structure features a new `mime` field: a
save(mime) 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) # Version 1.2.0 (released on: Apr. 20, 2020)

View File

@ -4,6 +4,7 @@
[![Build Status](https://travis-ci.org/gcalderone/Gnuplot.jl.svg?branch=master)](https://travis-ci.org/gcalderone/Gnuplot.jl) [![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) [![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-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. **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.