This is my solution:
My current highest binary build I can download from the repositories (on my system) is 1.4 by default. So that is installed for the apps that now work with version 1.4 by default. I then downloaded and installed wine 1.5.31 to /home/sysop/.wine-1.5.31 and run other programs with a script such as this;
Code: Select all
#!/bin/bash
export WINEPREFIX="/home/simon/.wine-upgrade"
export WINESERVER="/home/simon/.wine-1.5.31/bin/wineserver"
export WINELOADER="/home/simon/.wine-1.5.31/bin/wine"
export WINEDEBUG="-all"
export WINEDLLPATH="/home/simon/.wine-1.5.31/lib/wine"
cd "/media/drive_c/Cryptic Studios"
$WINELOADER 'Star Trek Online.exe'
At least now, if I have to "purge" wine again, I know right where to look. Feel free to point out any errors in my method. I am no programmer and my ego don't bruise easy.