| ▲ | Arrowmaster 4 hours ago | |
The author has obviously never tried Tauri on Linux. I've never seen one of their AppImages work correctly. Every project uses the upstream GitHub action to build binaries and it compiles dynamically linked binaries limited to the glibc from the Ubuntu 22 or 24 VM used. Xdg-open is often broken too from broken environment variables in the AppImages, so you can open a link in the default web browser. The entire build process needs reworked. | ||
| ▲ | s369610 26 minutes ago | parent | next [-] | |
I really wanted to use tauri instead of electron, but the libwebkit it uses on linux is just too slow for modern CSS/html, from memory I managed to get single digit fps just scrolling the components page of daisy-ui. I am holding on for when they get a servo integration. | ||
| ▲ | andai an hour ago | parent | prev | next [-] | |
I've been a lifelong Linux user, and this makes me sad. I don't know enough to comment about whether or not it's necessary, but any time I've tried to get anything working that wasn't updated recently, it was impossible. Well impossible is a bit strong, the process ranges from: - Find a forum post that links to some old .deb files and install them manually - Install a newer version of a dependency and then recompile from source code, after spending an hour or two updating the program so it works with the new version of the dependency because the dependency changed its API for no reason (that one's not a Linux problem per se, but it wouldn't be necessary if the old one still worked!) Better to download the Windows version and run it in WINE... | ||
| ▲ | dfabulich 2 hours ago | parent | prev | next [-] | |
It's like they always say: Win32 is the only stable ABI on Linux. | ||
| ▲ | ambicapter 2 hours ago | parent | prev | next [-] | |
Sadly, every time that one guy posts his personal finance app on HN I try it and every time tauri gives me trouble to build, and when I fix whatever build errors it gives me it basically opens up a blank window and the app doesn't work (He now offers a Docker image which I can't help but feel is related to these difficulties). | ||
| ▲ | WhyNotHugo 3 hours ago | parent | prev [-] | |
The idea of AppImages is neat, but the implementation is awful and rarely works (except perhaps on Ubuntu and Fedora and extremely similar scenarios). The main issue being that they're dynamically linked binaries, which is exactly what you want to avoid for their use case. Using packages from your favourite distribution is usually your best bet. | ||