We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a52d0 commit b75fecfCopy full SHA for b75fecf
1 file changed
.github/workflows/build_release.yml
@@ -90,6 +90,8 @@ jobs:
90
run: |
91
sudo apt-get update
92
sudo apt-get install -y python3-tk imagemagick
93
+ # Install PyQt6 system dependencies to avoid PyInstaller warnings/errors
94
+ sudo apt-get install -y libxcb-cursor0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-shape0 libxcb-xkb1 libxcb-util1 libxkbcommon-x11-0
95
96
- name: Build with PyInstaller (Windows)
97
if: runner.os == 'Windows'
@@ -138,6 +140,7 @@ jobs:
138
140
echo "Exec=wasp-app" >> AppDir/wasp.desktop
139
141
echo "Icon=wasp" >> AppDir/wasp.desktop
142
echo "Type=Application" >> AppDir/wasp.desktop
143
+ echo "Categories=Utility;" >> AppDir/wasp.desktop
144
145
# Icon
146
if [ -f icon.ico ]; then convert icon.ico AppDir/wasp.png; else touch AppDir/wasp.png; fi
0 commit comments