One version gecko and mono for two wine

This commit is contained in:
castro-fidel
2020-12-20 16:38:00 +03:00
parent b7be6dd451
commit edf2f31695
2 changed files with 59 additions and 11 deletions

View File

@ -19,8 +19,6 @@ import tarfile
#To enable debug logging, copy "user_settings.sample.py" to "user_settings.py"
#and edit it if needed.
CURRENT_PREFIX_VERSION="5.21-GE-1"
PFX="Proton: "
ld_path_var = "LD_LIBRARY_PATH"
@ -227,9 +225,14 @@ class Session:
def __init__(self):
self.env = dict(os.environ)
self.dlloverrides = {
"dotnetfx35.exe": "b", #replace the broken installer, as does Windows
"mfplay": "n", #disable built-in mfplay
}
"dotnetfx35.exe": "b", #replace the broken installer, as does Windows
"mfplay": "n", #disable built-in mfplay
"steam_api": "n", #disable built-in steam dll
"steam_api64": "n", #disable built-in steam dll
"steamclient": "n", #disable built-in steam dll
"steamclient64": "n", #disable built-in steam dll
"steamworks.net": "n" #disable built-in steam dll
}
self.compat_config = set()
self.cmdlineappend = []