Replies: 12 comments
-
Well, since it's lightweight, lots has been left out..Although I guess |
Beta Was this translation helpful? Give feedback.
-
@SimonDanisch BTW, I just checked the code in Makie.jl/MakieCore/src/attributes.jl Lines 110 to 122 in c373d3f Does this mean that lift alone, not the macro, should work ?
|
Beta Was this translation helpful? Give feedback.
-
@SimonDanisch While testing things around recipes, it seems that the |
Beta Was this translation helpful? Give feedback.
-
@SimonDanisch I just checked the code a bit for |
Beta Was this translation helpful? Give feedback.
-
Light Bump ! 👍 |
Beta Was this translation helpful? Give feedback.
-
We can definitely move |
Beta Was this translation helpful? Give feedback.
-
@SimonDanisch I think we can afford the |
Beta Was this translation helpful? Give feedback.
-
ATTRIBUTES pulls in DocStringExtensions.jl, which we may not want. |
Beta Was this translation helpful? Give feedback.
-
Sure, if it is pulling another dependency, that is not good, although basic recipes like |
Beta Was this translation helpful? Give feedback.
-
@SimonDanisch Do you have an example of this in the documentation ? I could not find one |
Beta Was this translation helpful? Give feedback.
-
Hi @SimonDanisch I read somewhere on the discourse I think, that you are close to updating things regarding recipes. Is there any news regarding this issue ? |
Beta Was this translation helpful? Give feedback.
-
Well, the new plotspec API is one part of the puzzle, another one will be the axis converts in #442 . |
Beta Was this translation helpful? Give feedback.
-
Unless I am mistaken,
MakieCore
is aimed at being the lightweight dependency package developpers should rely on when implementing specific recipes for their packages. Something alikeRecipesBase
forPlots.jl
.While trying to switch from
Makie
toMakieCore
as a dependency, I got an error showing that@lift
is not defined inMakieCore
, making use of observables surprinsingly impossible when relying onMakieCore
.A quick and dirty
idefined(MakieCore,lift)
returns afalse
, while the same onMakie
istrue
.Is there something I'm missing here ?
I'm on julia 1.8.0 using
Makie
v0.17.13 andMakieCore
v0.4.0Beta Was this translation helpful? Give feedback.
All reactions