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 5558053 commit 2a0675dCopy full SHA for 2a0675d
3 files changed
.github/workflows/pyinstaller-linux.yml
@@ -13,7 +13,7 @@ jobs:
13
- name: Install System Dependencies
14
uses: awalsh128/cache-apt-pkgs-action@latest
15
with:
16
- 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
17
version: 0
18
- name: Install PyInstaller
19
run: pip install pyinstaller
pyinstaller/yafi.ico
146 KB
pyinstaller/yafi.spec
@@ -24,8 +24,9 @@ splash = Splash(
24
'splash.png',
25
binaries=a.binaries,
26
datas=a.datas,
27
- text_pos=[4, 480],
28
- text_size=6,
+ text_pos=(4, 480),
+ # Text doesn't scale on Linux, but does on Windows
29
+ text_size=12 if os.name == 'nt' else 6,
30
minify_script=True,
31
always_on_top=True,
32
)
0 commit comments