-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proton: update to cachyos-9.0-20241206 (release proton-osu-9-11)
- fix flickering when opening/closing osu - update umu-launcher to master and bump bundled standalone Python to 3.13.1, also improve the binary security of the wrapper - any upstream proton/umu/protonfixes updates since late October
- Loading branch information
Showing
11 changed files
with
129 additions
and
190 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...es/wine/0004-proton-annoyances/Revert-winex11.drv-disable-wm-decorations-by-default.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
This reverts commit b6ba4e0ccc645c078900db8fbafadc9ac4eec125. | ||
--- a/dlls/winex11.drv/x11drv_main.c | ||
+++ b/dlls/winex11.drv/x11drv_main.c | ||
@@ -78,7 +78,7 @@ | ||
BOOL use_system_cursors = TRUE; | ||
BOOL grab_fullscreen = FALSE; | ||
BOOL managed_mode = TRUE; | ||
+BOOL decorated_mode = TRUE; | ||
-BOOL decorated_mode = FALSE; | ||
BOOL private_color_map = FALSE; | ||
int primary_monitor = 0; | ||
BOOL client_side_graphics = TRUE; | ||
--- a/loader/wine.inf.in | ||
+++ b/loader/wine.inf.in | ||
@@ -99,7 +99,6 @@ AddReg=\ | ||
ThemeManager,\ | ||
VersionInfo,\ | ||
LicenseInformation,\ | ||
- WineDecorateWindows,\ | ||
NVIDIANGX, \ | ||
ProtonOverrides,\ | ||
SteamClient | ||
@@ -130,7 +129,6 @@ AddReg=\ | ||
ThemeManager,\ | ||
VersionInfo,\ | ||
LicenseInformation,\ | ||
- WineDecorateWindows,\ | ||
NVIDIANGX, \ | ||
TTS, \ | ||
ProtonOverrides,\ | ||
@@ -178,7 +176,6 @@ AddReg=\ | ||
Tapi,\ | ||
VersionInfo,\ | ||
LicenseInformation,\ | ||
- WineDecorateWindows,\ | ||
NVIDIANGX, \ | ||
ProtonOverrides,\ | ||
SteamClient.ntamd64 | ||
@@ -3208,6 +3205,3 @@ HKCU,Software\Wine\AppDefaults\RiftApart.exe\DllOverrides,"atiadlxx",,"builtin" | ||
HKCU,Software\Wine\AppDefaults\ffxvi.exe\DllOverrides,"atiadlxx",,"builtin" | ||
HKLM,Software\Wow6432Node\lucasarts entertainment company llc\Star Wars: Episode I Racer\v1.0,"Display Height",0x10001,480 | ||
HKLM,Software\Wow6432Node\lucasarts entertainment company llc\Star Wars: Episode I Racer\v1.0,"Display Width",0x10001,640 | ||
- | ||
-[WineDecorateWindows] | ||
-HKCU,Software\Wine\AppDefaults\DarkSoulsIII.exe\X11 Driver,"Decorated",,"N" | ||
--- a/programs/winecfg/x11drvdlg.c | ||
+++ b/programs/winecfg/x11drvdlg.c | ||
@@ -152,7 +152,7 @@ | ||
CheckDlgButton(dialog, IDC_ENABLE_MANAGED, BST_UNCHECKED); | ||
free(buf); | ||
|
||
+ buf = get_reg_key(config_key, keypath(L"X11 Driver"), L"Decorated", L"Y"); | ||
- buf = get_reg_key(config_key, keypath(L"X11 Driver"), L"Decorated", L"N"); | ||
if (IS_OPTION_TRUE(*buf)) | ||
CheckDlgButton(dialog, IDC_ENABLE_DECORATED, BST_CHECKED); | ||
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.