list.winehq.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Wine-GitLab

Threads by month
  • ----- 2026 -----
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
wine-gitlab@list.winehq.org

May 2025

  • 1 participants
  • 858 discussions
[PATCH v3 0/2] MR8051: Draft: timeout/tests: Ignore ctrl-c in the parent process.
by Bernhard Übelacker May 15, 2025

May 15, 2025
First push with null patch, to get current gitlab runner result in [pipeline #42287](https://gitlab.winehq.org/bernhardu/wine/-/pipelines/42287). Unfortunately, did not fail this time. Older examples are: - [job #157583](https://gitlab.winehq.org/wine/wine/-/jobs/157583#L2282) - [job #157314](https://gitlab.winehq.org/wine/wine/-/jobs/157314#L1957) - [job #157131](https://gitlab.winehq.org/wine/wine/-/jobs/157131#L2052) - [job #157068](https://gitlab.winehq.org/wine/wine/-/jobs/157068#L1955) - [job #157032](https://gitlab.winehq.org/wine/wine/-/jobs/157032#L2150) - [job #156785](https://gitlab.winehq.org/wine/wine/-/jobs/156785#L2112) - [job #156713](https://gitlab.winehq.org/wine/wine/-/jobs/156713#L2048) - [job 156677#](https://gitlab.winehq.org/wine/wine/-/jobs/156677#L2030) So happens just a few times per day. The value -1073741510 in `timeout.exe:timeout:06b4 done (-1073741510) in 5s 177B` equals to 0xC000013A, STATUS_CONTROL_C_EXIT. Therefore the assumption the ctrl-c from the test reaches sometimes the parent process. With the patch activated, this [pipeline #42291](https://gitlab.winehq.org/bernhardu/wine/-/pipelines/42291). -- v3: TEMP: gitlab: Just run timeout.exe with test-linux-32. https://gitlab.winehq.org/wine/wine/-/merge_requests/8051
2 3
0 0
[PATCH v3 0/3] MR8050: win32u: Implement and use NtUserAlterWindowStyle.
by Rémi Bernon May 15, 2025

May 15, 2025
-- v3: win32u: Implement and use NtUserAlterWindowStyle. win32u: Add NtUserAlterWindowStyle syscall stub. win32u: Rename set_window_style to set_window_style_bits. https://gitlab.winehq.org/wine/wine/-/merge_requests/8050
1 3
0 0
[PATCH 0/2] MR8048: nsiproxy: Implement change notifications for NSI_IP_UNICAST_TABLE on macOS.
by Brendan Shanks (@bshanks) May 15, 2025

May 15, 2025
Enables `NotifyAddrChange()` to work on macOS. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8048
3 3
0 0
[PATCH 0/1] MR8046: win32u: Don't load the display drivers in service processes.
by Rémi Bernon May 15, 2025

May 15, 2025
In service processes, `get_desktop_window` only creates a fake window owned by the first calling thread, with only a handle and no client-side object. Before 9d6455f91cb7a7d166d5c4708d528b43a63eb4d7 `get_window_thread` was returning an error (called from `send_message` > `process_message`) in that case, as client-side object is missing. After the commit, we only check handle existence and we now return success and then try to send/process the desktop window message, waiting for explorer startup which never happens. Fixes: 9d6455f91cb7a7d166d5c4708d528b43a63eb4d7 -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8046
2 2
0 0
[PATCH 0/1] MR8014: gdi32/uniscribe: Do not limit the number of items in ScriptStringAnalyse().
by Nikolay Sivov (@nsivov) May 15, 2025

May 15, 2025
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58207 Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8014
4 3
0 0
[PATCH v5 0/7] MR5665: For a CS_PARENTDC child use parent for visible region calculations.
by Dmitry Timoshkov (@dmitry) May 15, 2025

May 15, 2025
These patches fix painting in an application that draws outside of a CS_PARENTDC child client area in its WM_PAINT handler. Comments and suggestions are welcome. -- v5: win32u: Don't clip update region to the window client rectangle. win32u: GetUpdateRect() should clip update rectangle to the window client area. win32u: GetUpdateRgn() should clip update region to the window client area. win32u: Clip PAINTSTRUCT.rcPaint to the window client area. server: Don't generate WM_PAINT messages for minimized windows. server: For a CS_PARENTDC child use parent for visible region calculations. server: If the being validated region covers whole window then validate everything. https://gitlab.winehq.org/wine/wine/-/merge_requests/5665
2 9
0 0
[PATCH v2 0/3] MR8050: win32u: Implement and use NtUserAlterWindowStyle.
by Rémi Bernon May 15, 2025

May 15, 2025
-- v2: win32u: Implement and use NtUserAlterWindowStyle. win32u: Add NtUserAlterWindowStyle syscall stub. win32u: Rename set_window_style to set_window_style_bits. https://gitlab.winehq.org/wine/wine/-/merge_requests/8050
1 4
0 0
[PATCH 0/4] MR8055: coremessaging: Partially implement CreateDispatcherQueueController(). (alt)
by Rémi Bernon May 15, 2025

May 15, 2025
Supersedes !7928 with some test tweaks: * Test that shutdown waits for any queued handler, * Use message loop only when necessary (DQTYPE_THREAD_CURRENT), * Remove some non-deterministic refcount checks after shutdown, as dispatch thread might still hold some until it exits. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8055
2 4
0 0
[PATCH v2 0/1] MR8051: Draft: timeout/tests: Ignore ctrl-c in the parent process.
by Bernhard Übelacker May 15, 2025

May 15, 2025
First push with null patch, to get current gitlab runner result in [#42287](https://gitlab.winehq.org/bernhardu/wine/-/pipelines/42287). -- v2: timeout/tests: Ignore ctrl-c in the parent process. https://gitlab.winehq.org/wine/wine/-/merge_requests/8051
1 1
0 0
[PATCH 0/1] MR8054: include: Add windows.ui.viewmanagement.core.idl.
by Zhiyi Zhang (@zhiyi) May 15, 2025

May 15, 2025
For React Native. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8054
2 1
0 0
  • ← Newer
  • 1
  • ...
  • 82
  • 83
  • 84
  • 85
  • 86
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.
Hosted in Mailman3.com