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:
@@ -6,12 +6,35 @@ get_bottle() {
|
|||||||
architecture="${architecture/win/}"
|
architecture="${architecture/win/}"
|
||||||
export WINEPREFIX="$HOME/.local/wine${architecture}"
|
export WINEPREFIX="$HOME/.local/wine${architecture}"
|
||||||
|
|
||||||
# Set wine executables based on architecture
|
# Set wine executables based on architecture - FOR LAUNCHER
|
||||||
if [[ "$architecture" == "32" ]] && [[ -n "$wine32" ]]; then
|
if [[ "$architecture" == "32" ]] && [[ -n "$wine32" ]]; then
|
||||||
|
# Set environment variables for winetricks compatibility
|
||||||
export WINE="$wine32"
|
export WINE="$wine32"
|
||||||
export WINESERVER="$wine32server"
|
export WINESERVER="$wine32server"
|
||||||
|
# Also prepend to PATH for regular wine calls
|
||||||
|
export PATH="${wine32%/*}:$PATH"
|
||||||
|
# Unset WINEARCH to avoid conflicts with system wine
|
||||||
|
unset WINEARCH
|
||||||
|
echo "DEBUG: Using managed wine32 for LAUNCHER (WINE=$WINE, PATH updated, WINEARCH unset)"
|
||||||
else
|
else
|
||||||
unset WINE WINESERVER # Use system defaults
|
# Clear wine variables for system wine
|
||||||
|
unset WINE WINESERVER WINEARCH
|
||||||
|
echo "DEBUG: Using system wine for LAUNCHER (architecture $architecture)"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Set wine environment for installation (called from install_wine_bottle)
|
||||||
|
set_wine_env() {
|
||||||
|
local architecture="$1"
|
||||||
|
if [[ "$architecture" == "32" ]] && [[ -n "$wine32" ]]; then
|
||||||
|
export WINE="$wine32"
|
||||||
|
export WINESERVER="$wine32server"
|
||||||
|
export PATH="${wine32%/*}:$PATH"
|
||||||
|
unset WINEARCH
|
||||||
|
echo "DEBUG: Set wine32 environment for INSTALLATION (WINE=$WINE)"
|
||||||
|
else
|
||||||
|
unset WINE WINESERVER WINEARCH
|
||||||
|
echo "DEBUG: Set system wine environment for INSTALLATION"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,13 +104,15 @@ install_rhvoice() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
install_wine_bottle() {
|
install_wine_bottle() {
|
||||||
# Respect explicit WINEARCH settings, otherwise default to wine64
|
# Simplified - bottles are now pre-created with dependencies
|
||||||
|
# Just set up the wine environment for game installation
|
||||||
|
|
||||||
|
# Determine architecture from WINEARCH or speechsdk dependency
|
||||||
if [[ -z "$WINEARCH" ]]; then
|
if [[ -z "$WINEARCH" ]]; then
|
||||||
# Default behavior: wine32 only for legacy speechsdk, wine64 for everything else
|
|
||||||
if [[ "$*" =~ speechsdk ]]; then
|
if [[ "$*" =~ speechsdk ]]; then
|
||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
else
|
else
|
||||||
export WINEARCH="win64"
|
export WINEARCH="win64"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -101,63 +126,40 @@ install_wine_bottle() {
|
|||||||
|
|
||||||
export WINEPREFIX="$HOME/.local/wine${architecture}"
|
export WINEPREFIX="$HOME/.local/wine${architecture}"
|
||||||
|
|
||||||
# Check if bottle already exists and is properly initialized
|
# Set wine environment
|
||||||
local bottleExists=false
|
set_wine_env "$architecture"
|
||||||
if [[ -d "$WINEPREFIX" ]] && [[ -f "$WINEPREFIX/system.reg" ]] && [[ -f "$WINEPREFIX/user.reg" ]]; then
|
|
||||||
bottleExists=true
|
|
||||||
echo "Using existing wine${architecture} bottle at $WINEPREFIX"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Only do basic setup if bottle doesn't exist
|
echo "Using pre-configured wine${architecture} bottle at $WINEPREFIX"
|
||||||
if [[ "$bottleExists" == false ]]; then
|
|
||||||
echo -n "Creating new wine${architecture} bottle - Using "
|
# Install any additional game-specific dependencies if specified
|
||||||
wine --version
|
if [[ $# -gt 0 ]]; then
|
||||||
DISPLAY="" wine wineboot -u | agm_progressbox "Wine Setup" "Initializing wine bottle..."
|
# Filter out dependencies that are already installed in bottle creation
|
||||||
|
local depsToInstall=()
|
||||||
|
local alreadyInstalled="speechsdk corefonts isolate_home"
|
||||||
|
|
||||||
# Install mono and gecko only for new bottles
|
for dep in "$@"; do
|
||||||
monoPath="$(find /usr/share/wine/ -maxdepth 1 -type d -name mono 2> /dev/null)"
|
# Skip dependencies already installed during bottle creation
|
||||||
geckoPath="$(find /usr/share/wine/ -maxdepth 1 -type d -name "gecko" 2> /dev/null)"
|
if [[ ! " $alreadyInstalled " =~ " $dep " ]] && [[ ! "$dep" =~ ^win(7|8|10)$ ]]; then
|
||||||
if [[ -z "$monoPath" ]]; then
|
depsToInstall+=("$dep")
|
||||||
download 'http://dl.winehq.org/wine/wine-mono/6.0.0/wine-mono-6.0.0-x86.msi'
|
fi
|
||||||
monoPath="${cache}/wine-mono-6.0.0-x86.msi"
|
done
|
||||||
|
|
||||||
|
if [[ ${#depsToInstall[@]} -gt 0 ]]; then
|
||||||
|
echo "Installing additional dependencies: ${depsToInstall[*]}"
|
||||||
|
{
|
||||||
|
env WINE="$WINE" WINESERVER="$WINESERVER" DISPLAY="${DISPLAY:-:0}" winetricks -q isolate_home "${depsToInstall[@]}" "${winVer:-win7}" ${winetricksSettings}
|
||||||
|
} | agm_progressbox "Wine Setup" "Installing additional dependencies..."
|
||||||
fi
|
fi
|
||||||
if [[ -z "$geckoPath" ]]; then
|
|
||||||
download 'http://dl.winehq.org/wine/wine-gecko/2.40/wine_gecko-2.40-x86.msi'
|
|
||||||
geckoPath="${cache}/wine_gecko-2.40-x86.msi"
|
|
||||||
fi
|
|
||||||
wine msiexec /i z:"$monoPath" /quiet | agm_progressbox "Wine Setup" "Installing .NET Framework..."
|
|
||||||
wine msiexec /i z:"$geckoPath" /quiet | agm_progressbox "Wine Setup" "Installing Web Browser support..."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Install RHVoice only if needed and not already installed
|
|
||||||
if [[ "${*}" =~ (speechsdk|sapi) ]]; then
|
|
||||||
install_rhvoice
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup nvda2speechd for wine64 bottles (only once)
|
|
||||||
if [[ "${WINEARCH}" == "win64" ]]; then
|
|
||||||
download "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd"
|
|
||||||
if [[ ! -f "${XDG_DATA_HOME:-$HOME/.local/share}/audiogame-manager/nvda2speechd" ]]; then
|
|
||||||
cp "${cache}/nvda2speechd" "${XDG_DATA_HOME:-$HOME/.local/share}/audiogame-manager/nvda2speechd"
|
|
||||||
chmod +x "${XDG_DATA_HOME:-$HOME/.local/share}/audiogame-manager/nvda2speechd"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Install winetricks dependencies - this is more complex to optimize
|
|
||||||
# For now, let winetricks handle checking if packages are already installed
|
|
||||||
if [[ $# -gt 0 ]] || [[ -n "${winVer}" ]] || [[ -n "${winetricksSettings}" ]]; then
|
|
||||||
winetricks -q isolate_home "$@" "${winVer:-win7}" ${winetricksSettings} | agm_progressbox "Wine Setup" "Installing wine dependencies..."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set default voice for speech-enabled games (only if not already set)
|
|
||||||
if [[ ${#defaultVoice} -ge 2 ]] && [[ "$*" =~ (speechsdk|sapi) ]]; then
|
|
||||||
echo "Setting default voice for wine${architecture}."
|
|
||||||
"${0%/*}/speech/set-voice.sh" -b "wine${architecture}" -r "${defaultRate:-7}" -v "${defaultVoice}"
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
add_launcher() {
|
add_launcher() {
|
||||||
local launchSettings="${WINEARCH:-win64}|${1}|${game}"
|
# Determine architecture from WINEPREFIX path instead of WINEARCH variable
|
||||||
|
local architecture="win64" # default
|
||||||
|
if [[ "$WINEPREFIX" =~ wine32 ]]; then
|
||||||
|
architecture="win32"
|
||||||
|
fi
|
||||||
|
local launchSettings="${architecture}|${1}|${game}"
|
||||||
shift
|
shift
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
launchSettings+="|$1"
|
launchSettings+="|$1"
|
||||||
|
@@ -250,23 +250,18 @@ agm_progressbox() {
|
|||||||
beepPid=$!
|
beepPid=$!
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Start visual progress dialog with auto-close
|
# Start visual progress dialog with auto-close, redirect stdin to prevent conflicts
|
||||||
yad --progress \
|
yad --progress \
|
||||||
--title="$title" \
|
--title="$title" \
|
||||||
--text="$text" \
|
--text="$text" \
|
||||||
--auto-close \
|
--auto-close \
|
||||||
--pulsate \
|
--pulsate \
|
||||||
--width=400 \
|
--width=400 \
|
||||||
--height=100 &
|
--height=100 </dev/null &
|
||||||
yadPid=$!
|
yadPid=$!
|
||||||
|
|
||||||
# Process command output
|
# Pass through all input completely unchanged
|
||||||
local lineCount=0
|
cat
|
||||||
local lastLine="Starting..."
|
|
||||||
while IFS= read -r line; do
|
|
||||||
((lineCount++))
|
|
||||||
lastLine="$line"
|
|
||||||
done < <(stdbuf -oL cat)
|
|
||||||
|
|
||||||
# Clean up background processes
|
# Clean up background processes
|
||||||
cleanup_progress
|
cleanup_progress
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "https://blindgamers.com/downloads/a-heros-call-freeware.zip" "https://stormgames.wolfe.casa/downloads/nvdaControllerClient32.dll"
|
download "https://blindgamers.com/downloads/a-heros-call-freeware.zip" "https://stormgames.wolfe.casa/downloads/nvdaControllerClient32.dll"
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
install_wine_bottle speechsdk corefonts
|
install_wine_bottle
|
||||||
# Dotnet is evil. That is all.
|
# Dotnet is evil. That is all.
|
||||||
LC_ALL=C DISPLAY="" winetricks -q dotnet462 xna40
|
LC_ALL=C DISPLAY="" winetricks -q dotnet462 xna40
|
||||||
wineserver -k # Really!
|
wineserver -k # Really!
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://agarchive.net/games/mt/adrian's%20doom.exe"
|
download "https://agarchive.net/games/mt/adrian's%20doom.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/adrian's doom.exe" /silent
|
wine "${cache}/adrian's doom.exe" /silent
|
||||||
add_launcher "c:\Program Files\Two Caring Citizens\Adrian's Doom!\adrian.exe"
|
add_launcher "c:\Program Files\Two Caring Citizens\Adrian's Doom!\adrian.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
download "http://www.vgstorm.com/aac/aac.zip" "https://www.agarchive.net/games/vg/adventure%20at%20c%20stages.7z"
|
download "http://www.vgstorm.com/aac/aac.zip" "https://www.agarchive.net/games/vg/adventure%20at%20c%20stages.7z"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/aac" "${cache}/aac.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/aac" "${cache}/aac.zip"
|
||||||
install_with_progress 7z "Extracting game files..." x -o"$WINEPREFIX/drive_c/Program Files/aac/stages" "${cache}/adventure at c stages.7z"
|
install_with_progress 7z "Extracting game files..." x -o"$WINEPREFIX/drive_c/Program Files/aac/stages" "${cache}/adventure at c stages.7z"
|
||||||
add_launcher "c:\Program Files\aac\aac.exe"
|
add_launcher "c:\Program Files\aac\aac.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "http://download.dracoent.com/Windows/classic/AOSetup.exe"
|
download "http://download.dracoent.com/Windows/classic/AOSetup.exe"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/AOSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/AOSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/AOSetup.exe" /sp- /silent
|
wine "c:/windows/temp/AOSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/AOSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/AOSetup.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://erion.cf/files/ag_103.zip"
|
download "https://erion.cf/files/ag_103.zip"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/Angel Gift" "$cache/ag_103.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/Angel Gift" "$cache/ag_103.zip"
|
||||||
add_launcher 'c:\Program Files\Angel Gift\ag.exe'
|
add_launcher 'c:\Program Files\Angel Gift\ag.exe'
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmQiocMpMXoxejDftKKvmrR5xxpj1qcWcgkhBBwTcyijXg?filename=FPB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmQiocMpMXoxejDftKKvmrR5xxpj1qcWcgkhBBwTcyijXg?filename=FPB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/FPB32Setup10a.exe" /silent
|
wine "${cache}/FPB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\FifteenB\FifteenB.exe"
|
add_launcher "c:\Program Files\Games\FifteenB\FifteenB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmPNt3c78UBgEMrTH3eJ5eD2mCMdth6jwes1iDKGW24Uj5?filename=BG204832Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmPNt3c78UBgEMrTH3eJ5eD2mCMdth6jwes1iDKGW24Uj5?filename=BG204832Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BG204832Setup10a.exe" /silent
|
wine "${cache}/BG204832Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\BG2048B\BG2048.exe"
|
add_launcher "c:\Program Files\Games\BG2048B\BG2048.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmTshtHBEV9dh7wFtaQpNUEYHZ3fBpuhSRZqc7k8HwmtPM?filename=ASB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmTshtHBEV9dh7wFtaQpNUEYHZ3fBpuhSRZqc7k8HwmtPM?filename=ASB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/ASB32Setup10.exe" /silent
|
wine "${cache}/ASB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\AcesUpB\AcesUpB.exe"
|
add_launcher "c:\Program Files\Games\AcesUpB\AcesUpB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/Qma76HXBhmKgMDeHH1XLePsaWzzzLsBS2HRL3c7MVwDokg?filename=BAC32Setup10.exe"
|
download "${ipfsGateway}/ipfs/Qma76HXBhmKgMDeHH1XLePsaWzzzLsBS2HRL3c7MVwDokg?filename=BAC32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BAC32Setup10.exe" /silent
|
wine "${cache}/BAC32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\AlchemyB\AlchemyB.exe"
|
add_launcher "c:\Program Files\Games\AlchemyB\AlchemyB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/Qmaq9P9fxdLTEFMGg4mhHrRuUbPg6HgU3eYVJNqZUimHjo?filename=BGB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/Qmaq9P9fxdLTEFMGg4mhHrRuUbPg6HgU3eYVJNqZUimHjo?filename=BGB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGB32Setup10.exe" /silent
|
wine "${cache}/BGB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\BattleshipB\BGBattleship.exe"
|
add_launcher "c:\Program Files\Games\BattleshipB\BGBattleship.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmQwWiJw9hDiPdfwDyL4XepeoD66ztVRi3HwbSjFFP4CNg?filename=BGB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmQwWiJw9hDiPdfwDyL4XepeoD66ztVRi3HwbSjFFP4CNg?filename=BGB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGB32Setup10a.exe" /silent
|
wine "${cache}/BGB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\BoggleB\BoggleB.exe"
|
add_launcher "c:\Program Files\Games\BoggleB\BoggleB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmRn21tREXxXVSaDe9i54zEPzPSespjJAFBqu4DWocuagD?filename=BXB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmRn21tREXxXVSaDe9i54zEPzPSespjJAFBqu4DWocuagD?filename=BXB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BXB32Setup10.exe" /silent
|
wine "${cache}/BXB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\BoxesB\BoxesB.exe"
|
add_launcher "c:\Program Files\Games\BoxesB\BoxesB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmWEdmTkQsjSqBgWUgnDajMf8QvQBbEF4Nxo6mhkXYzBtQ?filename=BRN32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmWEdmTkQsjSqBgWUgnDajMf8QvQBbEF4Nxo6mhkXYzBtQ?filename=BRN32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BRN32Setup10a.exe" /silent
|
wine "${cache}/BRN32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\BrainiacB\BrainiacB.exe"
|
add_launcher "c:\Program Files\Games\BrainiacB\BrainiacB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmT2yBpU5Jqna18FxYtyWzi4xMGAY9PyJWStAskxCHqBDw?filename=BGC32Setup10d.exe"
|
download "${ipfsGateway}/ipfs/QmT2yBpU5Jqna18FxYtyWzi4xMGAY9PyJWStAskxCHqBDw?filename=BGC32Setup10d.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGC32Setup10d.exe" /silent
|
wine "${cache}/BGC32Setup10d.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\ChessB\BGChess.exe"
|
add_launcher "c:\Program Files\Games\ChessB\BGChess.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmU486SssAdM7kPKwDyAKDLQs3Z92bG6wFjaLhzqDZCxAF?filename=BCB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmU486SssAdM7kPKwDyAKDLQs3Z92bG6wFjaLhzqDZCxAF?filename=BCB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BCB32Setup10.exe" /silent
|
wine "${cache}/BCB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\CodeBreakerB\BGCodeBreaker.exe"
|
add_launcher "c:\Program Files\Games\CodeBreakerB\BGCodeBreaker.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmbRUiknnNcibWD3NwK4DFZGNHWswBgsFidUzU1TFGJ5Ra?filename=BCS32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmbRUiknnNcibWD3NwK4DFZGNHWswBgsFidUzU1TFGJ5Ra?filename=BCS32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BCS32Setup10.exe" /silent
|
wine "${cache}/BCS32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\CribSolB\CribSolB.exe"
|
add_launcher "c:\Program Files\Games\CribSolB\CribSolB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmeFud3EPHy7wQe8UENgvh96HdAazEkwqA2AutCNkYvB3t?filename=BGC32Setup12e.exe"
|
download "${ipfsGateway}/ipfs/QmeFud3EPHy7wQe8UENgvh96HdAazEkwqA2AutCNkYvB3t?filename=BGC32Setup12e.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGC32Setup12e.exe" /silent
|
wine "${cache}/BGC32Setup12e.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\CribbageB\CribbageB.exe"
|
add_launcher "c:\Program Files\Games\CribbageB\CribbageB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmZQGY9CeATEiWrSqsKBz4AN6jPgQuvbBZSpQoLiMjoDr2?filename=BGX32Setup10h.exe"
|
download "${ipfsGateway}/ipfs/QmZQGY9CeATEiWrSqsKBz4AN6jPgQuvbBZSpQoLiMjoDr2?filename=BGX32Setup10h.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGX32Setup10h.exe" /silent
|
wine "${cache}/BGX32Setup10h.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\CrosswordB\CrosswordB.exe"
|
add_launcher "c:\Program Files\Games\CrosswordB\CrosswordB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmZQGY9CeATEiWrSqsKBz4AN6jPgQuvbBZSpQoLiMjoDr2?filename=BDD32Setup.exe"
|
download "${ipfsGateway}/ipfs/QmZQGY9CeATEiWrSqsKBz4AN6jPgQuvbBZSpQoLiMjoDr2?filename=BDD32Setup.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BDD32Setup.exe" /silent
|
wine "${cache}/BDD32Setup.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\DrawDominoesB\DrawDominoesB.exe"
|
add_launcher "c:\Program Files\Games\DrawDominoesB\DrawDominoesB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmWWZByYL5CsDSi6gQLGcMyBL7zqD5hWXbPXJr3shRt5AQ?filename=ESB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmWWZByYL5CsDSi6gQLGcMyBL7zqD5hWXbPXJr3shRt5AQ?filename=ESB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/ESB32Setup10.exe" /silent
|
wine "${cache}/ESB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\ElevensB\ElevensB.exe"
|
add_launcher "c:\Program Files\Games\ElevensB\ElevensB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmSZt6dz7WQkNrFBmYq9n4WdYrrZyQAebTBPo46uHqCuNi?filename=BFD32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmSZt6dz7WQkNrFBmYq9n4WdYrrZyQAebTBPo46uHqCuNi?filename=BFD32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BFD32Setup10.exe" /silent
|
wine "${cache}/BFD32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\FivesDominoesB\FivesDominoesB.exe"
|
add_launcher "c:\Program Files\Games\FivesDominoesB\FivesDominoesB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmVfQMMnqTD9Zm8Xwv7rGrUTdS9FXToq7Fv6wtQQVgbQGR?filename=BGF32Setup20.exe"
|
download "${ipfsGateway}/ipfs/QmVfQMMnqTD9Zm8Xwv7rGrUTdS9FXToq7Fv6wtQQVgbQGR?filename=BGF32Setup20.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGF32Setup20.exe" /silent
|
wine "${cache}/BGF32Setup20.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\FreecellB\FreecellB.exe"
|
add_launcher "c:\Program Files\Games\FreecellB\FreecellB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmfAp9EYou1pndLwYSdpYdUCHBv2DR94oFccQh1ii9JVLD?filename=GSB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmfAp9EYou1pndLwYSdpYdUCHBv2DR94oFccQh1ii9JVLD?filename=GSB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/GSB32Setup10a.exe" /silent
|
wine "${cache}/GSB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\GolfSolitaireB\GolfSolitaireB.exe"
|
add_launcher "c:\Program Files\Games\GolfSolitaireB\GolfSolitaireB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXTPMmvw7JE2eLuPBLGSpkZqUn12TX7QEQZbX8qtp7GBx?filename=HMB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmXTPMmvw7JE2eLuPBLGSpkZqUn12TX7QEQZbX8qtp7GBx?filename=HMB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/HMB32Setup10.exe" /silent
|
wine "${cache}/HMB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\HangmanB\HangmanB.exe"
|
add_launcher "c:\Program Files\Games\HangmanB\HangmanB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmdU5ag1PRjvG28wNX7aNuJqZSVxaqEEKjgG6GoRoDT8k4?filename=BGH32Setup10b.exe"
|
download "${ipfsGateway}/ipfs/QmdU5ag1PRjvG28wNX7aNuJqZSVxaqEEKjgG6GoRoDT8k4?filename=BGH32Setup10b.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/${BGH32Setup10b.exe}" /silent
|
wine "${cache}/${BGH32Setup10b.exe}" /silent
|
||||||
add_launcher "c:\Program Files\Games\HeartsB\HeartsB.exe"
|
add_launcher "c:\Program Files\Games\HeartsB\HeartsB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmctBDvhQWwER94LvgauR7sMDxv9D1mS9cToV47orTCdzU?filename=BGK32Setup10b.exe"
|
download "${ipfsGateway}/ipfs/QmctBDvhQWwER94LvgauR7sMDxv9D1mS9cToV47orTCdzU?filename=BGK32Setup10b.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGK32Setup10b.exe" /silent
|
wine "${cache}/BGK32Setup10b.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\KlondikeB\KlondikeB.exe"
|
add_launcher "c:\Program Files\Games\KlondikeB\KlondikeB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/Qma5WeCC9B2P5abRGX9nGYV8Zi9F8vfCCr4ehejP2bgmNm?filename=LAP32Setup10.exe"
|
download "${ipfsGateway}/ipfs/Qma5WeCC9B2P5abRGX9nGYV8Zi9F8vfCCr4ehejP2bgmNm?filename=LAP32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/LAP32Setup10.exe" /silent
|
wine "${cache}/LAP32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\LAP\LAP.exe"
|
add_launcher "c:\Program Files\Games\LAP\LAP.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmP6cwMbirbBqAaG9JLfNRnD2dvJfh6nq74kfwxs5hN2RQ?filename=BMM32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmP6cwMbirbBqAaG9JLfNRnD2dvJfh6nq74kfwxs5hN2RQ?filename=BMM32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BMM32Setup10.exe" /silent
|
wine "${cache}/BMM32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\MastermindB\BGMasterMind.exe"
|
add_launcher "c:\Program Files\Games\MastermindB\BGMasterMind.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmRa54HroWjwxHYfKr6hdmP34sHW5G3ecuzcjMA5UBBVKa?filename=MSB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmRa54HroWjwxHYfKr6hdmP34sHW5G3ecuzcjMA5UBBVKa?filename=MSB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/MSB32Setup10.exe" /silent
|
wine "${cache}/MSB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\MinesweeperB\MinesweeperB.exe"
|
add_launcher "c:\Program Files\Games\MinesweeperB\MinesweeperB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/Qmb7eGTMDgiaDC9muMW9n8bHoistGcNm1VgHc6sr7dRyHU?filename=BNW32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/Qmb7eGTMDgiaDC9muMW9n8bHoistGcNm1VgHc6sr7dRyHU?filename=BNW32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BNW32Setup10a.exe" /silent
|
wine "${cache}/BNW32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\NomWhistB\NomWhistB.exe"
|
add_launcher "c:\Program Files\Games\NomWhistB\NomWhistB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXKvQ6WNNSnDiSyYmvAhZXVdALnuhUGK7dSMQVkQNReJr?filename=BPS32Setup10c.exe"
|
download "${ipfsGateway}/ipfs/QmXKvQ6WNNSnDiSyYmvAhZXVdALnuhUGK7dSMQVkQNReJr?filename=BPS32Setup10c.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BPS32Setup10c.exe" /silent
|
wine "${cache}/BPS32Setup10c.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\PenguinB\PenguinB.exe"
|
add_launcher "c:\Program Files\Games\PenguinB\PenguinB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmPLv74LiDgVGuiGhu9HuPhx3uoMm9QyCYk6jgeFUHjj3S?filename=BPS32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmPLv74LiDgVGuiGhu9HuPhx3uoMm9QyCYk6jgeFUHjj3S?filename=BPS32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BPS32Setup10.exe" /silent
|
wine "${cache}/BPS32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\PokerSolB\PokerSolB.exe"
|
add_launcher "c:\Program Files\Games\PokerSolB\PokerSolB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmaqXaBKD3xY2smhU2LcejXRTPnWZHqaTW9se8yRepLsHu?filename=PSB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmaqXaBKD3xY2smhU2LcejXRTPnWZHqaTW9se8yRepLsHu?filename=PSB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/PSB32Setup10a.exe" /silent
|
wine "${cache}/PSB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\PyramidB\PyramidB.exe"
|
add_launcher "c:\Program Files\Games\PyramidB\PyramidB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmSxJs2MiLQ61Fgx6vCpSD7GmQziLiCEU3sZ3mgWc7RsJ8?filename=BSS32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmSxJs2MiLQ61Fgx6vCpSD7GmQziLiCEU3sZ3mgWc7RsJ8?filename=BSS32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BSS32Setup10.exe" /silent
|
wine "${cache}/BSS32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\ScorpionB\ScorpionB.exe"
|
add_launcher "c:\Program Files\Games\ScorpionB\ScorpionB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmVrwyPdJBnmc4wLW7oT2hexxXnXxs8bA7gfiqbnJsWJ16?filename=BGS32Setup20.exe"
|
download "${ipfsGateway}/ipfs/QmVrwyPdJBnmc4wLW7oT2hexxXnXxs8bA7gfiqbnJsWJ16?filename=BGS32Setup20.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGS32Setup20.exe" /silent
|
wine "${cache}/BGS32Setup20.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\ScrabbleB\ScrabbleB.exe"
|
add_launcher "c:\Program Files\Games\ScrabbleB\ScrabbleB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXtBCqB6VCFPaDYuLaFNP1BDtJSLCJdJZzgm61zMtrsQt?filename=BGS32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmXtBCqB6VCFPaDYuLaFNP1BDtJSLCJdJZzgm61zMtrsQt?filename=BGS32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGS32Setup10.exe" /silent
|
wine "${cache}/BGS32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\SimonB\SimonB.exe"
|
add_launcher "c:\Program Files\Games\SimonB\SimonB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmdWBaDnLVbKCJSpiqF675ew6nJ6KHUVXA5FEH3t3E7UAu?filename=SPB32Setup10b.exe"
|
download "${ipfsGateway}/ipfs/QmdWBaDnLVbKCJSpiqF675ew6nJ6KHUVXA5FEH3t3E7UAu?filename=SPB32Setup10b.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/SPB32Setup10b.exe" /silent
|
wine "${cache}/SPB32Setup10b.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\SpiderB\SpiderB.exe"
|
add_launcher "c:\Program Files\Games\SpiderB\SpiderB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXCAHEVRGZBc8t45Jgn2vkxicwF9Aox6yz9XrQBdkv7WY?filename=SDB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmXCAHEVRGZBc8t45Jgn2vkxicwF9Aox6yz9XrQBdkv7WY?filename=SDB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/SDB32Setup10a.exe" /silent
|
wine "${cache}/SDB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\SudokuB\SudokuB.exe"
|
add_launcher "c:\Program Files\Games\SudokuB\SudokuB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmYoiFQ6JuSXfZfZXT3SQDsYzMWLBu9rW9yivi1xiPjqZx?filename=SDB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmYoiFQ6JuSXfZfZXT3SQDsYzMWLBu9rW9yivi1xiPjqZx?filename=SDB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/SDB32Setup10a.exe" /silent
|
wine "${cache}/SDB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\TabSolB\BGTabSol.exe"
|
add_launcher "c:\Program Files\Games\TabSolB\BGTabSol.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmWJGvSR6iaQfMHM3XuGCkWxx285jkzSDdNSvvk3bSCH8S?filename=TPB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmWJGvSR6iaQfMHM3XuGCkWxx285jkzSDdNSvvk3bSCH8S?filename=TPB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/TPB32Setup10a.exe" /silent
|
wine "${cache}/TPB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\TriPeaksB\TriPeaksB.exe"
|
add_launcher "c:\Program Files\Games\TriPeaksB\TriPeaksB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmWAk2TMHMvW6Kjc1sZBEPsxmCNHfY3nF1K723PCqaTa57?filename=T20B32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmWAk2TMHMvW6Kjc1sZBEPsxmCNHfY3nF1K723PCqaTa57?filename=T20B32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/T20B32Setup10.exe" /silent
|
wine "${cache}/T20B32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\T20CricketB\CricketB.exe"
|
add_launcher "c:\Program Files\Games\T20CricketB\CricketB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmVsfPkebSoTDwYSXF1n7y4P9eGJTgTcGXdrEjpcV8A3Dv?filename=BGU32Setup11a.exe"
|
download "${ipfsGateway}/ipfs/QmVsfPkebSoTDwYSXF1n7y4P9eGJTgTcGXdrEjpcV8A3Dv?filename=BGU32Setup11a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGU32Setup11a.exe" /silent
|
wine "${cache}/BGU32Setup11a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\UnoB\UnoB.exe"
|
add_launcher "c:\Program Files\Games\UnoB\UnoB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXtR49EZShyj15Tc9CXQpBYVmKNfZpp4515Epm16bviuH?filename=BWB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmXtR49EZShyj15Tc9CXQpBYVmKNfZpp4515Epm16bviuH?filename=BWB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BWB32Setup10.exe" /silent
|
wine "${cache}/BWB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordBuilderB\WordBuilderB.exe"
|
add_launcher "c:\Program Files\Games\WordBuilderB\WordBuilderB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmfTgfRzd4JMRqKSfDiz76iMorkaG19BqH1K7nRCCDwo4H?filename=WCB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmfTgfRzd4JMRqKSfDiz76iMorkaG19BqH1K7nRCCDwo4H?filename=WCB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/WCB32Setup10a.exe" /silent
|
wine "${cache}/WCB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordCandyB\WordCandyB.exe"
|
add_launcher "c:\Program Files\Games\WordCandyB\WordCandyB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmYQWZZifzKJSuVRCC1SabwRmEDz95GdFvbzRvsBMmTt6e?filename=BWJ32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmYQWZZifzKJSuVRCC1SabwRmEDz95GdFvbzRvsBMmTt6e?filename=BWJ32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BWJ32Setup10.exe" /silent
|
wine "${cache}/BWJ32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordJumbleB\WordJumbleB.exe"
|
add_launcher "c:\Program Files\Games\WordJumbleB\WordJumbleB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmXPtj5PkVZjXpU3m6FAfm8MwVL6bQCvhEDoR385u6FGTL?filename=BWM32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmXPtj5PkVZjXpU3m6FAfm8MwVL6bQCvhEDoR385u6FGTL?filename=BWM32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BWM32Setup10.exe" /silent
|
wine "${cache}/BWM32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordMazeB\WordMazeB.exe"
|
add_launcher "c:\Program Files\Games\WordMazeB\WordMazeB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmZp73ARDPqgnCz7zxfKeBHjNoHrgZSgg2NdQZR2sMyZGD?filename=WSB32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmZp73ARDPqgnCz7zxfKeBHjNoHrgZSgg2NdQZR2sMyZGD?filename=WSB32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/WSB32Setup10.exe" /silent
|
wine "${cache}/WSB32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordSolitaireB\WordSolitaireB.exe"
|
add_launcher "c:\Program Files\Games\WordSolitaireB\WordSolitaireB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmWWZFXVHNtmNkH55oermWWtrMcQ8qVqL687B7kGFyeezq?filename=WTB32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmWWZFXVHNtmNkH55oermWWtrMcQ8qVqL687B7kGFyeezq?filename=WTB32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/WTB32Setup10a.exe" /silent
|
wine "${cache}/WTB32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordTargetB\WordTargetB.exe"
|
add_launcher "c:\Program Files\Games\WordTargetB\WordTargetB.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmdicAVDegDktY3euVAC2PPn4YBGz96KedxYXNe4WDQaoq?filename=BWY32Setup10.exe"
|
download "${ipfsGateway}/ipfs/QmdicAVDegDktY3euVAC2PPn4YBGz96KedxYXNe4WDQaoq?filename=BWY32Setup10.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BWY32Setup10.exe" /silent
|
wine "${cache}/BWY32Setup10.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\WordYahtzeeB\BGWordYahtzee.exe"
|
add_launcher "c:\Program Files\Games\WordYahtzeeB\BGWordYahtzee.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export WINEARCH="win32"
|
export WINEARCH="win32"
|
||||||
download "${ipfsGateway}/ipfs/QmZebvkKgFAADnb1cgW6Bz7wTYdUh82X61QdtW66KcvmpF?filename=BGY32Setup10a.exe"
|
download "${ipfsGateway}/ipfs/QmZebvkKgFAADnb1cgW6Bz7wTYdUh82X61QdtW66KcvmpF?filename=BGY32Setup10a.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/BGY32Setup10a.exe" /silent
|
wine "${cache}/BGY32Setup10a.exe" /silent
|
||||||
add_launcher "c:\Program Files\Games\yahtzeeB\BGYahtzee.exe"
|
add_launcher "c:\Program Files\Games\yahtzeeB\BGYahtzee.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
download "https://www.agarchive.net/games/gameMadnessInteractive/battle%20zone%2013.5%20setup.exe"
|
download "https://www.agarchive.net/games/gameMadnessInteractive/battle%20zone%2013.5%20setup.exe"
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/battle zone 13.5 setup.exe" /silent
|
wine "${cache}/battle zone 13.5 setup.exe" /silent
|
||||||
add_launcher "c:\Program Files\Battle Zone\ss.exe"
|
add_launcher "c:\Program Files\Battle Zone\ss.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
download "http://files.tunmi13.com/projects_archive/bth.zip"
|
download "http://files.tunmi13.com/projects_archive/bth.zip"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/$game" "${cache}/bth.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/$game" "${cache}/bth.zip"
|
||||||
add_launcher "c:\Program Files\\${game}\bth.exe"
|
add_launcher "c:\Program Files\\${game}\bth.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "${ipfsGateway}/ipfs/QmcTCTMep4zp5zTw8ZaXYpjtu9inNPn8bNzwhW6cX97egw?filename=bloodshed.exe"
|
download "${ipfsGateway}/ipfs/QmcTCTMep4zp5zTw8ZaXYpjtu9inNPn8bNzwhW6cX97egw?filename=bloodshed.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
cp "${cache}/bloodshed.exe" "$WINEPREFIX/drive_c/Program Files/"
|
cp "${cache}/bloodshed.exe" "$WINEPREFIX/drive_c/Program Files/"
|
||||||
add_launcher "c:\Program Files\bloodshed.exe"
|
add_launcher "c:\Program Files\bloodshed.exe"
|
||||||
|
@@ -3,7 +3,7 @@ source "${0%/*}/../.includes/dialog-interface.sh"
|
|||||||
|
|
||||||
if [[ ! -r "${cache}/bk3-dict.dat" ]]; then
|
if [[ ! -r "${cache}/bk3-dict.dat" ]]; then
|
||||||
echo "http://www.nyanchangames.com/order/bk3translate.html" | xclip -selection clipboard 2> /dev/null
|
echo "http://www.nyanchangames.com/order/bk3translate.html" | xclip -selection clipboard 2> /dev/null
|
||||||
agm_msgbox "Bokurano Daibouken 3" "Bokurano Daibouken 3" "If you would like English translations, the file is available at http://www.nyanchangames.com/order/bk3translate.html. Save the dict.dat file to your Downloads or Desktop directory. For convenience the url has been copied to your clipboard. Press enter when you are ready to continue."
|
agm_msgbox "Bokurano Daibouken 3" "Bokurano Daibouken 3" "If you would like English translations, the file is available at http://www.nyanchangames.com/order/bk3translate.html. Save the dict.dat file to your Downloads or Desktop directory. For convenience the url has been copied to your clipboard. Press enter when you are ready to continue."
|
||||||
fi
|
fi
|
||||||
dictFile=""
|
dictFile=""
|
||||||
for i in "${HOME}/Downloads/dict.dat" "${HOME}/Desktop/dict.dat" ; do
|
for i in "${HOME}/Downloads/dict.dat" "${HOME}/Desktop/dict.dat" ; do
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
download "https://hirotaka2014.sakura.ne.jp/mh0406/game/breed_memorial.zip" "${nvdaControllerClientDll}"
|
download "https://hirotaka2014.sakura.ne.jp/mh0406/game/breed_memorial.zip" "${nvdaControllerClientDll}"
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle cjkfonts speechsdk
|
install_wine_bottle cjkfonts
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/" "${cache}/breed_memorial.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/" "${cache}/breed_memorial.zip"
|
||||||
add_launcher "c:\Program Files\Breed memorial\Breed memorial\breed memorial.exe"
|
add_launcher "c:\Program Files\Breed memorial\Breed memorial\breed memorial.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "http://www.kaldobsky.com/audiogames/castaways2beta.zip"
|
download "http://www.kaldobsky.com/audiogames/castaways2beta.zip"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/castaways2" "${cache}/castaways2beta.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/castaways2" "${cache}/castaways2beta.zip"
|
||||||
wine "c:\Program Files\castaways2\Checkup.exe" /verysilent
|
wine "c:\Program Files\castaways2\Checkup.exe" /verysilent
|
||||||
add_launcher "c:\Program Files\castaways2\Castaways2.exe"
|
add_launcher "c:\Program Files\castaways2\Castaways2.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "https://www.kaldobsky.com/audiogames/castaways.zip"
|
download "https://www.kaldobsky.com/audiogames/castaways.zip"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/castaways" "${cache}/castaways.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/castaways" "${cache}/castaways.zip"
|
||||||
wine "c:\Program Files\castaways\Checkup.exe" /verysilent
|
wine "c:\Program Files\castaways\Checkup.exe" /verysilent
|
||||||
add_launcher "c:\Program Files\castaways\Castaways.exe"
|
add_launcher "c:\Program Files\castaways\Castaways.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "https://download.dracoent.com/Windows/ChangeReactionSetup.exe"
|
download "https://download.dracoent.com/Windows/ChangeReactionSetup.exe"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/ChangeReactionSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/ChangeReactionSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/ChangeReactionSetup.exe" /sp- /silent
|
wine "c:/windows/temp/ChangeReactionSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/ChangeReactionSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/ChangeReactionSetup.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Freezes at menu
|
# Freezes at menu
|
||||||
download "https://www.agarchive.net/games/XSight/chopper%20challenge%20setup.exe"
|
download "https://www.agarchive.net/games/XSight/chopper%20challenge%20setup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
wine "${cache}/chopper challenge setup.exe" /silent &
|
wine "${cache}/chopper challenge setup.exe" /silent &
|
||||||
xdotool sleep 5 key y 2> /dev/null
|
xdotool sleep 5 key y 2> /dev/null
|
||||||
wineserver -w
|
wineserver -w
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
get_installer "clashes_of_the_sky.zip" "https://tunmi13.itch.io/clashes-of-the-sky"
|
get_installer "clashes_of_the_sky.zip" "https://tunmi13.itch.io/clashes-of-the-sky"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files" "${cache}/clashes_of_the_sky.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files" "${cache}/clashes_of_the_sky.zip"
|
||||||
add_launcher 'c:\Program Files\clashes_of_the_sky\clash.exe'
|
add_launcher 'c:\Program Files\clashes_of_the_sky\clash.exe'
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "https://renovagames.com/bc/BC-Setup.exe"
|
download "https://renovagames.com/bc/BC-Setup.exe"
|
||||||
install_wine_bottle cjkfonts speechsdk
|
install_wine_bottle cjkfonts
|
||||||
wine "${cache}/BC-Setup.exe" /silent
|
wine "${cache}/BC-Setup.exe" /silent
|
||||||
#add_launcher "c:\Program Files\"
|
#add_launcher "c:\Program Files\"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://www.agarchive.net/games/VIP/crazy%20tennis%20setup.exe"
|
download "https://www.agarchive.net/games/VIP/crazy%20tennis%20setup.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/crazy tennis setup.exe" /sp- /silent
|
wine "${cache}/crazy tennis setup.exe" /sp- /silent
|
||||||
add_launcher "c:\Program Files\Crazytennis\crazytennis.exe"
|
add_launcher "c:\Program Files\Crazytennis\crazytennis.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
download "http://oriolgomez.com/games/wheel_en.zip"
|
download "http://oriolgomez.com/games/wheel_en.zip"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/danger on the wheel" "${cache}/wheel_en.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/danger on the wheel" "${cache}/wheel_en.zip"
|
||||||
add_launcher "c:\Program Files\danger on the wheel\game.exe"
|
add_launcher "c:\Program Files\danger on the wheel\game.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# No custom bottle needed - use standard wine path based on architecture
|
# No custom bottle needed - use standard wine path based on architecture
|
||||||
download "https://www.agarchive.net/games/pb/Dark-Destroyer-Setup.exe"
|
download "https://www.agarchive.net/games/pb/Dark-Destroyer-Setup.exe"
|
||||||
install_wine_bottle speechsdk ie6
|
install_wine_bottle ie6
|
||||||
wine "$cache/Dark-Destroyer-Setup.exe" /silent
|
wine "$cache/Dark-Destroyer-Setup.exe" /silent
|
||||||
add_launcher 'c:\Pbgames\Dark_destroyer\darkdestroyer.exe'
|
add_launcher 'c:\Pbgames\Dark_destroyer\darkdestroyer.exe'
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://kaldobsky.com/audiogames/Daytona.zip"
|
download "https://kaldobsky.com/audiogames/Daytona.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/daytona" "${cache}/Daytona.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/daytona" "${cache}/Daytona.zip"
|
||||||
wine 'c:\Program Files\daytona\checkup.exe' /verysilent
|
wine 'c:\Program Files\daytona\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\daytona\Daytona.exe"
|
add_launcher "c:\Program Files\daytona\Daytona.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.agarchive.net/games/realitySoftware/death%20match%20project%20alpha%20setup.exe"
|
download "https://www.agarchive.net/games/realitySoftware/death%20match%20project%20alpha%20setup.exe"
|
||||||
install_wine_bottle quartz speechsdk
|
install_wine_bottle quartz
|
||||||
wine "${cache}/death match project alpha setup.exe" /silent
|
wine "${cache}/death match project alpha setup.exe" /silent
|
||||||
add_launcher "c:\Program Files\reality software\death match project alpha\dm1.exe"
|
add_launcher "c:\Program Files\reality software\death match project alpha\dm1.exe"
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.kaldobsky.com/audiogames/dogwhohatestoast.zip"
|
download "https://www.kaldobsky.com/audiogames/dogwhohatestoast.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/dogwhohatestoast" "${cache}/dogwhohatestoast.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/dogwhohatestoast" "${cache}/dogwhohatestoast.zip"
|
||||||
wine 'c:\Program Files\dogwhohatestoast\checkup.exe' /verysilent
|
wine 'c:\Program Files\dogwhohatestoast\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\dogwhohatestoast\DogwhoHatesToast.exe"
|
add_launcher "c:\Program Files\dogwhohatestoast\DogwhoHatesToast.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download https://scwl-1251129685.cos.ap-shanghai.myqcloud.com/dreamland/Win/DreamLandSetup.exe
|
download https://scwl-1251129685.cos.ap-shanghai.myqcloud.com/dreamland/Win/DreamLandSetup.exe
|
||||||
install_wine_bottle speechsdk ole32
|
install_wine_bottle ole32
|
||||||
wine "${cache}/DreamLandSetup.exe" /silent
|
wine "${cache}/DreamLandSetup.exe" /silent
|
||||||
add_launcher "c:\Program Files\DreamLand\DreamLand.exe"
|
add_launcher "c:\Program Files\DreamLand\DreamLand.exe"
|
@@ -1,5 +1,5 @@
|
|||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "http://files.l-works.net/dhsetup.exe"
|
download "http://files.l-works.net/dhsetup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
wine "${cache}/dhsetup.exe" /silent
|
wine "${cache}/dhsetup.exe" /silent
|
||||||
add_launcher "c:\Program Files\Lworks\Duck Hunt\duckhunt.exe"
|
add_launcher "c:\Program Files\Lworks\Duck Hunt\duckhunt.exe"
|
@@ -1,7 +1,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "http://download.dracoent.com/Windows/classic/DMSetup.exe"
|
download "http://download.dracoent.com/Windows/classic/DMSetup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/DMSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/DMSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/DMSetup.exe" /sp- /silent
|
wine "c:/windows/temp/DMSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/DMSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/DMSetup.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "http://download.dracoent.com/Windows/classic/PBCSetup.exe"
|
download "http://download.dracoent.com/Windows/classic/PBCSetup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/PBCSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/PBCSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/PBCSetup.exe" /sp- /silent
|
wine "c:/windows/temp/PBCSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/PBCSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/PBCSetup.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "http://download.dracoent.com/Windows/classic/PBXSetup.exe"
|
download "http://download.dracoent.com/Windows/classic/PBXSetup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/PBXSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/PBXSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/PBXSetup.exe" /sp- /silent
|
wine "c:/windows/temp/PBXSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/PBXSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/PBXSetup.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "http://www.masonasons.me/softs/EndlessRunner.7z"
|
download "http://www.masonasons.me/softs/EndlessRunner.7z"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress 7z "Extracting game files..." x -y -o"$WINEPREFIX/drive_c/Program Files/Endless Runner" "${cache}/EndlessRunner.7z" -prunner
|
install_with_progress 7z "Extracting game files..." x -y -o"$WINEPREFIX/drive_c/Program Files/Endless Runner" "${cache}/EndlessRunner.7z" -prunner
|
||||||
add_launcher "c:\Program Files\Endless Runner\runner.exe"
|
add_launcher "c:\Program Files\Endless Runner\runner.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
download "http://blind-games.com/newentombed/EntombedSetup.exe" "https://download.microsoft.com/download/E/C/1/EC1B2340-67A0-4B87-85F0-74D987A27160/SSCERuntime-ENU.exe" "https://stormgames.wolfe.casa/downloads/Entombed.exe.config" "https://stormgames.wolfe.casa/downloads/mfplat.dll"
|
download "http://blind-games.com/newentombed/EntombedSetup.exe" "https://download.microsoft.com/download/E/C/1/EC1B2340-67A0-4B87-85F0-74D987A27160/SSCERuntime-ENU.exe" "https://stormgames.wolfe.casa/downloads/Entombed.exe.config" "https://stormgames.wolfe.casa/downloads/mfplat.dll"
|
||||||
# Uses wine32 due to speechsdk dependency
|
# Uses wine32 due to dependency
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk msvcrt40 gdiplus ie7 wmp11 mf
|
install_wine_bottle msvcrt40 gdiplus ie7 wmp11 mf
|
||||||
# Ok, more dotnet.
|
# Ok, more dotnet.
|
||||||
LC_ALL=C DISPLAY="" winetricks -q dotnet40 xna40
|
LC_ALL=C DISPLAY="" winetricks -q dotnet40 xna40
|
||||||
wineserver -k # Sigh.
|
wineserver -k # Sigh.
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
#
|
#
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.stefankiss.sk/files/eurofly2/Launcher_1.2.zip" "https://www.stefankiss.sk/files/eurofly2/Eurofly_2_ful_setup.exe"
|
download "https://www.stefankiss.sk/files/eurofly2/Launcher_1.2.zip" "https://www.stefankiss.sk/files/eurofly2/Eurofly_2_ful_setup.exe"
|
||||||
install_wine_bottle speechsdk comctl32
|
install_wine_bottle comctl32
|
||||||
wine "${cache}/Eurofly_2_ful_setup.exe" /silent
|
wine "${cache}/Eurofly_2_ful_setup.exe" /silent
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Eurofly" "${cache}/Launcher_1.2.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Eurofly" "${cache}/Launcher_1.2.zip"
|
||||||
add_launcher "c:\Eurofly\launcher.exe"
|
add_launcher "c:\Eurofly\launcher.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://agarchive.net/games/other/extant.zip"
|
download "https://agarchive.net/games/other/extant.zip"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/extant" "${cache}/extant.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/extant" "${cache}/extant.zip"
|
||||||
add_launcher "c:\Program Files\extant\Extant.exe"
|
add_launcher "c:\Program Files\extant\Extant.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
download "http://www.gmagames.com/gtc120.exe"
|
download "http://www.gmagames.com/gtc120.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
wine "${cache}/gtc120.exe" /silent &
|
wine "${cache}/gtc120.exe" /silent &
|
||||||
xdotool sleep 10 key --clearmodifiers alt+y 2> /dev/null
|
xdotool sleep 10 key --clearmodifiers alt+y 2> /dev/null
|
||||||
xdotool sleep 15 type --clearmodifiers --delay 100 "${USER^}" 2> /dev/null
|
xdotool sleep 15 type --clearmodifiers --delay 100 "${USER^}" 2> /dev/null
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
get_installer "Galactic Strike 1.2.zip" "https://fusion-forged-games.itch.io/galactic-strike"
|
get_installer "Galactic Strike 1.2.zip" "https://fusion-forged-games.itch.io/galactic-strike"
|
||||||
export winVer="win10"
|
export winVer="win10"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/Galactic Strike" "${cache}/Galactic Strike 1.2.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/Galactic Strike" "${cache}/Galactic Strike 1.2.zip"
|
||||||
add_launcher "c:\Program Files\Galactic Strike\Galactic Strike.exe"
|
add_launcher "c:\Program Files\Galactic Strike\Galactic Strike.exe"
|
||||||
echo "Use controls wasd to movi and navigate the menu."
|
echo "Use controls wasd to movi and navigate the menu."
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "http://oriolgomez.com/games/hammer_en.zip"
|
download "http://oriolgomez.com/games/hammer_en.zip"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/hammer of glory" "${cache}/hammer_en.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/hammer of glory" "${cache}/hammer_en.zip"
|
||||||
add_launcher "c:\Program Files\hammer of glory\game.exe"
|
add_launcher "c:\Program Files\hammer of glory\game.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
download "${ipfsGateway}/ipfs/QmdkLPig6Kp3AZTwKAhjrhhsEuvhFCFhm6SHLUQVeNNYCb?filename=kitchen.tar.xz"
|
download "${ipfsGateway}/ipfs/QmdkLPig6Kp3AZTwKAhjrhhsEuvhFCFhm6SHLUQVeNNYCb?filename=kitchen.tar.xz"
|
||||||
install_wine_bottle vb6run speechsdk dx8vb
|
install_wine_bottle vb6run dx8vb
|
||||||
echo "Extracting files..."
|
echo "Extracting files..."
|
||||||
tar xf "${cache}/kitchen.tar.xz" -C "$WINEPREFIX/drive_c/Program Files/"
|
tar xf "${cache}/kitchen.tar.xz" -C "$WINEPREFIX/drive_c/Program Files/"
|
||||||
add_launcher "c:\Program Files\Kitchen's Sink\gamemenu.exe"
|
add_launcher "c:\Program Files\Kitchen's Sink\gamemenu.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
download "http://www.gmagames.com/lw350.exe"
|
download "http://www.gmagames.com/lw350.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk
|
install_wine_bottle vb6run dx8vb
|
||||||
wine "${cache}/lw350.exe" /silent &
|
wine "${cache}/lw350.exe" /silent &
|
||||||
xdotool sleep 10 key --clearmodifiers alt+y 2> /dev/null
|
xdotool sleep 10 key --clearmodifiers alt+y 2> /dev/null
|
||||||
xdotool sleep 10 type --clearmodifiers --delay 100 "$USER" 2> /dev/null
|
xdotool sleep 10 type --clearmodifiers --delay 100 "$USER" 2> /dev/null
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "https://agarchive.net/games/danZ/lost.zip"
|
download "https://agarchive.net/games/danZ/lost.zip"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/lost" "$cache/lost.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/lost" "$cache/lost.zip"
|
||||||
add_launcher 'c:\Program Files\lost\lost.exe'
|
add_launcher 'c:\Program Files\lost\lost.exe'
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://kaldobsky.com/audiogames/lunimals.zip"
|
download "https://kaldobsky.com/audiogames/lunimals.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/lunimals" "${cache}/lunimals.zip"
|
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
|
wine 'c:\Program Files\lunimals\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\lunimals\Lunimals.exe"
|
add_launcher "c:\Program Files\lunimals\Lunimals.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "http://www.vgstorm.com/manamon2/manamon2_installer.exe"
|
download "http://www.vgstorm.com/manamon2/manamon2_installer.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/manamon2_installer.exe" /silent
|
wine "${cache}/manamon2_installer.exe" /silent
|
||||||
add_launcher "c:\Program Files\VGStorm.com\Manamon 2\rpg.exe"
|
add_launcher "c:\Program Files\VGStorm.com\Manamon 2\rpg.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "https://www.vgstorm.com/manamon/manamon_installer.exe"
|
download "https://www.vgstorm.com/manamon/manamon_installer.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/manamon_installer.exe" /silent
|
wine "${cache}/manamon_installer.exe" /silent
|
||||||
add_launcher "c:\Program Files\VGStorm.com\Manamon\rpg.exe"
|
add_launcher "c:\Program Files\VGStorm.com\Manamon\rpg.exe"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/MbSetupE.exe" &
|
wine "${cache}/MbSetupE.exe" &
|
||||||
xdotool sleep 10 key Return
|
xdotool sleep 10 key Return
|
||||||
wineserver -w
|
wineserver -w
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
# Uses standard wine path based on architecture (win32/win64)
|
# Uses standard wine path based on architecture (win32/win64)
|
||||||
download "http://download.dracoent.com/Windows/classic/MBSetup.exe"
|
download "http://download.dracoent.com/Windows/classic/MBSetup.exe"
|
||||||
install_wine_bottle vb6run dx8vb speechsdk quartz
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
cp -fv "${cache}/MBSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
cp -fv "${cache}/MBSetup.exe" "$WINEPREFIX/drive_c/windows/temp/"
|
||||||
wine "c:/windows/temp/MBSetup.exe" /sp- /silent
|
wine "c:/windows/temp/MBSetup.exe" /sp- /silent
|
||||||
rm -fv "$WINEPREFIX/drive_c/windows/temp/MBSetup.exe"
|
rm -fv "$WINEPREFIX/drive_c/windows/temp/MBSetup.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export norh="true" # Requires sapi even though uses nvda
|
export norh="true" # Requires sapi even though uses nvda
|
||||||
download "${ipfsGateway}/ipfs/QmQnAJJrt5uABFziQc7enXYrJ74J9GKQSMi8Ry8ebsxfPV?filename=OhShit.zip"
|
download "${ipfsGateway}/ipfs/QmQnAJJrt5uABFziQc7enXYrJ74J9GKQSMi8Ry8ebsxfPV?filename=OhShit.zip"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files" "${cache}/OhShit.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files" "${cache}/OhShit.zip"
|
||||||
add_launcher "c:\Program Files\oh_shit\OhShit.exe"
|
add_launcher "c:\Program Files\oh_shit\OhShit.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://www.agarchive.net/games/blastbay/palace%20punch-up%20setup.exe"
|
download "https://www.agarchive.net/games/blastbay/palace%20punch-up%20setup.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/palace punch-up setup.exe" /silent
|
wine "${cache}/palace punch-up setup.exe" /silent
|
||||||
add_launcher "c:\Program Files\Palace Punch-up\palace.exe"
|
add_launcher "c:\Program Files\Palace Punch-up\palace.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "http://www.vgstorm.com/cod/pots/paladin_installer.exe"
|
download "http://www.vgstorm.com/cod/pots/paladin_installer.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/paladin_installer.exe" /silent
|
wine "${cache}/paladin_installer.exe" /silent
|
||||||
add_launcher "c:\Program Files\VGStorm.com\Paladin of the Sky\game.exe"
|
add_launcher "c:\Program Files\VGStorm.com\Paladin of the Sky\game.exe"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "http://www.ndadamson.com/downloads/Park%20Boss%201.01%20setup.exe"
|
download "http://www.ndadamson.com/downloads/Park%20Boss%201.01%20setup.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/Park Boss 1.01 setup.exe" /silent &
|
wine "${cache}/Park Boss 1.01 setup.exe" /silent &
|
||||||
xdotool sleep 10 key --clearmodifiers Return sleep 1 key alt+n sleep 1 key alt+a sleep 1 key alt+i sleep 10 key alt+f 2> /dev/null
|
xdotool sleep 10 key --clearmodifiers Return sleep 1 key alt+n sleep 1 key alt+a sleep 1 key alt+i sleep 10 key alt+f 2> /dev/null
|
||||||
wineserver -w
|
wineserver -w
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.kaldobsky.com/audiogames/pawprints.zip"
|
download "https://www.kaldobsky.com/audiogames/pawprints.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/pawprints" "${cache}/pawprints.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/pawprints" "${cache}/pawprints.zip"
|
||||||
wine 'c:\Program Files\pawprints\checkup.exe' /verysilent
|
wine 'c:\Program Files\pawprints\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\pawprints\PawPrints.exe"
|
add_launcher "c:\Program Files\pawprints\PawPrints.exe"
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "http://www.kaldobsky.com/audiogames/pentapath.zip"
|
download "http://www.kaldobsky.com/audiogames/pentapath.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/pentapath" "${cache}/pentapath.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/pentapath" "${cache}/pentapath.zip"
|
||||||
wine 'c:\Program Files\pentapath\checkup.exe' /verysilent
|
wine 'c:\Program Files\pentapath\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\pentapath\PentaPath.exe"
|
add_launcher "c:\Program Files\pentapath\PentaPath.exe"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
download "https://www.agarchive.net/games/blastbay/perilous%20hearts%20concept%20demo.exe"
|
download "https://www.agarchive.net/games/blastbay/perilous%20hearts%20concept%20demo.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/perilous hearts concept demo.exe" /silent
|
wine "${cache}/perilous hearts concept demo.exe" /silent
|
||||||
add_launcher "c:\Program Files\Perilous Hearts Concept Demo\perilous_hearts.exe"
|
add_launcher "c:\Program Files\Perilous Hearts Concept Demo\perilous_hearts.exe"
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.kaldobsky.com/audiogames/Preludeamals.zip"
|
download "https://www.kaldobsky.com/audiogames/Preludeamals.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/preludeamals" "${cache}/Preludeamals.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/preludeamals" "${cache}/Preludeamals.zip"
|
||||||
wine 'c:\Program Files\preludeamals\checkup.exe' /verysilent
|
wine 'c:\Program Files\preludeamals\checkup.exe' /verysilent
|
||||||
add_launcher "c:\Program Files\preludeamals\Preludeamals.exe"
|
add_launcher "c:\Program Files\preludeamals\Preludeamals.exe"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
download "http://www.vgstorm.com/psycho_strike_installer.exe"
|
download "http://www.vgstorm.com/psycho_strike_installer.exe"
|
||||||
install_wine_bottle speechsdk
|
install_wine_bottle
|
||||||
wine "${cache}/psycho_strike_installer.exe" /silent
|
wine "${cache}/psycho_strike_installer.exe" /silent
|
||||||
add_launcher "c:\Program Files\VGStorm.com\Psycho Strike\strike.exe"
|
add_launcher "c:\Program Files\VGStorm.com\Psycho Strike\strike.exe"
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "https://www.kaldobsky.com/audiogames/puzzledivided.zip"
|
download "https://www.kaldobsky.com/audiogames/puzzledivided.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/puzzledivided" "${cache}/puzzledivided.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/puzzledivided" "${cache}/puzzledivided.zip"
|
||||||
add_launcher "c:\Program Files\puzzledivided\PuzzleDivided.exe"
|
add_launcher "c:\Program Files\puzzledivided\PuzzleDivided.exe"
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
export winetricksSettings="vd=1024x768"
|
export winetricksSettings="vd=1024x768"
|
||||||
download "http://www.kaldobsky.com/audiogames/rettou.zip"
|
download "http://www.kaldobsky.com/audiogames/rettou.zip"
|
||||||
install_wine_bottle vb6run dx8vb quartz speechsdk corefonts
|
install_wine_bottle vb6run dx8vb quartz
|
||||||
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/rettou" "${cache}/rettou.zip"
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/rettou" "${cache}/rettou.zip"
|
||||||
add_launcher "c:\Program Files\rettou\Rettou.exe"
|
add_launcher "c:\Program Files\rettou\Rettou.exe"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user