https://bugs.winehq.org/show_bug.cgi?id=54943
Bug ID: 54943
Summary: The gdipdrawstring function uses the wrong width when
rendering CJK fonts
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: 399989567(a)qq.com
Distribution: ---
1. First create a LOGFONT, and make lfwidth=0, and use the font Tahoma
2. Use Font "font(hdc, &lf)" to create the font
3. Use " graphics.DrawString(string, -1, &font, { 1.0f,1.0f,0,0 }, &format,
&brush);" to render the string
where
WCHAR string[] = L "这里有一些错误".
You will find the Chinese font is too narrow.If you fail to render, make sure
your lfCharSet=134
ps:Don't say there is no Chinese in tahoma so there is a rendering problem, it
has nothing to do with this bug
I researched the bug and found that it is related to the implementation of
gdipdrawstring. The function finally calls GDI32_GdipDrawDriverString, which
uses SelectObject to select the font and ExtTextOutW to output the font.
So the problem can be well abstracted out, the reason for the problem is in the
last selectobject lf.lfwidth=7 (instead of the 0 you set at the beginning)
ps:7 is the result of my computer's calculation
So we can write a simple demo to reproduce this problem:
1.lf.lfWidth = 0;
2.hUnderline = CreateFontIndirectA(&lf);
3.SelectObject(hdc, hUnderline);
4.ExtTextOutW(hdc, x, y, 0, NULL, string, lstrlenW(string), NULL);
5.lf.lfWidth = 7;
6.hUnderline = CreateFontIndirectA(&lf);
7.SelectObject(hdc, hUnderline);
8.ExtTextOutW(hdc, x, y, 0, NULL, string, lstrlenW(string), NULL);
You can find that the strings in 4 are drawn at the correct width, while the
strings in 8 are too narrow; I don't know how to fix this bug, as it also
affects the calculation of the string width
I hope I can get an answer
--
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=40409
Bug ID: 40409
Summary: builtin gdiplus causes K-Shoot Mania to lag in some
menus, native gdiplus causes missing textures
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: lena.stoffler(a)ymail.com
Distribution: ---
Created attachment 54144
--> https://bugs.winehq.org/attachment.cgi?id=54144
log, native gdiplus
K-Shoot Mania AppDB ->
https://appdb.winehq.org/objectManager.php?sClass=application&iId=17474
I did a lot of research to get this game to run normally. I have some
interessting results. Maybe this is fixable?
I'm sure the problem sits in the GDIPlus DLL
Short summary:
builtin: some menus lags really hard (very low framerate, 2~3 + input lag),
all textures are visible
native: normal framerate in all menus, but some missing textures (plain white
spot where the textures should be)
builtin (Wine)
~~~~~~~~~~~~~~
Probably the reason for the heavy lag? Only using builtin gdiplus.
fixme:wincodecs:JpegDecoder_Frame_CopyPalette (0x...,0x...): stub
fixme:gdiplus:GdipCreateBitmapFromGdiDib (0x2002a60, 0x6b10000, 0x6578c8) -
partially implemented
Basically a stub and a partially implemented function. Maybe the game requires
a better GdipCreateBitmapFromGdiDib implementation or the
JpegDecoder_Frame_CopyPalette function. I don't know.
NOTE: The JpegDecoder_Frame_CopyPalette fixme doesn't appear with the native
gdiplus.
native (Windows) - winetricks gdiplus
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
No lag there, but now some textures are missing. Instead of the texture which
should be there, there is only a plain white spot. The 'generated' texture
files are empty files (0 byte).
You can verify this by youself easily: the cache folder is in the game folder.
($GAME/cache)
This is the fixme which is spammed in the terminal when using the native
gdiplus, installed using winetricks.
fixme:bitmap:SetBitmapBits Unhandled partial pixel
The other 2 fixmes from the builtin version are completely gone.
The 2 logs are attached separately for better readability.
--
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=25355
Summary: Time clock SBE 1.2 and 2.2 not working properly on
ubuntu 10.04LTS
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ryanmore2006(a)yahoo.com.ph
Our company used Ubuntu 8.04 install in all computer in all branches. were
using Time clock SBE 1.2 for time logging for all our employees. the said
software were stable in ubuntu 8.04 LTS wine wine version 1.0.
The problem starts when we updated the LINUX OS to Ubuntu 10.04LTS with wine
1.2 install, but something wrong with the some menu can't be seen anymore, we
tried to update the time clock sbe form 1.2 to 2.2 but the unfortunately it did
not fixed the problem. we also updated the version of wine but still the same.
for reference i will attached the screen shot for ubuntu 8.04 and 10.04
Im homping that someone can help me with this problem.
--
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=54890
Bug ID: 54890
Summary: Ultimate Doom Builder will crash if some dialoge boxes
are used
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: beneschork(a)gmail.com
Distribution: ---
Created attachment 74388
--> https://bugs.winehq.org/attachment.cgi?id=74388
Crash log
Whenever I use Ultimate doom Builder, I will often need to change a Thing* ID
or a texture. To do this, I have to click on the linedef or thing to open its
dialog box. There are fields I use to enter a string for the texture name or
and integer for the TID, and whenever I do, wine immediately throws up an error
and I have to save the crash log. This bug is replaceable on my machine, I have
even changed distros.
--
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=27294
Summary: livezilla can't start, complains of missing Verdana
font
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user complained that Livezilla wouldn't start, see
http://forum.winehq.org/viewtopic.php?t=12202
I was able to reproduce this, plus a possible font-related gdiplus bug:
cd $HOME
rm -rf ~/.wine
sh winetricks corefonts dotnet20
wget http://www.livezilla.net/downloads/pubfiles/LiveZilla_3.3.2.2_Full.exe
wine LiveZilla_3.3.2.2_Full.exe
cd ~/".wine/drive_c/Program Files/LiveZilla"
wine LiveZilla
That gets the error
Your system misses the font Microsoft Sans Serif
Copying micross.ttf from a Windows system into ~/.wine/drive_c/windows/Fonts
gets past that. (Dunno if that needs to be added to winetricks,
or if one of the existing fonts in 'allfonts' should satisfy it.)
The next problem is
Your system misses the font Tahoma
Doing
winetricks tahoma gdiplus
gets past that. (Don't know why gdiplus was needed, that's interesting.)
The next problem is the user's error,
Your system misses the font 'Verdana Regular'
Which is funny, because Verdana Regular is already in windows/Fonts,
and WINEDEBUG=+font shows
trace:font:AddFontToList Loading font file
"/home/dank/.wine/dosdevices/c:/windows/Fonts/Verdana.TTF" index 0
trace:font:get_familyname Got localised name L"Verdana"
trace:font:AddFontToList fsCsb = 2000019f 00000000/00000287 00000000 00000000
00000000
trace:font:AddFontToList Added font L"Verdana" L"Regular"
...
trace:font:AddFontToList Loading font file
"/usr/share/fonts/truetype/msttcorefonts/Verdana.ttf" index 0
trace:font:get_familyname Got localised name L"Verdana"
trace:font:AddFontToList Already loaded font L"Verdana" L"Regular" original
version is 10000, this version is 10000
trace:font:AddFontToList Original font is newer so skipping this one
Oddly, at some point, wine forgets about the Regular variant:
trace:font:DumpFontList Family: L"Verdana"
000d:Ret advapi32.RegGetValueW() retval=0000trace:font:DumpFontList L"Bold"
2000019f
000d:Call advapi32.RegGetValueW(0000004c,000trace:font:DumpFontList L"Bold
Italic" 2000019f
Perhaps one of the fonts in /usr/share/fonts is interfering...
--
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=43736
Bug ID: 43736
Summary: PathGradientBrush results in a white shape
Product: Wine
Version: 2.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: norike(a)gmail.com
Distribution: ---
Created attachment 59217
--> https://bugs.winehq.org/attachment.cgi?id=59217
test project with screenshots
We develop a charting library and found some gradients are drawn as solid white
shapes in Wine for Ubuntu. Reducing the issue to the minimum we found the
problem seems to be when drawing a rectangle with a PathGradientBrush.
See the screenshots in the attachment.
- Windows.png is the result of running the .exe in a Windows 10.
- Ubuntu.png is the result of running the .exe in Ubuntu 16.04 using Wine. We
got the same result in Wine 1.6 (?), 2.0.2 and 2.17.
The attachment also contains the .exe and the project sources (made with Visual
Studio 2017).
--
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=33410
Bug #: 33410
Summary: QQ International 1.6 displays its window abnormally
with a black line across
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fangendoucg(a)gmail.com
Classification: Unclassified
Created attachment 44204
--> http://bugs.winehq.org/attachment.cgi?id=44204
screenshot
Hi folks,
While I install QQ International QQIntl1.61.exe, its first window shows with a
threadlet across.See the attachment.
Well, winetricks gdiplus can workaround it.
It's free to download.
$ sha1sum QQIntl1.61.exe
6cd9042f591a7b140e3216df2851c9b7a436be34 QQIntl1.61.exe
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24653
Summary: Builtin GdiPlus doesn't draw lines equally to native
GdiPlus
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boreno(a)gmail.com
Created an attachment (id=31163)
--> (http://bugs.winehq.org/attachment.cgi?id=31163)
Sourcecode that draws GdiPlus pixel-perfection tests. Image that shows tests
drawn using native and builtin GdiPlus.
Lines are off by 1 pixel at either start or end position depending on drawing
operation. Image and source code attached. Marked with severity major since it
ruins pixel-perfection for UI components developed to rely on GdiPlus. In other
words, it looks too ugly to be released to customers.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=32266
Bug #: 32266
Summary: Songr Portable 2.0 fails to start
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Classification: Unclassified
Created attachment 42579
--> http://bugs.winehq.org/attachment.cgi?id=42579
Error log
Songr Portable 2.0 fails to start with current version of Wine, I guess is a
problem with Wine-mono since Songr requires .Net 3.5 to work.
--
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=51449
Bug ID: 51449
Summary: Final Fantasy XIV: Endwalker Benchmark does not launch
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yaomtc(a)protonmail.com
Distribution: ---
Created attachment 70299
--> https://bugs.winehq.org/attachment.cgi?id=70299
This is the terminal output from attempting to start the benchmark.
The benchmark for FFXIV 6.0 does not launch.
--
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=47158
Bug ID: 47158
Summary: FantaMorph 5 is very slow
Product: Wine
Version: 4.7
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
The program works fine, bzt it's very slow. I didn't work much with it, but the
loading takes multiple seconds.
"winetricks gdiplus" makes it a lot faster.
--
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=55717
Bug ID: 55717
Summary: mono's IsOutlineVisible_Line_WithGraphics test fails
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
The
MonoTests.System.Drawing.Drawing2D.GraphicsPathTest.IsOutlineVisible_Line_WithGraphics
test stopped working in Wine. To test, download the Wine Mono tests and run:
$ run-tests.exe
MonoTests.System.Drawing.Drawing2D.GraphicsPathTest.IsOutlineVisible_Line_WithGraphics
This is a regression caused by 0c777a7d5cab90ab59d7a4a6b60c516efa7a9830.
--
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=55989
Bug ID: 55989
Summary: Wine Mono needs to support winmd files (YUR fails to
launch)
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
From https://github.com/ValveSoftware/Proton/issues/7308 (YUR).
The program ships a Windows.winmd file and links to it as a regular .NET
assembly. Wine Mono doesn't find it because it's not looking for a .winmd
extension, but renaming to .dll isn't good enough (though technically it is a
CLR image and does load). We need specific support for winmd assemblies.
--
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=56045
Bug ID: 56045
Summary: RichTextBox crashes the WPF application
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: claytmp+foj0w(a)gmail.com
Distribution: ---
Created attachment 75700
--> https://bugs.winehq.org/attachment.cgi?id=75700
Terminal output and WPF app included
When adding RichTextBox component into the Window Form, the app won't run at
all. It appears that the app crashes if it tries to render the RichTextBox.
Without the RichTextBox, the app would work
--
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=56217
Bug ID: 56217
Summary: Paint Shop Pro 9.01, minor hang when a selection in a
picture is moved
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Hi all
Here follows my second issue report about Paint Shop Pro 9 under Wine 9.x.
It works almost perfectly fine. One regression regarding a hang on exit was
already reported, see bug 56182 for more information.
After some time of testing I found another minor flaw which is most likely
gdiplus.dll related. The screen-output freezes for a short time after a
selected area (in a picture) is moved around for more than two or three pixels.
This is true for both, the built-in and the native gdiplus.dll. It affects only
the drawing of the picture and not the mouse cursor. However, while the bug is
present on both gdiplus variants, there exist still a difference when it
occurs. (That's the reason why I think it is related to gdiplus.)
A gdiplus.dll override to native is also needed for the first startup.
Otherwise it is not possible to close the "Learning center" dialog box. When
that is done the override can be reverted. Note, Paint Shop Pro 9 already
contains an own (quite old) native "gdiplus.dll" file.
It can be said that the built-in gdiplus works apart from that flaw somehow
smoother than the included native version.
The program can be downloaded from here:
https://www.tenforums.com/software-apps/191499-paint-shop-pro-4-12-7-04-8-1…
Note, it can be installed via the "Jasc Paint Shop Pro 9.msi" and "Jasc
Animation Shop 3.msi" files without any registration and also without any
serial.
--
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=37050
Bug ID: 37050
Summary: Wine and FreeSCAN.exe fails to load
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: hd625b(a)gmail.com
Used Lunix Mint17 Terminal and Wine to run FreeSCAN.exe which threw the errors
below. FreeSCAN.exe is from SixSpot Software.
hd625b@MyLunixMint17 ~ $ wine "/home/hd625b/.wine/drive_c/Program
Files/FreeSCAN/FreeSCAN.exe"
Unhandled Exception:
System.TypeLoadException: Could not load type 'FreeSCAN.lblSiteNote' from
assembly 'FreeSCAN, Version=0.8.3.0, Culture=neutral, PublicKeyToken=null'.
at FreeSCAN.My.MyProject+MyForms.get_lblSiteNote () [0x00000] in <filename
unknown>:0
at FreeSCAN.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun ()
[0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at FreeSCAN.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeLoadException: Could not load
type 'FreeSCAN.lblSiteNote' from assembly 'FreeSCAN, Version=0.8.3.0,
Culture=neutral, PublicKeyToken=null'.
at FreeSCAN.My.MyProject+MyForms.get_lblSiteNote () [0x00000] in <filename
unknown>:0
at FreeSCAN.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun ()
[0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at FreeSCAN.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
hd625b@MyLunixMint17 ~ $
--
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=56266
Bug ID: 56266
Summary: EA Desktop does not install
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: helix.graziani(a)hotmail.com
Distribution: ---
Created attachment 75981
--> https://bugs.winehq.org/attachment.cgi?id=75981
Application Log
Running wine-8.18-1766-gc963c4141a0.
OS: Ubuntu 22.04.3 LTS x86_64 (Kernel 5.15.0-91-generic).
To reproduce:
- Download the installer:
https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases…
- Run it
- Click "Let's go"
- Wait
- It should say an error occurred
$ sha1sum EAappInstaller.exe
491248bd5fce30bac23a174f779be01a4542765c EAappInstaller.exe
Attached is the application log.
--
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=46058
Bug ID: 46058
Summary: iPed 7G 2019 (.NET 4.0 app) v13.0.10800 crashes with
System.NotImplementedException at
System.drawing.Graphics.CheckErrorStatus
Product: Wine
Version: 3.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: johntam(a)pedfast.com
Distribution: ---
Created attachment 62644
--> https://bugs.winehq.org/attachment.cgi?id=62644
Screen shot of exception.
Exception occurs when previewing MegaPed pedigree -- if a database is needed
to duplicate the issue please email me.
If one continues after the exception, the pedigree does not render to the
preview window.
Reports all also render as blank. Something else is unimplemented that is not
throwing an exception.
--
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=53947
Bug ID: 53947
Summary: Daily Chthonicle is extremely slow and laggy
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Especially notable when you run it without winecfg's "virtual desktop" on a 4k
screen.
winetricks "gdiplus" works around the issue.
--
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=56049
Bug ID: 56049
Summary: Wine >= 9.0-rc1: 32+64 bit build with -march=znver1
broken (libtiff, regression, gcc-12.2.0, Debian-12)
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: kolAflash(a)kolahilft.de
Distribution: ---
Compiling a combined 32+64 bit Wine with -march=znver1 is broken since at least
Wine-9.0-rc1.
Tested on Debian-12 (gcc-12.2.0). There seems to be a problem with libtiff.
I'm using the following commands to build Wine since years. They worked fine
with Wine <= 8.21.
(Wine source has been extracted to wine-*)
Please tell me if you think this is not a Wine regression, but a GCC bug. Then
I'll report it at GCC.
export PREFIX="${HOME}"/wine-build
export CFLAGS='-march=znver1'
mkdir 64; cd 64
../wine-*/configure CROSSCFLAGS="${CFLAGS}" --enable-win64 --prefix="${PREFIX}"
--disable-tests
make -j16
mkdir ../32; cd ../32
PKG_CONFIG_PATH="${PREFIX}"/lib/pkgconfig:/usr/lib/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig
../wine-*/configure CROSSCFLAGS="${CFLAGS}" --with-wine64=../64
--prefix="${PREFIX}" --libdir="${PREFIX}"/lib --disable-tests
make -j16 install
cd ../64; make install
Since Wine >= 9.0-rc1 I'm getting the following error in the final "cd ../64;
make install" command when using "-march=znver1".
i686-w64-mingw32-gcc -c -o dlls/windowscodecs/i386-windows/dlldata.o
dlls/windowscodecs/dlldata.c -Idlls/windowscodecs \
-I../wine-9.0-rc1/dlls/windowscodecs -Iinclude -I../wine-9.0-rc1/include \
-I../wine-9.0-rc1/include/msvcrt -I../wine-9.0-rc1/libs/tiff/libtiff
-I../wine-9.0-rc1/libs/jpeg \
-I../wine-9.0-rc1/libs/png -D_UCRT -D__WINESRC__ -DENTRY_PREFIX=WIC_
-DPROXY_DELEGATION \
-DWINE_REGISTER_DLL -D__WINE_PE_BUILD -Wall -fno-strict-aliasing
-Wdeclaration-after-statement \
-Wempty-body -Wignored-qualifiers -Winit-self -Wno-packed-not-aligned
-Wshift-overflow=2 \
-Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla
-Wwrite-strings -Wpointer-arith \
-Wlogical-op -Wabsolute-value -fno-omit-frame-pointer
-mpreferred-stack-boundary=2 -march=znver1
i686-w64-mingw32-gcc -c -o libs/tiff/i386-windows/libtiff/tif_aux.o
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c -Ilibs/tiff \
-I../wine-9.0-rc1/libs/tiff -Iinclude -I../wine-9.0-rc1/include
-I../wine-9.0-rc1/include/msvcrt \
-I../wine-9.0-rc1/libs/tiff/libtiff -I../wine-9.0-rc1/libs/jpeg
-I../wine-9.0-rc1/libs/zlib \
-D_UCRT -DFAR= -DZ_SOLO -D__WINE_PE_BUILD -fno-strict-aliasing
-Wno-packed-not-aligned \
-fno-omit-frame-pointer -mpreferred-stack-boundary=2 -march=znver1
during RTL pass: split1
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c: In function ‘_TIFFUInt64ToFloat’:
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c:415:1: internal compiler error: in
assign_stack_local_1, at function.cc:429
415 | }
| ^
0x7feffaa461c9 __libc_start_call_main
../sysdeps/nptl/libc_start_call_main.h:58
0x7feffaa46284 __libc_start_main_impl
../csu/libc-start.c:360
Please submit a full bug report, with preprocessed source (by using
-freport-bug).
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.
make: *** [Makefile:224677: libs/tiff/i386-windows/libtiff/tif_aux.o] Error 1
--
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=45840
Bug ID: 45840
Summary: i don't know =D
Product: Wine
Version: 3.0.2
Hardware: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vkvinderi(a)gmail.com
Distribution: ---
Created attachment 62312
--> https://bugs.winehq.org/attachment.cgi?id=62312
Open source programm, i leave link upper or be low, inside the message
It is a opensource programm
https://github.com/Jessecar96/SteamDesktopAuthenticator
It almost works, but i still have problem when i need confirm something.
Crashing when i push the button iside body of this programm, button called like
"View Confirmations"
Also, you probably can repeat the error, if you setup any steamcommunity.com
account, and press this button.
Sorry if i make a mistakes, when i'm send you this message.
--
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=38932
Bug ID: 38932
Summary: Betfair Betting Assistant throws a warning while
loading
Product: Wine
Version: 1.7.47
Hardware: x86
URL: https://www.gruss1-software.co.uk/Betting_Assistant/Be
tting_Assistant.msi
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 51866
--> https://bugs.winehq.org/attachment.cgi?id=51866
wine-1.7.47-84-g2294d3b screenshot
After a successful installation, Betfair Betting Assistant throws a warning
while loading, and then doesn't load the log-in dialog as it should.
The workaround is dotnet20.
--
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=56571
Bug ID: 56571
Summary: osu! quits with InvalidCastException when using
wine-mono
Product: Wine
Version: 9.6
Hardware: x86-64
URL: https://m1.ppy.sh/r/osu!install.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: aidas957(a)gmail.com
Distribution: ArchLinux
Created attachment 76324
--> https://bugs.winehq.org/attachment.cgi?id=76324
Snippet of Wine Mono log with the cast exception
Hello,
So osu!(stable) quits after the osu! logo (with InvalidCastException being
shown in the terminal when using the WINE_MONO_TRACE=frog variable) when
running the game with wine-mono installed (instead of .NET)
Installing .NET with the dotnet45 winetricks verb allows the game to run again
(like with bug 50111)
I think this bug may be a continuation of
https://bugs.winehq.org/show_bug.cgi?id=50111 (because I see
marshalling-related functions before the exception gets thrown in the Mono log)
I'll attach a snippet of the relay-level Wine Mono log that has the exception
stuff (the full log is likely too big even after compression)
I tried editing the RuntimeAssembly class to public in dnSpy for the Wine Mono
mscorlib.dll (but I got an EXCEPTION_ILLEGAL_INSTRUCTION exception instead with
no obvious explanation for that in the Wine Mono log which of course prevented
the game from starting)
--
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=27447
Summary: HAL7600 doesn't start
System.InvalidOperationException:
WinForms_SeeInnerException
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Unhandled Exception: System.InvalidOperationException:
WinForms_SeeInnerException ---> System.Reflection.TargetInvocationException:
Exception has been thrown by the target of an invocation. --->
System.ComponentModel.Win32Exception: No valid icon entry were found.
at System.Drawing.Icon.InitFromStreamWithSize (System.IO.Stream stream, Int32
width, Int32 height) [0x00000] in <filename unknown>:0
at System.Drawing.Icon..ctor (System.Runtime.Serialization.SerializationInfo
info, StreamingContext context) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(System.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[]
parameters) [0x00000] in <filename unknown>:0
...
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at HAL7600.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
http://forums.mydigitallife.info/threads/23966-UNSUPPORTED-HAL7600-Permanen…
mono210 required. Check url for direct download link
--
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.