https://bugs.winehq.org/show_bug.cgi?id=55105
Bug ID: 55105
Summary: libHttpClient requires
WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST support
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
Assignee: wine-bugs(a)winehq.org
Reporter: flibitijibibo(a)gmail.com
Distribution: ---
libHttpClient is the web socket abstraction layer for Xbox Live titles on
various platforms; on Windows it uses winhttp for http sources. Two example
games using this library are Gears 5 and Halo: The Master Chief collection.
One part of the implementation handles certificate authentication; in
particular it handles ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED, which according to
MSDN should be handled by calling WinHttpQueryOption with
WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST, so that it can attempt to find a
relevant certificate chain and re-attempt the connection if a cert is found.
Luckily, libHttpClient is open source, so the exact block that does this can be
found here:
https://github.com/microsoft/libHttpClient/blob/1c8386866fb180dd31890186291…
As of the latest Git revision, Wine does not handle this parameter, so the
default case is tripped:
https://gitlab.winehq.org/wine/wine/-/blob/81859c9af70aa5ed6da3060488d1815a…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55106
Bug ID: 55106
Summary: libHttpClient requires CertFindChainInStore support
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: flibitijibibo(a)gmail.com
Distribution: ---
libHttpClient is the web socket abstraction layer for Xbox Live titles on
various platforms; on Windows it uses winhttp for http sources. Two example
games using this library are Gears 5 and Halo: The Master Chief collection.
One part of the implementation handles certificate authentication; in
particular it attempts to search for a specific cert chain from the "MY" store
via CertFindChainInStore, and uses the results of this search to determine
whether or not it should try to connect again.
Luckily, libHttpClient is open source, so the exact block that does this can be
found here:
https://github.com/microsoft/libHttpClient/blob/1c8386866fb180dd31890186291…
As of the latest Git revision, CertFindChainInStore is a stub, and so the
search will always fail:
https://gitlab.winehq.org/wine/wine/-/blob/81859c9af70aa5ed6da3060488d1815a…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58291
Bug ID: 58291
Summary: eMule 0.50a: icons are too big in status bar
Product: Wine
Version: 10.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78642
--> http://bugs.winehq.org/attachment.cgi?id=78642
Wine
eMule 0.50a: icons are too big in status bar
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58290
Bug ID: 58290
Summary: eMule 0.50a: Toolbar icons show with black background
when in context menu
Product: Wine
Version: 10.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78640
--> http://bugs.winehq.org/attachment.cgi?id=78640
Back background
eMule 0.50a: Toolbar icons show with black background when in context menu
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58289
Bug ID: 58289
Summary: eMule 0.50a: "Journal" tab background incorrectly
initially paint as blue
Product: Wine
Version: 10.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78639
--> http://bugs.winehq.org/attachment.cgi?id=78639
eMule Blue tab
eMule 0.50a: "Journal" tab background incorrectly initially paint as blue
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58288
Bug ID: 58288
Summary: Support for color management and HDR under wayland
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wiagn233(a)outlook.com
Distribution: ---
Currently, we have full color management support and also HDR support under
Wayland with the help of color-management-v1 and color-representation-v1
protocol. So I opened this issue to require color management and HDR support
for wine.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46816
Bug ID: 46816
Summary: Incorrect behavior of SHFileOperation
Product: Wine
Version: 4.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: rndltrz(a)hotmail.com
Distribution: ---
Behavior of SHFileOperation differs from windows.
Here is some trivial code that copies a directory:
const wchar_t *const sourceDir = L"C:\\TestDir\0\0";
const wchar_t *const destDir = L"C:\\TestDir2\0\0";
SHFILEOPSTRUCTW do_copy = { 0 };
do_copy.wFunc = FO_COPY;
do_copy.fFlags = FOF_NOCONFIRMMKDIR | FOF_NOCONFIRMATION | FOF_NO_UI;
do_copy.pFrom = sourceDir;
do_copy.pTo = destDir;
SHFileOperationW(&do_copy);
If you add trailing backslash to destDir:
const wchar_t *const destDir = L"C:\\TestDir2\\\0\0";
On Windows result would be the same. However, on WINE+linux result would be
different:
no backslashes:
$ls TestDir
file.txt Subdir1 Subdir2
$ls TestDir2
file.txt Subdir1 Subdir2
with trailing backslash:
$ls TestDir
file.txt Subdir1 Subdir2
$ls TestDir2
TestDir
This causes issues with programs that rely on Windows behavior.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58283
Bug ID: 58283
Summary: ME: Andromeda (Steam) will not start with
renderer=vulkan
Product: Wine
Version: 10.8
Hardware: x86-64
URL: https://store.steampowered.com/app/1238000/Mass_Effect
_Andromeda_Deluxe_Edition/
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 78631
--> http://bugs.winehq.org/attachment.cgi?id=78631
Wine 10.8 console log
A suggested workaround for Bug 58280 is to try the Vulkan renderer.
Unfortunately this stops Mass Effect: Andromeda from loading at all.
A virtual desktop or using Staging 10.7, both workarounds for Bug 58279, do not
help.
Workarounds:
- arial (Bug 32342 for Steam & EA App)
Steam launches the EA App which launches the game. I tried the reverse: EA App
launches Steam which launches the game but that doesn't help and introduces Bug
56721 into the mix.
$ wine 'c:\program files (x86)\steam\steam.exe' -applaunch 1238000
I cannot find a demo to test.
VGA compatible controller: NVIDIA Corporation GK104GL [Quadro K5000] (rev a1)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47105
Bug ID: 47105
Summary: [REGRESSION] FrostyModManager cant launch games
Product: Wine
Version: 4.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advpack
Assignee: wine-bugs(a)winehq.org
Reporter: timofeevsv1989(a)gmail.com
Distribution: ---
Frosty Mod Manager is a WPF app, which depends on GalliumNine and
d3dcompiler_47
It load mods for frostbite games such as Dragon Age Inquisition and Mass Effect
Andromeda
When I trying to launch game with 4.7 - games just zombying in background
With wine 4.6 everything was OK
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=58274
Bug ID: 58274
Summary: Cannot get past Steam age check
Product: Wine
Version: 10.8
Hardware: x86-64
URL: https://store.steampowered.com/app/680420/OUTRIDERS/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
When trying to access a game that contains adult themes you can be
annoyed/greeted by an age verification check. It is a very simple check where
you select your date of birth from drop-down menus.
With Wine, these menus don't work. When clicking on them this is printed in the
console:
0150:fixme:uxtheme:AllowDarkModeForWindow 000000000032025C 1: stub
0150:fixme:dwmapi:DwmExtendFrameIntoClientArea (000000000032025C,
00007FFFFE1FD990) stub
0150:fixme:dwmapi:DwmExtendFrameIntoClientArea (000000000032025C,
00007FFFFE1FE610) stub
0150:fixme:manipulation:viewport_ActivateConfiguration 00007A592875B710, 823
0150:fixme:manipulation:viewport_SetViewportOptions 00007A592875B710, 2
0150:fixme:manipulation:viewport_AddEventHandler 00007A592875B710,
000000000031025A, 00002CEC011144A0, 00002CEC01052470
0150:fixme:manipulation:viewport_Stop 00007A592875B710
0150:fixme:manipulation:viewport_RemoveEventHandler 00007A592875B710, 1
0150:fixme:manipulation:viewport_Abandon 00007A592875B710
0150:fixme:manipulation:direct_manip_Deactivate 00007A592875B650,
000000000031025A
0150:fixme:manipulation:viewport_ActivateConfiguration 00007A592875B710, 823
0150:fixme:manipulation:viewport_SetViewportOptions 00007A592875B710, 2
0150:fixme:manipulation:viewport_AddEventHandler 00007A592875B710,
000000000031025A, 00002CEC011144A0, 00002CEC01052470
0150:fixme:manipulation:viewport_Stop 00007A592875B710
0150:fixme:manipulation:viewport_RemoveEventHandler 00007A592875B710, 1
0150:fixme:manipulation:viewport_Abandon 00007A592875B710
0150:fixme:manipulation:direct_manip_Deactivate 00007A592875B650,
000000000031025A
0150:fixme:manipulation:viewport_ActivateConfiguration 00007A592875B710, 823
0150:fixme:manipulation:viewport_SetViewportOptions 00007A592875B710, 2
0150:fixme:manipulation:viewport_AddEventHandler 00007A592875B710,
000000000031025A, 00002CEC00FE8420, 00002CEC00FEAF70
0150:fixme:manipulation:viewport_Stop 00007A592875B710
0150:fixme:manipulation:viewport_RemoveEventHandler 00007A592875B710, 6
0150:fixme:manipulation:viewport_Abandon 00007A592875B710
0150:fixme:manipulation:direct_manip_Deactivate 00007A592875B650,
000000000031025A
01b8:fixme:dwmapi:DwmGetWindowAttribute attribute 14 not implemented.
01b8:fixme:dwmapi:DwmGetWindowAttribute attribute 14 not implemented.
01b8:fixme:win:NtUserGetWindowPlacement not fully supported on other process
window 0x30038.
01b8:fixme:dwmapi:DwmGetWindowAttribute attribute 14 not implemented.
01b8:fixme:dwmapi:DwmGetWindowAttribute attribute 14 not implemented.
01b8:fixme:win:NtUserGetWindowPlacement not fully supported on other process
window 0x30038.
To get this far requires a log in and so "winetricks arial" (Bug 47325), and
disabling GPU acceleration for web views helps (Bug 56758).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.