-
released this
2026-07-15 00:51:55 +00:00 | 2 commits to main since this releaseRoot-cause fix for installs that appear to hang forever after the pkexec prompt.
Root cause
preflight()treated the systemwinepackage as a hard dependency and checked for it withcommand -v wine, even though the script had already resolved and verified its own patched Wine build ($WINE) a few lines earlier. On any machine without system Wine installed, this forced an unnecessarypkexec+pacman -S wine, pulling in a large multilib package that was never actually needed. Worse, the GUI only rendered output on newlines, but pacman/curl progress meters update via carriage return (\r) with no newline until a download finishes — so during that whole unneeded install, the GUI showed nothing and looked completely dead.Fixes
- Drop the system
winepackage from preflight dependency checks — the already-resolved custom build is verified separately, so no bogus system package install is triggered - GUI output reader now splits on
\ras well as\n, so progress-bar-style output (pacman, curl, etc.) streams live instead of being swallowed for minutes at a time fl_privileged_runand the root-side install-packages helper now print explicit before/after trace lines around any pkexec/sudo step, so a stuck privileged step is visible instead of silent
Builds on 1.1.0 (real success/failure reporting, live status line, Cancel button, Repair Wine Prefix).
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
FL_Studio_Linux_Setup-x86_64.AppImage
2 downloads ·
2026-07-15 00:52:34 +00:00 · 112 MiB
- Drop the system