- Aug 30, 2024
-
-
frmdstryr authored
-
- Aug 28, 2024
-
-
frmdstryr authored
-
- Aug 26, 2024
-
-
-
Signed-off-by:
Nikolay Sivov <nsivov@codeweavers.com>
-
Signed-off-by:
Nikolay Sivov <nsivov@codeweavers.com>
-
-
-
-
-
-
-
Based on a patch by Jason Edmeades. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=18154
-
-
This was introduced in bff25ffe. The commit aimed to fix command lines like `wine cmd /c "notepad test.txt"`. Such de-quoting is now handled at an earlier point. Moreover, we explicitly only enter this path when we find an executable (which was not the case when the commit was written), so we cannot actually get ERROR_FILE_NOT_FOUND anymore anyway.
-
-
This fixes eFilmLt.exe when running with builtin msxml6. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55804
-
Fixes: 035012be
-
-
-
These were defined in WinSDK 10.0.26100.
-
Don't use strstr() for finding features - some feature names may be substrings of other feature names. Verify that the strings that are found are surrounded by whitespace, or are located at the start/end of the string.
-
-
-
-
-
-
-
-
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57103 Fixes: e64f3536
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57096 Fixes: 52865b33
-
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57102 Fixes: cb1c03b9
-
- Aug 23, 2024
-
-
-
Alexandre Julliard authored
-
Alexandre Julliard authored
Fixes a regression from b12ad4f4.
-
-
When the application is finished with this handle, CloseHandle should be used. This was causing steam to crash when viewing content.
-
-
Based on a patch from Torge Matthies.