Alexandre Julliard pushed to branch master at wine / wine
Commits:
856efc7a by Tim Clem at 2025-04-07T21:58:11+02:00
winemac.drv: Only send key down events to the window's inputContext.
Rename and remove an argument to macdrv_send_text_input to reflect
its purpose.
Fixes doubled input with certain input sources.
- - - - -
3 changed files:
- dlls/winemac.drv/cocoa_window.m
- dlls/winemac.drv/keyboard.c
- dlls/winemac.drv/macdrv_cocoa.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/856efc7a958c32a34b3d7e47cc80a8…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/856efc7a958c32a34b3d7e47cc80a8…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
f4f5b473 by Alex Henrie at 2025-04-07T21:58:11+02:00
cryptui: Copy localized name of selected store to textbox.
Match the behavior on Windows: When the CryptUIWizImport function is
called, the "Certificate store" textbox initially says "Determined by
the program" instead of having the specific name of the store passed to
the function. When the user clicks Browse to select a store, the stores
are listed by localized name. After clicking OK, the selected store's
localized name is copied into the textbox.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58057
- - - - -
1 changed file:
- dlls/cryptui/main.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/f4f5b4734ac09ca2e62f53961389ba…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/f4f5b4734ac09ca2e62f53961389ba…
You're receiving this email because of your account on gitlab.winehq.org.
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.