Bart Janssens
Bart Janssens
This error occurs when multiple installations of Qt5 get loaded at the same time. The `/Users/jstickel/.julia/artifacts/ee74d003b12e6dd5f748e8cefb1688edbdfb184b/lib/QtCore.framework/Versions/5/QtCore` is the library from `Qt5Base_jll`, which gets pulled in by the latest GR. There...
> I am not familiar with CxxInternals, but AFAICT somewhere code like `cxxupcast(::Type{MoreConcrete}, ...)` gets generted? Could that be accompanied by `Base.convert(::Type{MoreConcrete}, ...) = cxxupcast`? Yes, the `cxxupcast` method gets...
It seems redefining the convert method signature as follows fixes this. No idea why, it feels like a dubious trick. See PR #334 ```julia function Base.convert(::Type{T1}, p::SmartPointer{T2}) where {T1, T2
The plan is to move the Makie support into a separate package. I don't think it's a simple fix to upgrade. Having a separate package will allow us to formally...
Upgrading to CxxWrap 0.15 requires rebuilding also the `jlqml` binary component against the latest `libcxxwrap-julia`. I'll take the opportunity to first deal with #195 .
Thanks, I share your frustration and didn't know about this solution. Exposing `clearComponentCache` should be easy, I'll take a look.
Is this all it takes to support the latest Makie? If so, that would be great news :)
The current situation regarding visual design of QML interfaces is described here: https://doc.qt.io/qtcreator/creator-qtquickdesigner-plugin.html So it is indeed possible to use Qt Creator, but the newer Qt Design Studio is recommended...
Qt Widgets will never be supported by this package. QML has very good support for both mobile and desktop apps and with Qt 6 the matching of a QML application...
Instead of using cleanup directly, you should exit the REPL. After running `exec_async`, a new REPL is actually started, so exiting that one will bring you back to the original...