Alexandre Julliard pushed to branch master at wine / wine
Commits:
d980a30a by Eric Pouech at 2025-09-19T23:10:11+02:00
cmd: Only set console's default color when provided.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
f9a21ec0 by Eric Pouech at 2025-09-19T23:10:13+02:00
cmd: Fix some initial env variables setup.
- COMSPEC should be set to the path of running cmd.exe
instance if not present,
- PROMPT must be set to $P$G if not already defined.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
bbe2cfb2 by Eric Pouech at 2025-09-19T23:10:18+02:00
cmd: Fix context detection in cmd /c.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
81f64da4 by Eric Pouech at 2025-09-19T23:10:18+02:00
cmd: Don't use page mode for stderr.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
493966ab by Eric Pouech at 2025-09-19T23:10:18+02:00
cmd: Introduce helper to push/pop i/o handles for redirections.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
fc70990d by Eric Pouech at 2025-09-19T23:10:18+02:00
cmd: Ensure that all output to STD_OUTPUT go through WCMD_output_asis.
This allows:
- to also page formatted output (no reason it isn't),
- implement line buffering for STD_OUTPUT.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
4 changed files:
- programs/cmd/batch.c
- programs/cmd/builtins.c
- programs/cmd/wcmd.h
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d8eeafbaa6db72977bd52568c8e91…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/d8eeafbaa6db72977bd52568c8e91…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
221dbce1 by Alistair Leslie-Hughes at 2025-09-19T23:00:31+02:00
comdlg32: Correct show parameter passed to ShowWindow.
- - - - -
81ee9809 by Alistair Leslie-Hughes at 2025-09-19T23:00:32+02:00
cryptui: Correct show parameter passed to ShowWindow.
- - - - -
d8eeafba by Alistair Leslie-Hughes at 2025-09-19T23:00:32+02:00
wordpad: Correct show parameter passed to ShowWindow.
- - - - -
3 changed files:
- dlls/comdlg32/itemdlg.c
- dlls/cryptui/main.c
- programs/wordpad/wordpad.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1e7e06c8b4da2bb8fd0c90f1a8f4c…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1e7e06c8b4da2bb8fd0c90f1a8f4c…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
eb66cb82 by Rémi Bernon at 2025-09-19T23:00:31+02:00
win32u: Use a specific opengl_drawable function for context changes.
- - - - -
1e7e06c8 by Rémi Bernon at 2025-09-19T23:00:31+02:00
win32u: Avoid swapping / flushing drawables with destroyed windows.
- - - - -
3 changed files:
- dlls/win32u/opengl.c
- dlls/win32u/window.c
- include/wine/opengl_driver.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/936abbb60d6e124b062fbc416ed08…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/936abbb60d6e124b062fbc416ed08…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
930b33ad by Reinhold Gschweicher at 2025-09-19T23:00:31+02:00
msxml3/tests: Add test for IXMLDOMElement_removeAttributeNode.
Implement test cases for `IXMLDOMElement_removeAttributeNode()`
function. Cover the successful removal and failure codes for double
removal and `NULL` pointer removal.
The function is currently unimplemented in wine.
- - - - -
1 changed file:
- dlls/msxml3/tests/domdoc.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/930b33ad1f62509c858e033567f39e…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/930b33ad1f62509c858e033567f39e…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
ed21d9a8 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9/tests: Add tests for D3DFMT_CxV8U8.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
2839b64d by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9: Add support for D3DFMT_CxV8U8.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
9bf2ea16 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9: Replace D3DFMT_CxV8U8 with D3DFMT_X8L8V8U8 when creating textures.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
0084c4e8 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9/tests: Add tests for ATI{1,2} DDS files.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
7d8bf5b1 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9/tests: Add a test for DDS_PF_FOURCC flag handling.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
c227de23 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx9: Ignore all other DDS pixel format flags if DDS_PF_FOURCC is set.
Fixes a crash in Just Cause 2, which loads a DDS file with
a flags value of DDS_PF_ALPHA | DDS_PF_FOURCC.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
eb28d870 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx10/tests: Add more DDS pixel format tests.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
0f820221 by Connor McAdams at 2025-09-19T23:00:31+02:00
d3dx11/tests: Add more DDS pixel format tests.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
10 changed files:
- dlls/d3dx10_43/tests/d3dx10.c
- dlls/d3dx10_43/texture.c
- dlls/d3dx11_43/tests/d3dx11.c
- dlls/d3dx11_43/texture.c
- dlls/d3dx9_36/d3dx_helpers.c
- dlls/d3dx9_36/d3dx_helpers.h
- dlls/d3dx9_36/tests/surface.c
- dlls/d3dx9_36/tests/texture.c
- dlls/d3dx9_36/texture.c
- dlls/d3dx9_36/util.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/ada093a6d20f9bb1d57542c5e9df0…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/ada093a6d20f9bb1d57542c5e9df0…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
52eb5484 by Paul Gofman at 2025-09-19T23:00:31+02:00
iphlpapi: Implement GetBestRoute2().
- - - - -
632d9363 by Paul Gofman at 2025-09-19T23:00:31+02:00
iphlpapi: Reimplement GetBestInterfaceEx() on top of GetBestRoute2().
- - - - -
21ee481e by Paul Gofman at 2025-09-19T23:00:31+02:00
iphlpapi/tests: Add tests for best routes.
- - - - -
ada093a6 by Paul Gofman at 2025-09-19T23:00:31+02:00
iphlpapi: Try to disambiguate addresses in GetBestRoute2() by probing system assigned ones.
- - - - -
4 changed files:
- dlls/iphlpapi/iphlpapi_main.c
- dlls/iphlpapi/tests/iphlpapi.c
- include/iphlpapi.h
- include/netioapi.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1146e505f7e6c1a829c6f6fc77223…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1146e505f7e6c1a829c6f6fc77223…
You're receiving this email because of your account on gitlab.winehq.org.