diff --git a/.travis.yml b/.travis.yml index 9caff8d..e64a133 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,14 +7,14 @@ os: julia: - 1.2 - - nightly +# - nightly notifications: email: false -matrix: - allow_failures: - - julia: nightly +#matrix: +# allow_failures: +# - julia: nightly addons: apt: diff --git a/ChangeLog.md b/ChangeLog.md index e25911a..8bbb3f9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,11 @@ +# Version 1.3.1 (not yet released) +- Bugfix: + * Multiplot were not displayed in Jupyter (#25); + + * `gpvars()` fails if gnuplot character encoding is utf8 + (#24); + + # Version 1.3.0 (released on: Apr. 29, 2020) - New features: diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index 291cc9e..9e741d4 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -549,6 +549,11 @@ function GPSession(sid::Symbol) if options.term == "" options.term = terminal() end + + # The stderr of the gnuplot process goes to Julia which can parse + # UTF8 characters (regardless of the terminal). + gpexec("set encoding utf8") + return out end