diff --git a/Project.toml b/Project.toml index 064c876..a641759 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SignalTables" uuid = "3201582d-3078-4276-ba5d-0a1254d79d7c" authors = ["Martin.Otter@dlr.de "] -version = "0.4.3" +version = "0.4.4" [deps] DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" diff --git a/docs/src/index.md b/docs/src/index.md index 9b00d25..0c8aed3 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -188,6 +188,10 @@ are different to the Python 2.x version. ## Release Notes +### Version 0.4.4 + +- Adapted to GLMakie 0.8 (`textsize` replaced by `fontsize` in src/makie.jl) + ### Version 0.4.3 - Minor improvements when printing a SignalTable. diff --git a/src/makie.jl b/src/makie.jl index c94c6db..d2a831f 100644 --- a/src/makie.jl +++ b/src/makie.jl @@ -333,10 +333,10 @@ function plot(result, names::AbstractMatrix; heading::AbstractString="", grid::B # Add overall heading in case of a matrix of diagrams (ncol > 1) and add a figure label on the top level if hasTopHeading - fig[0,:] = Label(fig, heading2, textsize = 14) + fig[0,:] = Label(fig, heading2, fontsize = 14) end if showFigureStringInDiagram - figText = fig[1,1,TopLeft()] = Label(fig, "showFigure(" * string(figure) * ")", textsize=9, color=:blue, halign = :left) + figText = fig[1,1,TopLeft()] = Label(fig, "showFigure(" * string(figure) * ")", fontsize=9, color=:blue, halign = :left) if hasTopHeading figText.padding = (0, 0, 5, 0) else