https://bugs.winehq.org/show_bug.cgi?id=55795
Bug ID: 55795
Summary: .NET 8 SDK Installer does not finish setup
Product: Wine
Version: 8.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: makiwolf(a)outlook.at
Distribution: ---
Created attachment 75279
--> https://bugs.winehq.org/attachment.cgi?id=75279
log
.NET 8 SDK Installer Windows x64 does not finish setup.
https://dotnet.microsoft.com/en-us/download/dotnet/8.0
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55165
Bug ID: 55165
Summary: Age of Empires II Definitive Edition quits on startup,
due to WinVerifyTrust() failing on game binaries.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wintrust
Assignee: wine-bugs(a)winehq.org
Reporter: david(a)davidgow.net
Distribution: ---
The latest update of Age of Empires II: Definitive Edition no longer runs under
wine and wine derivatives like Proton, Crossover, etc. This is because the
updated version has an anti-tampering check which calls WinVerifyTrust() on all
of the bundled .exe and .dll files (even those the game doesn't use).
Under Wine, WinVerifyTrust() fails with TRUST_E_CERT_SIGNATURE on these PE
files, even though it works on other signed executables.
Patching wine to always return 0 from WinVerifyTrust() allows the game to
start, and to run successfully. See:
https://github.com/ValveSoftware/Proton/issues/3189#issuecomment-1610974028
I've written a simple program which calls WinVerifyTrust() on a file and prints
the error:
(source): https://davidgow.net/stuff/trustchk.c
(x86_64 binary): https://davidgow.net/stuff/trustchk64.exe
The trustchk64.exe binary is signed, so "trustchk64.exe trustchk64.exe" prints:
trustchk64.exe: 0 (Success. )
Running against an unsigned binary gives:
trustchk.exe: 800B0100 (No Signature found in file. )
Running against AoE2:DE's AoE2DE_s.exe file (or any other .exe or .dll from the
game) fails with:
AoE2DE_s.exe: 80096004 (TRUST_E_CERT_SIGNATURE: The signature of the
certificate cannot be verified.)
I've extracted the offending executable's signature with osslsigncode
extract-signature:
https://davidgow.net/stuff/AoE2DE_s.sig
Equally, I've verified the executable signature with osslsigncode:
https://davidgow.net/stuff/AoE2DE_s.sig-verify.txt
The Steam game info for the affected version is:
App ID: 813780
Build ID: 11543327
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55058
Bug ID: 55058
Summary: dbghelp:dbghelp - SymRefreshModuleList() sometimes
returns 0 in 64-bit Wine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dbghelp
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
dbghelp:dbghelp - SymRefreshModuleList() sometimes returns 0 in 64-bit Wine:
dbghelp.c:746: Test failed: SymRefreshModuleList failed: 0
See https://test.winehq.org/data/patterns.html#dbghelp:dbghelp
This started happening systematically in the nightly tests on 2023-06-12, but
only in 3 of the 5 64-bit Wine test configurations:
* fails gitlab-debian-64 (Debian 11 container)
* fails debian11b-wow64 (Debian 11 QEmu VM)
* success debiant-wow64 (Debian Testing QEmu VM)
* fails fgtb-debian11-wow64 (Debian 11 QEmu VM)
* success fg-deb64-wow64 (Debian 11.7 QEmu VM)
Despite happening systematically in the nightlies I have not been able to
reproduce the failure reliably.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54962
Bug ID: 54962
Summary: GDI+ text rendering does not handle carriage returns
Product: Wine
Version: 8.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: klightspeed(a)netspace.net.au
Distribution: ---
Created attachment 74489
--> https://bugs.winehq.org/attachment.cgi?id=74489
C++ program reproducing issue
gdip_format_string does not currently handle CR-LF sequences in text to
be drawn. This results in boxes being rendered on the end of each line
rendered by e.g. Graphics::DrawString when the string contains
CR-LF (\r\n) newlines.
Comparing to the behaviour on Windows, it appears that Windows renders
carriage returns as zero-width characters.
Comparing the values filled into the lpnDx parameter to
GetTextExtentExPointW, Windows gives the characters '\r', '\n', and '\t'
a width of 0, while wine gives them the same width as any other unknown
character.
Windows:
Character offsets: "H" (12) "e" (21) "l" (24) "l" (27) "o" (36) "\u000d" (36)
"\u000a" (36) "W" (51) "o" (60) "r" (65) "l" (68) "d" (77)
wine:
Character offsets: "H" (12) "e" (21) "l" (25) "l" (29) "o" (38) "\u000d" (43)
"\u000a" (48) "W" (63) "o" (72) "r" (77) "l" (81) "d" (90)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53287
Bug ID: 53287
Summary: MxManagementCenter crashes on unimplemented function
msvcp140.dll.??0?$codecvt@_SDU_Mbstatet@@@std@@QEAA@_K
@Z when adding a camera
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 72654
--> https://bugs.winehq.org/attachment.cgi?id=72654
Console output
To reproduce, open the program, click "Add Devices", click the plus sign, type
127.0.0.1 in the URL box, and click the X at the top-right corner of the pop-up
dialog.
$ sha256sum MxManagementCenter-2.6_Setup-win64.exe
c728c75a259fc17d7a30bb9f19fb0179a49ae7f1ee69e28d21d1558ef0134654
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34197
Bug #: 34197
Summary: Rootmagic 6 Invalid operation GDI+ (Code 1)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Windows
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivebeeneverywheremate(a)gmail.com
Classification: Unclassified
I have tried to open Rootsmagic 6 on Linux Mint 13 using Wine 1.4. A message
dialog box appears with a message "Invalid operation in GDI+ (Code:1)". There
is no issue with Wine opening Rootsmagic 4.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55929
Bug ID: 55929
Summary: wined3d: wined3d_state_get_ffp_texture() breaks
DragonAge Origins
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: arusanu.bu(a)gmail.com
Distribution: ---
Commit 831a41ee34b6ed5974db7a0864e7aeac34c936a9 breaks "Dragon Age Origins"
game. The introductory cinematic works, but trying to load or start a new game
crashes the game. Lately, there were no problems with launching/playing the
game up to this commit.
The only errors I see when the crash is happening are:
"
0934:err:msvcrt:_wassert (L"idx <=
WINED3D_MAX_FFP_TEXTURES",L"dlls/wined3d/wined3d_private.h",3941)
wine client error:5f8: write: Bad file descriptor
"
System: Mageia Linux x86_64
Wine: 8.20-git
Wine bottle is 64-bit where the game is installed along with the EA_Desktop
game launcher.
I'll be glad to do any tests to solve this.
Regards,A
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55898
Bug ID: 55898
Summary: WinSCP crashes with wine-8.20
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: uxtheme
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
WinSCP crashes with wine-8.20.
Tested with this package:
https://sourceforge.net/projects/winscp/files/WinSCP/6.0.1%20beta/WinSCP-6.…
A git bisect shows following:
29d5ce6b7a40635e2c4904ece9b8381a8132f248 is the first broken commit
commit 29d5ce6b7a40635e2c4904ece9b8381a8132f248
Author: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Date: Tue Oct 31 07:59:03 2023 +0100
uxtheme: Add stub for AllowDarkModeForWindow.
Reverting this commit on top of wine-8.20 makes the crash go away,
so looks like kind of a regression.
Running with +relay shows following:
0114:0118:Call KERNEL32.GetProcAddress(79240000,00000085) ret=00687165
0114:0118:Ret KERNEL32.GetProcAddress() retval=79241dc0 ret=00687165
0114:0118:Call KERNEL32.GetProcAddress(79240000,00000068) ret=00687165
0114:0118:Ret KERNEL32.GetProcAddress() retval=79241ce0 ret=00687165
0114:0118:Call KERNEL32.GetProcAddress(79240000,00000087) ret=00687165
0114:0118:Ret KERNEL32.GetProcAddress() retval=79241de0 ret=00687165
0114:0118:Call uxtheme.135(00000001) ret=00866406
0114:0118:fixme:uxtheme:SetPreferredAppMode 1: stub
0114:0118:Ret uxtheme.135() retval=00000000 ret=00866406
0114:0118:Call uxtheme.IsThemePartDefined(0000001e,00401876,0140255d)
ret=0086640c
0114:0118:Ret uxtheme.IsThemePartDefined() retval=00000000 ret=0086640c
0114:0118:Call
ntdll.NtCreateEvent(01cff8f4,001f0003,01cff8f8,00000000,00000000) ret=7b6d42d5
0114:0118:Ret ntdll.NtCreateEvent() retval=00000000 ret=7b6d42d5
wine: Unhandled page fault on execute access to 7FFD1000 at address 7FFD1000
(thread 0118), starting debugger...
Which seems to translate to this WinSCP sources:
https://github.com/winscp/winscp/blob/7e61bc1e1fad5267cb4c476994ad460ffab17…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55770
Bug ID: 55770
Summary: Port Royale 2: flickering in the menus and during
gameplay
Product: Wine
Version: 8.0-rc3
Hardware: x86-64
URL: https://www.moddb.com/games/port-royale-2/downloads/po
rt-royale-2-demo
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 379ae701c04046661a092cacd7263ca97101f51b
Distribution: ArchLinux
There are noticeable visual glitches in Port Royale 2 in the menus and during
gameplay too. Also affects Port Royale 1.
Reproduced with nouveau and Nvidia binary drivers 535.43.11.
Reverting commit 379ae701c04046661a092cacd7263ca97101f51b fixes the problem.
port_royale_2_eng_demo.zip (235 MB)
md5: 8e264bcdc7793e9affc2b7edf10d2624
wine-8.17-190-g8943fcbca49
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55709
Bug ID: 55709
Summary: Flutter apps that use the local_auth package need
Windows.Security.Credentials.UI.UserConsentVerifier
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75217
--> https://bugs.winehq.org/attachment.cgi?id=75217
Flutter local_auth initialization demo
I have a proprietary Flutter app, that I can't share, that uses the local_auth
package: https://pub.dev/packages/local_auth
Before crashing, messages like the following are printed:
0114:fixme:combase:RoGetActivationFactory
(L"Windows.Security.Credentials.UI.UserConsentVerifier",
{af4f3f91-564c-4ddc-b8b5-973447627c65}, 000000000011E890): semi-stub
0114:err:combase:RoGetActivationFactory Failed to find library for
L"Windows.Security.Credentials.UI.UserConsentVerifier"
0114:fixme:combase:RoOriginateLanguageException 0x80040154, L"",
0000000000000000: stub
wine: Call from 0000000174013C07 to unimplemented function
combase.dll.RoFailFastWithErrorContext, aborting
I'm attaching a small demo app I made that crashes in the same way.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55660
Bug ID: 55660
Summary: saitek X52-pro mouse Y axis is broken
Product: Wine
Version: 8.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hid
Assignee: wine-bugs(a)winehq.org
Reporter: michaelsnip(a)hotmail.com
Distribution: ---
when moving the mouse vertical the mouse axis breaks and presses random
buttons,
other versions of wine (eg. proton) have the same behaviour.
I use a driver called libX52 for mouse movement and led control.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54554
Bug ID: 54554
Summary: ntdll:file - test_set_io_completion() gets unexpected
count values on Windows 11
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
ntdll:file - test_set_io_completion() gets unexpected count values on Windows
11:
file.c:989: Test failed: wrong count 0
file.c:1057: Test failed: wrong count 0
file.c:1062: Test failed: wrong count 0
See https://test.winehq.org/data/patterns.html#ntdll:file
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55909
Bug ID: 55909
Summary: wine does not start with free(): invalid pointer
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ktmizugaki+wine(a)gmail.com
Distribution: ---
I recently noticed wine does not start properly.
I am using wine-stable from winehq repository for debian 11 (bullseye).
While wineserver is not running, when I run `wine winecfg`, it prints errors
and exits.
If I run `wine winecfg` immediately after it, then it starts normaly.
I tested same thing with wine-devel 8.20 and it is reproduced.
But with wine-devel, second invocation does not start winecfg.
It stuck after saying "starting debugger..." instead.
I only use i386 version of wine and amd64 version is not installed.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55888
Bug ID: 55888
Summary: Quicken stopped working after upgrading to wine 8.20
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: casey.coltrin(a)gmail.com
Distribution: ---
Created attachment 75424
--> https://bugs.winehq.org/attachment.cgi?id=75424
output when starting quicken
I've been using Wine to run Quicken for almost a year now. Since Wine 8.20 was
installed Quicken no longer launches, I get the errors in the attached log. I
was able to successfully re-run the installer, but was still not able to run
the program after reinstalling.
I installed Quicken using the instructions here
https://appdb.winehq.org/objectManager.php?sClass=version&iId=38802&iTestin…
and launch it by running
WINEPREFIX=~/.quicken-wine wine '.quicken-wine/drive_c/Program
Files/Quicken/qw.exe'
I'm running EndeavourOS X86-64 with kernel 6.6.1
Quicken can be downloaded from
https://www.quicken.com/activate?step=initDownload&os=win&store=US
I believe it can be installed without having an account.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55788
Bug ID: 55788
Summary: Wine with wayland driver: GNOME: no cursor over Wine
windows when 2 monitors connected
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bigfoothart(a)gmail.com
Distribution: ---
* Arch
* GNOME 45
* 2011 PC, iGPU Intel Ivybridge (Gen7) (Also tried Nvidia 3060)
* 2 monitors (VGA and DVI connected) / (also tried DisplayPort and HDMI)
Steps to reproduce:
2 monitors (though on laptop with external monitor the problem is not
reproducible)
wine 8.17:
enable it's Wayland driver by following:
Run wine regedit
[HKEY_CURRENT_USER\Software\Wine\Drivers] Graphics="x11,wayland"
Run DISPLAY= wine notepad
When hovering mouse over notepad window, the cursor is not visible. If I leave
only 1 monitor, cursor appears.
Weston and KDE don't have this effect.
Related issue in GNOME is here
https://gitlab.gnome.org/GNOME/mutter/-/issues/3088
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55437
Bug ID: 55437
Summary: Death Stranding: "Start" and "Back" buttons are
reversed
Product: Wine
Version: 8.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windows.gaming.input
Assignee: wine-bugs(a)winehq.org
Reporter: tinozzo123(a)tutanota.com
Distribution: ---
Created attachment 74996
--> https://bugs.winehq.org/attachment.cgi?id=74996
Logs with WINEDEBUG=+input
Like the title says: when playing Death Stranding with a controller (tested on
a Switch Pro Controller and an Xbox 360), the mapping for the "Start" and
"Back" buttons are reversed.
This means that "Start" makes the character yell, and "Back" pauses the game
(instead of the opposite).
If I test the mapping with `wine control`, the mapping is normal.
Tested the Epic Games version of the game (launched with Legendary). Obviously,
needs DXVK and vkd3d-proton to launch it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55403
Bug ID: 55403
Summary: Office 2021 needs
Windows.Management.Deployment.PackageManager
Product: Wine
Version: 8.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
I'm thinking about buying Office 2021 to run it in Wine, but I wanted to try
before I bought so I found a page linking to official Office 2021 cd images and
downloaded the English version
(https://officecdn.microsoft.com/db/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/med…)
Immediately after starting setup, the installer quits with the following log:
002c:fixme:winediag:LdrInitializeThunk wine-staging 8.12 is a testing version
containing experimental patches.
002c:fixme:winediag:LdrInitializeThunk Please mention your exact version when
filing bug reports on winehq.org.
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:wineusb:query_id Unhandled ID query type 0x5.
0110:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
0110:fixme:cryptasn:CryptDecodeObjectEx Unsupported decoder for lpszStructType
1.3.6.1.4.1.311.2.1.12
0110:fixme:cryptasn:CryptDecodeObjectEx Unsupported decoder for lpszStructType
1.3.6.1.4.1.311.2.1.12
0110:fixme:ole:CoInitializeSecurity 00000000, -1, 00000000, 00000000, 0, 3,
00000000, 0, 00000000 stub
0110:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
0110:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 009E7331, 56) stub
0110:fixme:ver:GetCurrentPackageId (00C2EBAC 00000000): stub
0110:fixme:nls:get_dummy_preferred_ui_language (0x8 0x809 00C2E904 00000000
00C2E900) returning a dummy value (current locale)
0110:fixme:nls:get_dummy_preferred_ui_language (0x8 0x809 00C2E904 00A736F0
00C2E900) returning a dummy value (current locale)
0110:fixme:ver:GetCurrentPackageId (00C2E424 00000000): stub
0114:fixme:sync:SetWaitableTimerEx (000000E8, 0241DF30, 0, 00000000, 00000000,
00000000, 10000) semi-stub
0110:fixme:ntdll:fill_battery_state Multiple batteries found, only reporting on
the first
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0058:fixme:nsi:ipv6_forward_enumerate_all not implemented
0110:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
0110:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
0110:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
0110:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
012c:fixme:combase:RoActivateInstance (03A3FDD4, 03A3FDCC): semi-stub
012c:fixme:combase:RoGetActivationFactory
(L"Windows.UI.ViewManagement.UISettings",
{00000035-0000-0000-c000-000000000046}, 03A3FD8C): semi-stub
012c:fixme:ui:uisettings2_get_TextScaleFactor iface 03526724, value 03A3FDB8
stub!
012c:fixme:dwmapi:DwmSetWindowAttribute (00010068, 21, 03A3FE8C, 4) stub
012c:fixme:combase:RoActivateInstance (03A3FD84, 03A3FD7C): semi-stub
012c:fixme:combase:RoGetActivationFactory
(L"Windows.UI.ViewManagement.UISettings",
{00000035-0000-0000-c000-000000000046}, 03A3FD3C): semi-stub
012c:fixme:ui:uisettings2_get_TextScaleFactor iface 03526724, value 03A3FD68
stub!
012c:fixme:combase:RoActivateInstance (03A3FD8C, 03A3FD84): semi-stub
012c:fixme:combase:RoGetActivationFactory
(L"Windows.UI.ViewManagement.UISettings",
{00000035-0000-0000-c000-000000000046}, 03A3FD44): semi-stub
012c:fixme:ui:uisettings2_get_TextScaleFactor iface 03526724, value 03A3FD70
stub!
0110:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0110:fixme:ver:GetPackagesByPackageFamily
(L"Microsoft.Office.Desktop_8wekyb3d8bbwe" 00C2E848 00000000 00C2E84C
00000000): stub
0110:fixme:combase:RoGetActivationFactory
(L"Windows.Management.Deployment.PackageManager",
{00000035-0000-0000-c000-000000000046}, 00C2DF2C): semi-stub
0110:err:combase:RoGetActivationFactory Failed to find library for
L"Windows.Management.Deployment.PackageManager"
0110:fixme:combase:RoOriginateLanguageException 0x80040154, L"", 00000000: stub
0110:err:seh:NtRaiseException Unhandled exception code c0000409 flags 1 addr
0x7fe2df
Seems like it's because Windows.Management.Deployment.PackageManager does not
exist
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55215
Bug ID: 55215
Summary: user32:text - test_DrawTextCalcRect() crashes on
Windows
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:text - test_DrawTextCalcRect() crashes on Windows:
text.c:537: this is the last test seen before the exception
0500:text: unhandled exception c0000005 at 77CF9F08
See https://test.winehq.org/data/patterns.html#user32:text
The crash most likely happens on this line due to the invalid LPRECT pointer:
textheight = DrawTextExA((HDC)0xdeadbeef, emptystring, 100000,
(LPRECT)0xdeadbeef, 0, 0);
Which was introduced by this commit:
commit 35c8f15bc67f7602438fe0c39a69ff6ddf6b8297
Author: Fabian Maurer <dark.shadow4(a)web.de>
AuthorDate: Mon Jun 12 22:02:45 2023 +0200
Commit: Alexandre Julliard <julliard(a)winehq.org>
CommitDate: Wed Jul 5 21:06:38 2023 +0200
user32: Ignore invalid parameters in DrawTextEx when HDC is invalid.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47089
Signed-off-by: Fabian Maurer <dark.shadow4(a)web.de>
Note that this crash is specific to the official winetest.exe builds, probably
due to some memory layout difference. Regardless it means the test is
incorrect.
Also this crash was detected by the TestBot so MR!3049 should not have been
merged.
https://gitlab.winehq.org/wine/wine/-/merge_requests/3049
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22596
Summary: PhotoScape unable to change/save files under Wine
1.1.43
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daquirm(a)seznam.cz
CC: daquirm(a)seznam.cz
Created an attachment (id=27721)
--> (http://bugs.winehq.org/attachment.cgi?id=27721)
LOG from the terminal
OS: Ubuntu 10.04 64bit
Wine 1.1.42 and 1.1.43 (tried Windows XP and Windows 7 compatibility mode)
trying to run PhotoScape v3.40
Problem: PhotoScape is unable to save or edit any files/images. It looks like
it's running just with read only permission.
Solution: Downgrade to Wine 1.1.31
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54839
Bug ID: 54839
Summary: 3DMark 2000: missing benchmark information
Product: Wine
Version: 8.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: matheus.venturini(a)acad.ufsm.br
Distribution: ---
Created attachment 74341
--> https://bugs.winehq.org/attachment.cgi?id=74341
3DMark 2000 in Wine 8.5
Steps to reproduce:
1. Download and install 3DMark 2000 from the link above. The website has the
authentication key, but it is not necessary to complete the installation.
2. Launch 3DMark 2000 and and click "run default benchmark."
In between each benchmark test a screen is displayed which shows information
about your current settings and the next test to be performed, as well as the
amount of completed tests and remaining time until completion. In Wine 8.5 this
information does not appear.
Like with issue 54828 I would greatly appreciate if someone could reproduce
this, I always try to check if bugs can be reproduced in a VM but 3DMark's
software is very picky about the graphics card you have installed.
Another weird thing I experienced was with the "Texture Rendering Speed Test."
The 8MB textures version of this test has strangely wobbly and warping textures
which makes it seem like it is running at very low framerate. The other
variations of this test run perfectly.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=9127
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #117 from Alexandre Julliard <julliard(a)winehq.org> ---
Closing bugs fixed in 8.21.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55640
Bug ID: 55640
Summary: ModOrganizer 2.5.0 beta 5+ (Qt 6.5) requires a better
uisettings3::GetColorValue implementation
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: qsniyg(a)protonmail.com
Distribution: ---
Specifically, these values are required:
Accent, AccentDark1, AccentDark2, AccentDark3, AccentLight1, AccentLight2,
AccentLight3
From:
https://github.com/qt/qtbase/blob/ba98644180bcaf40341a9005abe93575cf45cc5a/…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55504
Bug ID: 55504
Summary: .NET 7 not working
Product: Wine
Version: 8.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: makiwolf(a)outlook.at
Distribution: ---
Created attachment 75068
--> https://bugs.winehq.org/attachment.cgi?id=75068
backtrace
Can't run new dotnet 7 applications on command line
I have downloaded and installed on a clean ubuntu 23.04 system
https://dotnet.microsoft.com/en-us/download/dotnet/7.0
wine cmd
dotnet new console
dotnet run
OR
wine cmd
dotnet new winforms
dotnet run
Does anyone know if new .NET7 is supported in wine or only the old classic .NET
Framework?
Also can't find the new version in Wine AppDB
https://appdb.winehq.org/objectManager.php?sClass=application&iId=2586
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=55918
Bug ID: 55918
Summary: printf() can overrun the "p10s" buffer with certain
values when using 24-bit precision
Product: Wine
Version: 8.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
Spore, for some reason, sets 24-bit precision on a thread, and when I tried to
enable +d3d, I found that thread crashed with an integer division by zero. The
actual floating point value that triggered the crash is (double)
9.9999982118606567e-01.
The cause is this:
* the log10() call in pf_output_fp() receives 999999940 as an argument
* it returns 9.0, which is... not really correct
* this value is later used to index the p10s array, which is only of length 9
* 0 happens to be the next integer in memory
A quick test suggests that, at least for i386 ucrtbase, native log10() does not
return 9.0, but 8.9999999739423302, which IIRC is the precise value. So
that's... possibly the correct fix.
There may also be a less error-prone and even more efficient way to do that
base-10 logarithm.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.