Alexandre Julliard pushed to branch master at wine / wine
Commits:
7a35d7fe by Jacob Czekalla at 2025-08-15T19:59:37+02:00
mshtml/tests: Add call stacking to htmldoc test framework.
This is to handle tests where events could be called multiple times.
For example, iframes being loaded during a navigate.
- - - - -
c6aa6792 by Jacob Czekalla at 2025-08-15T19:59:40+02:00
mshtml/tests: Add iframe event tests in htmldoc.c.
Some events are not fired for iframes, for example FireBeforeNavigate2.
- - - - -
30757abb by Jacob Czekalla at 2025-08-15T19:59:42+02:00
mshtml: Fire BeforeNavigate2 for documents in async_open.
Documents such as iframes do not currently receive BeforeNavigate2 events.
- - - - -
4 changed files:
- dlls/mshtml/nsio.c
- + dlls/mshtml/tests/event_iframe.html
- dlls/mshtml/tests/htmldoc.c
- dlls/mshtml/tests/rsrc.rc
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6158b1165d846544ae4d48d0ad84a…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6158b1165d846544ae4d48d0ad84a…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d7b1c208 by Zhiyi Zhang at 2025-08-15T14:52:10+02:00
windows.applicationmodel/tests: Add Windows.ApplicationModel.DesignMode tests.
- - - - -
6158b116 by Zhiyi Zhang at 2025-08-15T14:52:11+02:00
windows.applicationmodel: Add Windows.ApplicationModel.DesignMode runtime class stub.
- - - - -
5 changed files:
- dlls/windows.applicationmodel/Makefile.in
- + dlls/windows.applicationmodel/designmode.c
- dlls/windows.applicationmodel/main.c
- dlls/windows.applicationmodel/private.h
- dlls/windows.applicationmodel/tests/model.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/91505b42ba6855fef7a0bfc67dc94…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/91505b42ba6855fef7a0bfc67dc94…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
7242e15e by Ratchanan Srirattanamet at 2025-08-15T14:52:10+02:00
msi: Fix .NET assembly-related functionalities due to missed string copy.
Commit 8cd69810596e ("msi: Get system directory just once.") remove call
to GetSystemDirectoryW() in load_fusion_dlls() but forgot to add
corresponding wcscpy() call. This causes loading mscoree.dll to fail,
breaking .NET-assembly-related functionalities. Add it back.
- - - - -
1 changed file:
- dlls/msi/assembly.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/7242e15eaddc8f0619fe7e158e0f6d…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/7242e15eaddc8f0619fe7e158e0f6d…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
cfe0c4aa by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd/tests: Add a couple of tests about return code propagation.
Especially when running another cmd.exe instance, or using
GOTO.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
4ce06f28 by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd: Fix exit code when run with /C command line option.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
2a9b3d63 by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd: Factorize some code.
Replace skip_rest field in batch context structure usng file position after
EOF instead.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
6a7dc302 by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd: Use a context when handling input from command line (/c, /k).
This allows to:
- simplify some internal code
- get rid of global 'interactive' variable
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
51351b6b by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd: Separate command file handling from external commands.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
8258509d by Eric Pouech at 2025-08-15T14:52:10+02:00
cmd: Fix exit code in cmd /c when leaving nested command files.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
6 changed files:
- programs/cmd/batch.c
- programs/cmd/builtins.c
- programs/cmd/tests/test_builtins.cmd
- programs/cmd/tests/test_builtins.cmd.exp
- programs/cmd/wcmd.h
- programs/cmd/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/327892f280c5927cc5a8179c579ba…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/327892f280c5927cc5a8179c579ba…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
2473952a by Vibhav Pant at 2025-08-15T14:52:10+02:00
winebth.sys: Remove GATT service entries when they are removed from the Unix Bluetooth service.
- - - - -
ae71ef6b by Vibhav Pant at 2025-08-15T14:52:10+02:00
winebth.sys: Enumerate and store GATT characteristics for each LE device.
- - - - -
ca2076b8 by Vibhav Pant at 2025-08-15T14:52:10+02:00
winebth.sys: Implement IOCTL_WINEBTH_LE_DEVICE_GET_GATT_CHARACTERISTICS.
- - - - -
bf2a4735 by Vibhav Pant at 2025-08-15T14:52:10+02:00
winebth.sys: Remove GATT characteristic entries when they are removed from the Unix Bluetooth service.
- - - - -
be093a66 by Vibhav Pant at 2025-08-15T14:52:10+02:00
bluetoothapis: Implement BluetoothGATTGetCharacteristics.
- - - - -
b9f9e635 by Vibhav Pant at 2025-08-15T14:52:10+02:00
bluetoothapis/tests: Implement tests for BluetoothGATTGetCharacteristics.
- - - - -
327892f2 by Vibhav Pant at 2025-08-15T14:52:10+02:00
winebth.sys: Set additional properties for remote Bluetooth devices.
- - - - -
13 changed files:
- dlls/bluetoothapis/bluetoothapis.spec
- dlls/bluetoothapis/gatt.c
- dlls/bluetoothapis/tests/gatt.c
- dlls/winebth.sys/dbus.c
- dlls/winebth.sys/unixlib.c
- dlls/winebth.sys/unixlib.h
- dlls/winebth.sys/winebluetooth.c
- dlls/winebth.sys/winebth.c
- dlls/winebth.sys/winebth_priv.h
- include/bluetoothleapis.h
- include/bthledef.h
- include/ddk/bthguid.h
- include/wine/winebth.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/fdaea1ffb6472dd9b19ae8307d840…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/fdaea1ffb6472dd9b19ae8307d840…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
f908bdea by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Factor out len_from_bitlen() function.
- - - - -
9fd872ff by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Use bit length instead of key size in key_import_pair().
- - - - -
b76153b9 by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Handle importing ECDSA_P384 private blob.
- - - - -
b2eb371b by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Support ECDSA_P521 algorithm.
- - - - -
8e91669d by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt/tests: Test ECDH_384 same way as ECDH_256.
- - - - -
67674ef7 by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Support ECDH_P521 algorithm.
- - - - -
fdaea1ff by Paul Gofman at 2025-08-15T14:52:10+02:00
bcrypt: Check output size early in key_asymmetric_encrypt() for RSA.
- - - - -
5 changed files:
- dlls/bcrypt/bcrypt_internal.h
- dlls/bcrypt/bcrypt_main.c
- dlls/bcrypt/gnutls.c
- dlls/bcrypt/tests/bcrypt.c
- include/bcrypt.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/17cb5c63fd06fd82686ae1a7d1186…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/17cb5c63fd06fd82686ae1a7d1186…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
6c65eca8 by Alexandre Julliard at 2025-08-15T14:33:53+02:00
wbemprox: Get the CPU count from the PEB.
To support 256+ cores.
- - - - -
53d08eb9 by Alexandre Julliard at 2025-08-15T14:52:10+02:00
taskmgr: Get the CPU count from the PEB.
To support 256+ cores.
- - - - -
1dab86f6 by Alexandre Julliard at 2025-08-15T14:52:10+02:00
ntdll/tests: Get the CPU count from the PEB.
To support 256+ cores.
- - - - -
a88468b3 by Alexandre Julliard at 2025-08-15T14:52:10+02:00
kernel32/tests: Get the CPU count from the PEB.
To support 256+ cores.
- - - - -
17cb5c63 by Alexandre Julliard at 2025-08-15T14:52:10+02:00
cmd/tests: Fix cleanup of created files.
- - - - -
5 changed files:
- dlls/kernel32/tests/time.c
- dlls/ntdll/tests/info.c
- dlls/wbemprox/builtin.c
- programs/cmd/tests/test_builtins.cmd
- programs/taskmgr/perfdata.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/02694cbe654e90c9269d4f105af89…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/02694cbe654e90c9269d4f105af89…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d6f0a0a0 by Jacek Caban at 2025-08-15T07:16:19+02:00
opengl32: Use generated thunk for wglCreatePbufferARB.
- - - - -
ec8f4a17 by Jacek Caban at 2025-08-15T07:16:23+02:00
opengl32: Use generated thunk for wglGetPbufferDCARB.
- - - - -
02694cbe by Jacek Caban at 2025-08-15T07:16:26+02:00
opengl32: Use generated thunk for wglGetProcAddress.
- - - - -
4 changed files:
- dlls/opengl32/make_opengl
- dlls/opengl32/unix_thunks.c
- dlls/opengl32/unix_thunks.h
- dlls/opengl32/unix_wgl.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5124303fb52f1e359c82c0bd2e16b…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5124303fb52f1e359c82c0bd2e16b…
You're receiving this email because of your account on gitlab.winehq.org.