fix app icon in nuitka build process and remove settings pngs

This commit is contained in:
2026-02-17 00:10:30 +01:00
parent 7aee2bcfe9
commit 544733ce6b
3 changed files with 11 additions and 0 deletions
+11
View File
@@ -100,6 +100,17 @@ jobs:
echo "UPX_BINARY=$UPX_DIR/upx.exe" >> $GITHUB_ENV echo "UPX_BINARY=$UPX_DIR/upx.exe" >> $GITHUB_ENV
upx --version | head -1 upx --version | head -1
- name: Convert icon for Windows
if: runner.os == 'Windows'
shell: bash
run: |
python -c "
from PIL import Image
img = Image.open('src/core/interface/assets/logo.png')
img.save('app_icon.ico', format='ICO', sizes=[(256,256),(128,128),(64,64),(48,48),(32,32),(16,16)])
print('Icon converted successfully')
"
- name: Build with Nuitka (Windows) - name: Build with Nuitka (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'
shell: bash shell: bash
Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB