https://bugs.winehq.org/show_bug.cgi?id=46107
--- Comment #46 from Louis Lenders xerox.xerox2000x@gmail.com --- (In reply to Tom from comment #45) In this PC, I was unable to
install any .net package newer than 3.5 with winetricks, they run into stack overflow error or the install process simply stops.
Yeah, that`s a nuisance. FYI: I used (only) 'winetricks dotnet48', that one hangs too at a certain moment; when you do 'wineserver -k' in another terminal window, it proceeds and (seems to at least) ends properly
Additional note: instead of disabling dwrite, the hack below also worked for me: diff --git a/dlls/dwrite/main.c b/dlls/dwrite/main.c index a96874b2c2..d600b3b6d8 100644 --- a/dlls/dwrite/main.c +++ b/dlls/dwrite/main.c @@ -1437,8 +1437,7 @@ static HRESULT WINAPI dwritefactory3_CreateCustomRenderingParams(IDWriteFactory7 TRACE("%p, %.8e, %.8e, %.8e, %.8e, %d, %d, %d, %p.\n", iface, gamma, contrast, grayscale_contrast, cleartype_level, pixel_geometry, rendering_mode, gridfit_mode, params);
- return create_renderingparams(gamma, contrast, grayscale_contrast, cleartype_level, pixel_geometry, rendering_mode, - gridfit_mode, params); + return E_NOTIMPL; }
static HRESULT WINAPI dwritefactory3_CreateFontFaceReference_(IDWriteFactory7 *iface, IDWriteFontFile *file,