Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ jobs:
libpng-dev \
qt6-base-private-dev \
libqt6svg6-dev \
qt6-xdgdesktopportal-platformtheme \
libxxf86vm-dev \
x11proto-xinerama-dev \
libfuse2
Expand Down
6 changes: 6 additions & 0 deletions Data/linux-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
# Add /usr/lib/ to LD_LIBRARY_PATH cause Ubuntu is dumb
export LD_LIBRARY_PATH="/usr/lib/:$LD_LIBRARY_PATH"

if dbus-send --session --print-reply --dest=org.freedesktop.portal.Desktop /org/freedesktop/portal/Desktop org.freedesktop.DBus.Peer.Ping > /dev/null 2>&1; then
# If we have a portal avilable, use the xdgdesktopportal
# platform theme to get native dialogs
export QT_QPA_PLATFORMTHEME=xdgdesktopportal
fi

if [[ $(env | grep -i wayland) ]]; then
# wxWidgets 3.14 is GTK3, which seemingly has an issue or two when
# running under Wayland. Explicitly setting this for Slippi avoids
Expand Down
Binary file added Tools/appimageupdatetool
Binary file not shown.
Binary file added Tools/linuxdeploy
Binary file not shown.
Binary file added Tools/linuxdeploy-plugin-qt-x86_64.AppImage
Binary file not shown.
Binary file added Tools/linuxdeploy-update-plugin
Binary file not shown.
2 changes: 1 addition & 1 deletion build-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LINUXDEPLOY_PATH="https://github.com/linuxdeploy/linuxdeploy/releases/download/c
LINUXDEPLOY_FILE="linuxdeploy-x86_64.AppImage"
LINUXDEPLOY_URL="${LINUXDEPLOY_PATH}/${LINUXDEPLOY_FILE}"

LINUXDEPLOY_QT_PLUGIN_PATH="https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/1-alpha-20240109-1"
LINUXDEPLOY_QT_PLUGIN_PATH="https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous"
LINUXDEPLOY_QT_PLUGIN_FILE="linuxdeploy-plugin-qt-x86_64.AppImage"
LINUXDEPLOY_QT_PLUGIN_URL="${LINUXDEPLOY_QT_PLUGIN_PATH}/${LINUXDEPLOY_QT_PLUGIN_FILE}"

Expand Down