Alexandre Julliard pushed to branch master at wine / wine
Commits:
888723ee by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd/tests: Add tests about substring substitution in variable expansion.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
94c61ed7 by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd: Fix substring substitution in variable expansion.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57290
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
68b3826d by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd: Implement 'touch' equivalent in COPY builtin.
MSDN documents a way to 'touch' a file in CMD.EXE with:
COPY /B file.ext+,,
(and actually the /B switch doesn't matter).
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
7b638dd0 by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd/tests: Add test about IF EXIST.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
f2174452 by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd: Modifiers in tilde variable expansion are case insensitive.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
d254d4ce by Eric Pouech at 2024-11-12T21:52:24+01:00
cmd: Fix 'IF EXIST DIRECTORY' test condition evaluation.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
5 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/wcmdmain.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/a5e04fa968f62a22cf3bc475e02e6…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/a5e04fa968f62a22cf3bc475e02e6…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
b5be39cf by Eric Pouech at 2024-11-12T21:52:24+01:00
kernel32/tests: Don't hardcode page size in buffer size.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
a7900c45 by Eric Pouech at 2024-11-12T21:52:24+01:00
advapi32/tests: Fix typo in manifest constant.
Harmless, the actual values are the same.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
fb477402 by Eric Pouech at 2024-11-12T21:52:24+01:00
advapi32: Test some other cases of process access rights mapping.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
a5e04fa9 by Eric Pouech at 2024-11-12T21:52:24+01:00
server: Amend process rights mapping.
PROCESS_VM_OPERATION | PROCESS_VM_WRITE grants
PROCESS_QUERY_LIMITED_INFORMATION rights.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com>
- - - - -
3 changed files:
- dlls/advapi32/tests/security.c
- dlls/kernel32/tests/virtual.c
- server/process.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/52838daec507a6340d57501d9a6dc…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/52838daec507a6340d57501d9a6dc…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d5ee7346 by Connor McAdams at 2024-11-12T21:52:23+01:00
d3dx9/tests: Include ddraw.h in surface.c for DDS header flag definitions.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
41ec0064 by Connor McAdams at 2024-11-12T21:52:24+01:00
d3dx9: Don't attempt to save palettized surfaces in D3DXSaveSurfaceToFileInMemory().
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
8effb152 by Connor McAdams at 2024-11-12T21:52:24+01:00
d3dx9/tests: Add more tests for saving surfaces as DDS files.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
821c25d6 by Connor McAdams at 2024-11-12T21:52:24+01:00
d3dx9: Improve save_dds_surface_to_memory().
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
6d5101f3 by Connor McAdams at 2024-11-12T21:52:24+01:00
d3dx9: Set the DDSCAPS_ALPHA flag when saving DDS files with a pixel format containing an alpha channel.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
3900f6b7 by Connor McAdams at 2024-11-12T21:52:24+01:00
d3dx9: Add support for saving paletted surfaces to DDS files.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
2 changed files:
- dlls/d3dx9_36/surface.c
- dlls/d3dx9_36/tests/surface.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5fe083ee8d69d48ddd9a906399a3d…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/5fe083ee8d69d48ddd9a906399a3d…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
5fe083ee by Yuxuan Shui at 2024-11-12T21:52:23+01:00
dinput: Keep the module around while input thread is running.
So we don't crash if the application unloads dinput. This can only happen if the application didn't
release all dinput objects before unloading the module, which we have observed the Yakuza games to
do.
- - - - -
1 changed file:
- dlls/dinput/dinput_main.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/5fe083ee8d69d48ddd9a906399a3d5…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/5fe083ee8d69d48ddd9a906399a3d5…
You're receiving this email because of your account on gitlab.winehq.org.