You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
## [Unreleased]
4
4
5
+
- Added `font` attribute and fixed faulty selection in `scatter`. Scatter fonts can now be themed with `markerfont`. [#4832](https://github.com/MakieOrg/Makie.jl/pull/4832)
6
+
- Fixed categorical `cgrad` interpolating at small enough steps [#4858](https://github.com/MakieOrg/Makie.jl/pull/4858)
7
+
- Added `tricontour` plot, which plots contour lines, similar to `tricontourf`[#4795](https://github.com/MakieOrg/Makie.jl/pull/4795).
8
+
9
+
## [0.22.2] - 2025-02-26
10
+
11
+
- Added support for curvilinear grids in `contourf` (contour filled), where `x` and `y` are matrices (`contour` lines were added in [0.22.0]) [#4670](https://github.com/MakieOrg/Makie.jl/pull/4670).
5
12
- Updated WGLMakie's threejs version from 0.157 to 0.173, fixing some threejs bugs [#4809](https://github.com/MakieOrg/Makie.jl/pull/4809).
6
13
- Moved Axis3 clip planes slightly outside to avoid clipping objects on the border with 0 margin [#4742](https://github.com/MakieOrg/Makie.jl/pull/4742)
7
14
- Fixed an issue with transformations not propagating to child plots when their spaces only match indirectly. [#4723](https://github.com/MakieOrg/Makie.jl/pull/4723)
@@ -24,7 +31,12 @@
24
31
- Changed `inspectable` to be inherited from the parent scenes theme. [#4739](https://github.com/MakieOrg/Makie.jl/pull/4739)
25
32
- Reverted change to `poly` which disallowed 3D geometries from being plotted [#4738](https://github.com/MakieOrg/Makie.jl/pull/4738)
26
33
- Enabled autocompletion on Block types, e.g. `?Axis.xti...`[#4786](https://github.com/MakieOrg/Makie.jl/pull/4786)
27
-
- Added `tricontour` plot, which plots contour lines, similar to `tricontourf`[#4795](https://github.com/MakieOrg/Makie.jl/pull/4795).
34
+
- Added `dpi` metadata to all rendered png files, where `px_per_unit = 1` means 96dpi, `px_per_unit = 2` means 192dpi, and so on. This gives frontends a chance to show plain Makie png images with the correct scaling [#4812](https://github.com/MakieOrg/Makie.jl/pull/4812).
35
+
- Fixed issue with voxels not working correctly with `rotate!()`[#4824](https://github.com/MakieOrg/Makie.jl/pull/4824)
36
+
- Fixed issue with tick event not triggering in WGLMakie [#4818](https://github.com/MakieOrg/Makie.jl/pull/4818)
37
+
- Improved performance of some Blocks, mainly `Textbox` and `Menu`[#4821](https://github.com/MakieOrg/Makie.jl/pull/4821)
38
+
- Fixed issue with `PolarAxis` not considering tick visibility in protrusion calculations. [#4823](https://github.com/MakieOrg/Makie.jl/pull/4823)
39
+
- Fixed some plots failing to create Legend entries due to missing attributes [#4826](https://github.com/MakieOrg/Makie.jl/pull/4826)
28
40
29
41
## [0.22.1] - 2025-01-17
30
42
@@ -749,7 +761,8 @@ All other changes are collected [in this PR](https://github.com/MakieOrg/Makie.j
749
761
- Fixed rendering of `heatmap`s with one or more reversed ranges in CairoMakie, as in `heatmap(1:10, 10:-1:1, rand(10, 10))`[#1100](https://github.com/MakieOrg/Makie.jl/pull/1100).
750
762
- Fixed volume slice recipe and added docs for it [#1123](https://github.com/MakieOrg/Makie.jl/pull/1123).
Copy file name to clipboardExpand all lines: MakieCore/src/basic_plots.jl
+2
Original file line number
Diff line number
Diff line change
@@ -484,6 +484,8 @@ Plots a marker for each element in `(x, y, z)`, `(x, y)`, or `positions`.
484
484
marker_offset =Vec3f(0)
485
485
"Controls whether the model matrix (without translation) applies to the marker itself, rather than just the positions. (If this is true, `scale!` and `rotate!` will affect the marker."
486
486
transform_marker =false
487
+
"Sets the font used for character markers. Can be a `String` specifying the (partial) name of a font or the file path of a font file"
488
+
font =@inherit markerfont
487
489
"Optional distancefield used for e.g. font and bezier path rendering. Will get set automatically."
0 commit comments