From b1647d7a2083d4d8f3f6d2caee0b4822bacdd4dc Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:28:03 +0100 Subject: [PATCH] Fix Linux AppImage blank window on mesa 26+ / Arch / modern distros The AppImage bundled libwayland-egl.so.1 from ubuntu-22.04 which is incompatible with mesa 26's EGL implementation, causing: "Could not create default EGL display: EGL_BAD_PARAMETER. Aborting..." Fix: exclude all libwayland-* libs from the AppImage via LINUXDEPLOY_EXCLUDELIST so the app always uses the system's Wayland libraries. The dev binary already worked correctly since it uses system libs directly. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f36911..33626bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,6 +58,10 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} + # Exclude Wayland libs from AppImage — the bundled ubuntu-22.04 versions + # conflict with mesa 26+ on Arch/modern distros causing EGL_BAD_PARAMETER. + # System libs are always used instead (correct behaviour for Wayland). + LINUXDEPLOY_EXCLUDELIST: "libwayland-egl.so.1 libwayland-client.so.0 libwayland-cursor.so.0 libwayland-server.so.0" with: tagName: ${{ github.ref_name }} releaseName: Wrystr ${{ github.ref_name }}