Show the actual guidance in a single acknowledgement dialog instead of a generic OK prompt, and update alert-based installer instructions to use the new helper contract.
11 lines
679 B
Bash
11 lines
679 B
Bash
# shellcheck shell=bash disable=SC2154 # cache and WINEPREFIX are set by audiogame-manager
|
|
export WINEARCH="win64" # Migrated to wine64 with WINETRICKS_FORCE=1
|
|
export winVer="win7"
|
|
export winetricksSettings="vd=1024x768"
|
|
download "https://kaldobsky.com/audiogames/lunimals.zip"
|
|
install_wine_bottle sapi vb6run dx8vb quartz
|
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/lunimals" "${cache}/lunimals.zip"
|
|
wine 'c:\Program Files\lunimals\checkup.exe' /verysilent
|
|
add_launcher "c:\Program Files\lunimals\Lunimals.exe"
|
|
alert "Note: Lunimals installed. Once you start the game, you must press tab until you hear sapi on to get speech."
|