Closed AndiMD closed 3 years ago
I have the same issue with Julia v1.6.0 and v1.5.4
As a temp solution, downgrading the FileIO.jl
to v1.4.5
resolves the problem
OK, so it seems the solution is to either update to the new FileIO, or drop the idea of using FileIO to load QML completely. I'm leaning towards the latter, since FileIO seems like overkill here.
@barche Can you update the Documentation accordingly? The examples are broken....
My plan right now: release a new version with a proper compat limit on FileIO and deprecate load
in favour of loadqml
.
loadqml.... But... would that mean we have to make the qml files externally in our project, instead of temporarily writing them in Julia?
Also, any time period in sight for the update?
loadqml.... But... would that mean we have to make the qml files externally in our project, instead of temporarily writing them in Julia?
No, that method still uses the set_data
function.
Also, any time period in sight for the update?
I'd like to move to the new Qt5 packages in the same go, si I'll first sublit a Qt5Declarative package to Yggdrasil. Otherwise installing QML and the latest GR together might give headaches.
This should be fixed, so let's release a new version.
@JuliaRegistrator register
Registration pull request created: JuliaRegistries/General/33966
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
git tag -a v0.6.1 -m "<description of version>" db1f0f81d5c9f28d09288f03efbe529bc94804f4
git push origin v0.6.1
This is now fixed for Julia 1.5. Note that for Julia 1.6 issue #112 remains, that will require a rebuild of jlqml.
Hi,
a recent
]update
of my packages renderedQML.jl
broken. I also updated from Julia 1.5.3 to 1.5.4.Versions: [5789e2e9] FileIO v1.6.4 [91a5bcdd] Plots v1.11.0 [2db162a6] QML v0.6.0
Julia Version 1.5.4 Commit 69fcb5745b (2021-03-11 19:13 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) CPU: Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-9.0.1 (ORCJIT, haswell) Environment: JULIA_EDITOR = vim JULIA_NUM_THREADS = 4
This has also been reported on StackOverflow: https://stackoverflow.com/questions/66650868/qml-jl-no-applicable-loaders-found-for-qml
Thanks, Andreas