diff --git a/NEWS.md b/NEWS.md index 31306f08..e36c71f4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -9,6 +9,19 @@ ## 0.7 (current master/dev) +#### 0.7.2 + +- line_z arg for multicolored line segments +- pyplot + - line_z (2d and 3d) + - pushed all fig updates into display pipeline + - remove native sticks/hline/vline in favor of recipes +- unicodeplots cleanup, ijulia fixes, ascii canvas +- `curves` series type +- `iter_segments` iterator +- moved arcdiagram out and into PlotRecipes (thanks @diegozea) +- several other fixes/checks + #### 0.7.1 - inset (floating) subplots diff --git a/src/backends/plotlyjs.jl b/src/backends/plotlyjs.jl index 4f01aa6e..5bafb62d 100644 --- a/src/backends/plotlyjs.jl +++ b/src/backends/plotlyjs.jl @@ -65,7 +65,7 @@ function _writemime(io::IO, ::MIME"image/svg+xml", plt::Plot{PlotlyJSBackend}) end function _writemime(io::IO, ::MIME"image/png", plt::Plot{PlotlyJSBackend}) - tmpfn = tempname() * "png" + tmpfn = tempname() * ".png" PlotlyJS.savefig(plt.o, tmpfn) write(io, read(open(tmpfn))) end