A ton of updates. We now have working 32 bit wine, Swamp installs and works, many other 32 bit games should as well. Improvements to the user interface both GUI and CLI. Tons of bug fixes. Not quite yet ready for mainstream testing, but getting closer.

This commit is contained in:
Storm Dragon
2025-08-07 20:18:11 -04:00
parent e5c6798c80
commit 9515c25ea3
130 changed files with 309 additions and 196 deletions

View File

@@ -250,23 +250,18 @@ agm_progressbox() {
beepPid=$!
fi
# Start visual progress dialog with auto-close
# Start visual progress dialog with auto-close, redirect stdin to prevent conflicts
yad --progress \
--title="$title" \
--text="$text" \
--auto-close \
--pulsate \
--width=400 \
--height=100 &
--height=100 </dev/null &
yadPid=$!
# Process command output
local lineCount=0
local lastLine="Starting..."
while IFS= read -r line; do
((lineCount++))
lastLine="$line"
done < <(stdbuf -oL cat)
# Pass through all input completely unchanged
cat
# Clean up background processes
cleanup_progress