Alistair Leslie-Hughes pushed to branch master at wine / wine-staging
Commits:
65b72cb9 by Alistair Leslie-Hughes at 2024-11-14T06:35:51+11:00
Updated vkd3d-latest patchset
- - - - -
3f86dff4 by Alistair Leslie-Hughes at 2024-11-15T11:13:11+11:00
Rebase against ab40b7fd8686345bf77a27ceb12d4dfbaa753829.
- - - - -
10 changed files:
- patches/ntdll-Junction_Points/0001-ntdll-Add-support-for-creating-reparse-points.patch
- patches/vkd3d-latest/0001-Updated-vkd3d-to-03ad04c89004c7f800c5b1a0ea7ba286229.patch
- patches/vkd3d-latest/0002-Updated-vkd3d-to-4889c71857ce2152a9c9e014b9f5831f96d.patch
- patches/vkd3d-latest/0003-Updated-vkd3d-to-91701f83035c0d67d1ab917e0f6b73f91e8.patch
- patches/vkd3d-latest/0004-Updated-vkd3d-to-5eff8bf9188c401cc31ce14d42798dc3751.patch
- patches/vkd3d-latest/0005-Updated-vkd3d-to-ad2208b726f825305f69d099790208e4e4f.patch
- patches/vkd3d-latest/0006-Updated-vkd3d-to-794f4c30f4873841aaa0c5c9745ee732437.patch
- patches/vkd3d-latest/0007-Updated-vkd3d-to-756b98f093ba26e8cd4d4fed1caa04a5c0d.patch
- + patches/vkd3d-latest/0008-Updated-vkd3d-to-c010fb63a1290721271046d535d7f429a24.patch
- staging/upstream-commit
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/compare/32abf9fc9756ad912b39a…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine-staging/-/compare/32abf9fc9756ad912b39a…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
194ada75 by Alexandre Julliard at 2024-11-14T11:52:26+01:00
rundll32: Don't bother cleaning up at process exit.
- - - - -
c20bf255 by Alexandre Julliard at 2024-11-14T11:53:03+01:00
rundll32: Use crt allocation functions.
- - - - -
5c597119 by Alexandre Julliard at 2024-11-14T11:54:35+01:00
rundll32: Rewrite command line parsing.
Windows doesn't do any fancy unescaping.
- - - - -
9f8ef439 by Alexandre Julliard at 2024-11-14T21:56:33+01:00
rundll32: Restart itself if the dll is for a different architecture.
Based on the corresponding code in regsvr32.
- - - - -
6d1df55b by Alexandre Julliard at 2024-11-14T21:56:33+01:00
ntdll: Always return 0 length on failure in SystemFirmwareTableInformation.
- - - - -
8e244258 by Alexandre Julliard at 2024-11-14T21:56:33+01:00
ntdll/tests: Fix a test failure on 64-bit Windows.
- - - - -
4 changed files:
- dlls/ntdll/tests/rtl.c
- dlls/ntdll/unix/system.c
- programs/rundll32/Makefile.in
- programs/rundll32/rundll32.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/8a87ce3c4f96f20e7bb4693d11158…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/8a87ce3c4f96f20e7bb4693d11158…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
0f847982 by Jacek Caban at 2024-11-14T11:10:28+01:00
configure: Use -ffunction-sections for PE targets.
- - - - -
f47da430 by Jacek Caban at 2024-11-14T11:10:28+01:00
winegcc: Pass -fms-hotpatch to the linker.
The -fms-hotpatch flag is relevant for both the compiler and the linker.
- - - - -
8a87ce3c by Jacek Caban at 2024-11-14T11:10:28+01:00
configure: Use -fms-hotpatch when available.
On Clang, this flag serves as a replacement for the __ms_hook_prologue__ attribute.
- - - - -
4 changed files:
- aclocal.m4
- configure
- configure.ac
- tools/winegcc/winegcc.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/0eda6a76c7a2195c77a5be84d5374…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/0eda6a76c7a2195c77a5be84d5374…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
12755eeb by Gabriel Ivăncescu at 2024-11-13T23:14:30+01:00
mshtml: Reset builtin function props to their default values when deleted.
The previous tests bailed out too early on IE8, and did not test builtin
props. Also added todos for tests that we did not even test because of
returning early.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
5947a66f by Gabriel Ivăncescu at 2024-11-13T23:14:33+01:00
mshtml: Throw invalid action for IE8 window prop deletion.
Instead of E_NOTIMPL.
We can't use the dispex's delete because it also applies to dynamic and
builtin props and it also happens too late when deleting by name (after
looking it up), where existing tests show it doesn't look up the dispid
at all.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
85331da4 by Gabriel Ivăncescu at 2024-11-13T23:14:35+01:00
jscript: Add basic semi-stub implementation of GetMemberProperties.
Also add tests for GetMemberName and DeleteMemberBy* which we did not have.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
18aefb5d by Gabriel Ivăncescu at 2024-11-13T23:14:36+01:00
mshtml: Use BSTR to store global prop's name.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
055bf9f5 by Gabriel Ivăncescu at 2024-11-13T23:14:36+01:00
mshtml: Override window's element prop directly rather than using GLOBAL_DISPEXVAR.
When GLOBAL_DISPEXVAR is used, we store the id of the dynamic prop and
invoke it using the same id. But this is not the case if we have a jsdisp,
which is redirected from InvokeEx and results in an invalid id.
The actual way this works on native (in IE9+) is that element/frame props
are special and not part of the window object at all. They're actually
looked up after the prototype is, in a special way, but that requires a
revamp. Storing over it just creates an actual prop on the window (which
is what we are doing here).
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
9b264c94 by Gabriel Ivăncescu at 2024-11-13T23:14:47+01:00
mshtml: Check if window global prop still exists before returning its id.
We have to introduce special handling for jscript, as it's probably integrated
on native mshtml.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
38f1ce32 by Gabriel Ivăncescu at 2024-11-13T23:14:48+01:00
mshtml: Forward deletion for GLOBAL_SCRIPTVAR to the script's object.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
8 changed files:
- dlls/jscript/dispex.c
- dlls/jscript/tests/run.c
- dlls/mshtml/dispex.c
- dlls/mshtml/htmlscript.h
- dlls/mshtml/htmlwindow.c
- dlls/mshtml/mshtml_private.h
- dlls/mshtml/script.c
- dlls/mshtml/tests/documentmode.js
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e3258e7620ac30f5570bd939ea0d3…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/e3258e7620ac30f5570bd939ea0d3…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
683e11ae by Elizabeth Figura at 2024-11-14T14:12:13+01:00
vkd3d-shader/hlsl: Silence a spurious -Wmaybe-uninitialized in sm4_generate_vsir_instr_dcl_semantic().
- - - - -
0dc07f5c by Elizabeth Figura at 2024-11-14T14:12:13+01:00
vkd3d-shader: Silence a spurious -Wmaybe-uninitialized in vsir_program_insert_alpha_test().
- - - - -
2 changed files:
- libs/vkd3d-shader/hlsl_codegen.c
- libs/vkd3d-shader/ir.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/72394d9ae39bbdd95dae5714527e…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/72394d9ae39bbdd95dae5714527e…
You're receiving this email because of your account on gitlab.winehq.org.