-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't load webviews #11
Comments
Hi, this is a known issue related to JuliaLang/julia#45582 That's why Julia 1.9 is required on Linux platforms right now. I guess it won't be backported to 1.8 since 1.9 is about to be released soon. |
Ah by the way, it is just too much work to do to build and maintain the libraries by ourselves. Only Linux needs users to install the dependency manually, and you probably don't want to use WebView with other GUI libraries (especially those involved in window management) together right now? |
I certainly don't need anything complicated. But I don't know if I want to depend on a package that isn't using JLLs because I'm worried I might get issue reports I have no hope of fixing. My understanding is that BinaryBuilder.jl is pretty easy. I may give it a try if possible. |
BTW I forgot to say, thanks for trying out this package 😄 Actually, my original intention was to build JLLs with BinaryBuilder.jl for WebKitGTK. But it has so many dependencies that need to be provided as JLL as well. To give you a sense of what it's like: $ ldd /usr/lib64/libwebkit2gtk-4.0.so.37 | wc -l
130 And I guess maybe someone has been working on it (JuliaPackaging/Yggdrasil#5231) Besides, users won't have to install anything manually if they are using Windows/macOS, because they both provide system-wide webview libraries by default. |
Fair enough! I will upgrade to 1.9 and see if I can get my table viewing package working. |
Nice. I had a look at But if you only want to use |
it is a nice package! Much more responsive than Blink.jl. Unfortunately I can't seem to get TableView.jl to work with it. I keep running into "WebIO not found" errors and I don't have enough experience with web technologies to debug. I don't think this is a knock against your package, only that the ecosystem on the TableView side is complicated and I don't really understand it. |
Thanks! Oh they used WebIO! It would be definitely interesting if this package was made compatible with it. It can be done directly or by making a new package to handle WebIO input. I'll take note and maybe look into it in the future. In you case, perhaps you can try to find a way to convert WebIO's |
WebIO is now supported. |
I'm interested in using this package to replace Blink.jl in my package FloatingTableView.jl.
But I can't get it to work.
This is after installing via the command in the readme (Ubuntu 22) and calling
build
.Thanks!
How hard would it be to just use BinaryBuilder and JLLs for everything?
The text was updated successfully, but these errors were encountered: