- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
-
intro video playback release in Resident Evil 7
-
intro video playback release in Resident Evil 8
-
Upside down cinema video playback fixed in Sky: Children of the Light
-
Upside down video playback fixed in Akiba’s Trip: Undead & Undressed
-
Two new environment variable options added:
-
PROTON_MEDIA_USE_GST=1
will tell proton to use the winegstreamer backend instead of the default winedmo backend (the winedmo backend was introduced in Proton 10 and is the current preferred video playback method). This can be useful for games with videos that may have worked in Proton 9 but regressed in Proton 10. -
PROTON_GST_VIDEO_ORIENTATION=<orientation>
<orientation> can be any of the following:vertical-flip
,horizontal-flip
,rotate-180
,automatic
. This is useful if some games have videos that are upside down or otherwise not oriented correctly.
Example usage: PROTON_GST_VIDEO_ORIENTATION=vertical-flip
. If you set PROTON_GST_VIDEO_ORIENTATION it will also automatically force the winegstreamer backend to be used, as manual orientation is not possible with winedmo.
-
protonfix added to restore sound in One Piece Pirate Warriors
-
protonfix added to fix 40k Dawn of War Definitive Edition multiplayer
-
protonfix added for GOG version of 40k Dawn of War Definitive Edition
-
wine-wayland em-10 patches updated and rebased
-
wine updated to latest bleeding edge
-
dxvk updated to latest git
-
vkd3d-proton updated to latest git
-
upstream proton fixes imported
If anyone is interested i have written a small script that i added to my crontab to check for, and if i don’t already have it, download and install each GE release daily (or however frequently you want it to run, it’s your crontab).
make sure your
.steam/root/compatibilitytools.d
folder matches thesteam_compatibility_folder
variable below and update it to match if not#!/bin/bash latest_full_path="$(curl -sLOJ curl -s https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest | grep browser_download_url | cut -d\" -f4 | grep .tar.gz)" IFS_orig="$IFS"; IFS='/'; read -a full_path_as_array <<< "$latest_full_path"; IFS="$IFS_orig" latest="${full_path_as_array[-1]}" extracted_file_name="$(echo $latest | sed -e s/.tar.gz//g)" steam_compatibility_folder="$HOME/.steam/root/compatibilitytools.d" if ! [ -d "$steam_compatibility_folder/$extracted_file_name" ]; then curl -LS "$latest_full_path" --output "/tmp/$latest" tar xzf "/tmp/$latest" -C "${steam_compatibility_folder}/" rm "/tmp/$latest" fi
i am not responsible for any loss of data or damage you encounter in running this