Feng Yu
Feng Yu
Yeah. You're right. I have considered replacing linuxdeployqt before, because linuxdeployqt is currently lacking maintenance, and the author's focus has shifted to [go-appimage](https://github.com/probonopd/go-appimage). I have also reviewed go-appimage before. It's...
`-extra-plugis` is used to exclude the libs that the UI component libraries directly or transitive depends on (like libX11, gtk, wayland and so on). To minimize dependencies, I used `readelf...
> For the appimage to still be small building should be shifted to a alpine container instead and deploy everything to still make it work on glibc systems Yeah. I've...
@Samueru-sama Hmm. Interesting. Looks amazing. But currently I'm busy on other jobs in hand. I didn't have much time to do a lot of refactor of the `build_appimage.sh` script. It...
I've noticed this project before and had plans to migrate to this tool. But at that time, `go-appimage` didn't fully support all the features of `linuxdeployqt`, so I never migrated...
> I normally would make the https://github.com/hrydgard/ppsspp/pull/19283 with the changes, but I noticed your CI is quite complex. 👀 In fact linuxdeployqt only in these lines, so you can update...
I try to switch to `go-appimage` but I still got some issues. First this does not support `exclude-libs` like `linuxdeployqt`, and it does not bundle qt TLS backend correctly. Will...
Yes. This should break the zsync. And I don't think we should easily migrate to go-appimage now. Since go-appimage does not support like linuxdeployqt features: https://github.com/probonopd/go-appimage/issues/291
I have the same issue before. I found linuxdeployqt does not bundle ssl plugin for some reason. So I have to add `-extra-plugins=tls` to fix this issue, and also add...
@app4soft Try to modify these lines: https://github.com/leozide/leocad/blob/bf3f1d5db8ae0eecf194ac5178a5a12db5d3808b/appveyor.yml#L92-L95 before: ```yml - ./linuxdeployqt*.AppImage ./AppDir/usr/share/applications/*.desktop -bundle-non-qt-libs - ./linuxdeployqt*.AppImage --appimage-extract - export PATH=$(readlink -f ./squashfs-root/usr/bin/):$PATH - ./squashfs-root/usr/bin/appimagetool AppDir/ ``` after: ```yml - | cat...