diff --git a/.github/workflows/pyinstaller-linux.yml b/.github/workflows/pyinstaller-linux.yml index 8e7af13..142df08 100644 --- a/.github/workflows/pyinstaller-linux.yml +++ b/.github/workflows/pyinstaller-linux.yml @@ -13,7 +13,7 @@ jobs: - name: Install System Dependencies uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: python3-gi gir1.2-gtk-4.0 gir1.2-adw-1 libglib2.0-bin + packages: python3-gi gir1.2-gtk-4.0 gir1.2-adw-1 libglib2.0-bin python3-tk version: 0 - name: Install PyInstaller run: pip install pyinstaller diff --git a/pyinstaller/yafi.ico b/pyinstaller/yafi.ico index 4c0731b..5467df4 100755 Binary files a/pyinstaller/yafi.ico and b/pyinstaller/yafi.ico differ diff --git a/pyinstaller/yafi.spec b/pyinstaller/yafi.spec index 0d6d8ae..d4cc38d 100755 --- a/pyinstaller/yafi.spec +++ b/pyinstaller/yafi.spec @@ -24,8 +24,9 @@ splash = Splash( 'splash.png', binaries=a.binaries, datas=a.datas, - text_pos=[4, 480], - text_size=6, + text_pos=(4, 480), + # Text doesn't scale on Linux, but does on Windows + text_size=12 if os.name == 'nt' else 6, minify_script=True, always_on_top=True, )