Alexandre Julliard pushed to branch master at wine / wine
Commits:
4077fe3a by Eric Pouech at 2025-04-07T21:58:11+02:00
cmd/tests: Add more lexer related tests.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
41ad3806 by Eric Pouech at 2025-04-07T21:58:11+02:00
cmd: Rely on node_builder to get lexer state.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57877
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
a2e274ed by Eric Pouech at 2025-04-07T21:58:11+02:00
cmd: Check command buffer instead of keeping whitespace state.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
ee895f7d by Eric Pouech at 2025-04-07T21:58:11+02:00
cmd: Factorize end-of-line conditions.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
52c209ab by Eric Pouech at 2025-04-07T21:58:11+02:00
cmd: Handle directly commands til eol.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
2 changed files:
- programs/cmd/tests/test_builtins.cmd
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/bfab920e64d1d5542cdceffa2fe5a…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/bfab920e64d1d5542cdceffa2fe5a…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
203aff23 by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
user32/tests: Properly test ShowWindow(SW_MAXIMIZE) regarding WS_CAPTION.
Previously, although none of the style in the test_style array in test_ShowWindow() has WS_CAPTION,
WS_CAPTION is added implicitly by CreateWindow() when WS_POPUP and WS_CHILD are both not present,
thus the behavior for ShowWindow(SW_MAXIMIZE) when WS_CAPTION is not set was not tested properly.
- - - - -
3f584ee3 by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
win32u: Fix incorrect work area for maximized windows.
Partially fix Imperiums: Greek Wars (1183470) not covering the entire screen in fullscreen mode.
- - - - -
a86c25dc by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
user32/tests: Add more window placement maximized position tests.
- - - - -
cf817bcc by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
win32u: Check against the monitor work area in update_maximized_pos().
Fix Imperiums: Greek Wars (1183470) not covering the entire screen in fullscreen mode.
- - - - -
37df861a by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
win32u: Use a more fitting name for a helper function.
Rename get_work_rect(), which gets the area the maximized window can cover depending on style,
to get_maximized_rect(). So it's less likely to be confused with the monitor work area.
- - - - -
bfab920e by Zhiyi Zhang at 2025-04-07T21:58:11+02:00
win32u: Properly scale monitor work area when emulate_modeset is enabled.
- - - - -
3 changed files:
- dlls/user32/tests/win.c
- dlls/win32u/sysparams.c
- dlls/win32u/window.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/31a4be0b925c8f5ed3458bcec6cc0…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/31a4be0b925c8f5ed3458bcec6cc0…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
e2686a5d by Alexandre Julliard at 2025-04-07T11:58:37+02:00
winegcc: Set default section alignment to 64k on ARM64.
To support larger page sizes.
- - - - -
566fc927 by Alexandre Julliard at 2025-04-07T12:02:46+02:00
winegcc: Add a boolean flag for the -marm64x option.
For consistency with the other options.
- - - - -
12f00fa9 by Alexandre Julliard at 2025-04-07T16:26:01+02:00
winebuild: Align sections to 64k on ARM64.
- - - - -
fbdd2e37 by Alexandre Julliard at 2025-04-07T17:24:19+02:00
ntdll: Move a bit more work into the open_builtin_so_file() helper function.
- - - - -
a0f42351 by Alexandre Julliard at 2025-04-07T17:24:19+02:00
ntdll: Add a helper function to open the main image as .so file.
- - - - -
4cf3dd48 by Alexandre Julliard at 2025-04-07T17:24:19+02:00
ntdll: Move some code around to group together all functions related to .so dlls.
- - - - -
cb1e4fa5 by Alexandre Julliard at 2025-04-07T17:24:19+02:00
ntdll: Don't build support for .so dlls on platforms that don't have them.
- - - - -
8 changed files:
- dlls/ntdll/unix/loader.c
- dlls/ntdll/unix/signal_arm.c
- dlls/ntdll/unix/signal_arm64.c
- dlls/ntdll/unix/unix_private.h
- tools/winebuild/build.h
- tools/winebuild/spec32.c
- tools/winebuild/utils.c
- tools/winegcc/winegcc.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/872bf6b76b495b97a09db3a5652a3…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/872bf6b76b495b97a09db3a5652a3…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
8e3c7647 by Daniel Lehman at 2025-04-07T10:07:16+02:00
oleaut32/tests: Test for bpp.
- - - - -
408becd7 by Daniel Lehman at 2025-04-07T10:07:16+02:00
oleaut32/tests: Add some test bmps.
- - - - -
872bf6b7 by Daniel Lehman at 2025-04-07T10:07:16+02:00
oleaut32: Handle more pixel formats in OleLoadPicture.
- - - - -
2 changed files:
- dlls/oleaut32/olepicture.c
- dlls/oleaut32/tests/olepicture.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/eee229da2705127308109e3655ff8…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/eee229da2705127308109e3655ff8…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
eee229da by Georg Lehmann at 2025-04-07T09:50:16+02:00
winevulkan: Update to VK spec version 1.4.312.
Note that this also removes VK_NV_cuda_kernel_launch,
as the extension is still provisional and the updated vk.xml
now reflects that.
- - - - -
6 changed files:
- dlls/winevulkan/loader_thunks.c
- dlls/winevulkan/loader_thunks.h
- dlls/winevulkan/make_vulkan
- dlls/winevulkan/vulkan_thunks.c
- dlls/winevulkan/winevulkan.json
- include/wine/vulkan.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/eee229da2705127308109e3655ff8b…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/eee229da2705127308109e3655ff8b…
You're receiving this email because of your account on gitlab.winehq.org.