http://bugs.winehq.org/show_bug.cgi?id=10262
Summary: wxWidgets TextCtrl in Python
Product: Wine
Version: 0.9.31.
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roger.marsh(a)btinternet.com
Running Python24-2.4.3_3 with py24-wxPython-2.6.3.3
Adding text to a wxTextCtrl with style wx.TE_RICH2 fails. Style TE_RICH is fine
but I need to be able to colour the text etc. The script was run from an IDLE
session.
Using these oldish versions for compatibility with native FreeBSD versions
used.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13618
Summary: Melty Blood Act Cadenza Ver. B Incorrect Rendering
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karlthepaladin(a)yahoo.com
Created an attachment (id=13594)
--> (http://bugs.winehq.org/attachment.cgi?id=13594)
Picture of the bug
The game does not render what seems to be a layer of graphics properly during
fights, I have included a screenshot for reference. Compare to:
http://ps2media.gamespy.com/ps2/image/article/724/724566/melty-blood-act-ca…
This bug does not just affect this move, but also one of the characters is
invisible (extra boss, the giant neko Arc Chaos 666) from what I have heard.
Also, certain graphics, i.e. ones that show "fight" or "match start" or
whatever don't show at all(I don't know what they are since I never saw them on
screen because of this bug). The game's website is
http://e56.info/mbacwin/index.html. http://e56.info/mbacwin/mbacwin.cgi?trial
is a link to the download page of the trial (also reachable via the main site
under the "download section" look right underneath
注意事項に合意しない(TOPページへ).
I haven't tested the trial, but I suspect that it has the same 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.
http://bugs.winehq.org/show_bug.cgi?id=14497
Summary: Airport Inc: Text does not render
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sam(a)xnet.tk
Created an attachment (id=14822)
--> (http://bugs.winehq.org/attachment.cgi?id=14822)
Error Log
All text in this game renders as a black box, making it fairly unplayable,
aside from that it works.
Attached is the output log.
--
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=13254
Summary: CPUZ crashes when trying to select a different tab via
keyboard
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://www.cpuid.com/cpuz.php
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Created an attachment (id=13092)
--> (http://bugs.winehq.org/attachment.cgi?id=13092)
crash output
steps to reproduce:
1. start cpuz
2. press the right arrow key
expected result: we switch over to the next tab
actual result: we get a crash
--
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=12801
Summary: winetest: Can't remove log file
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt/wi
netest-latest.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Every time I run the crossbuilt winetest, after all the tests run and the data
is submitted, I get an error that it can't remove the log file.
Minor, but highly annoying. Doesn't happen on 2K/XP.
--
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=9731
Summary: GdiConvertToDevmodeW trying to copy -32 bytes on memcpy
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myxfce(a)gmail.com
Created an attachment (id=8168)
--> (http://bugs.winehq.org/attachment.cgi?id=8168)
Crash report
I'm having problems running an old Win 3.11 game named Mortuum. Wine crashes
before the game start. After some debugging, I noticed the crash happens in
file gdi32/driver.c on function DEVMODEW * WINAPI GdiConvertToDevmodeW(const
DEVMODEA *dmA).
This function tries to memcpy bytes from the structer dmA to the structure dmW
(that was allocated by a HeapAlloc()). Unfortunately, it tries to copy -32
bytes because dmA->dmSize is 0 bytes and CCHDEVICENAME is 32 bytes. I've
attached a small piece of code that shows where the memcpy is done around line
425 on that file.
...
dmW = HeapAlloc(GetProcessHeap(), 0, dmW_size + dmA->dmDriverExtra);
if (!dmW) return NULL;
MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmDeviceName,
CCHDEVICENAME,dmW->dmDeviceName, CCHDEVICENAME);
//===============================CRASH=========================
/* copy slightly more, to avoid long computations */
memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion, dmA->dmSize -
CCHDEVICENAME);
//===============================CRASH=========================
if (dmA->dmSize >= (const char *)dmA->dmFormName - (const char *)dmA +
CCHFORMNAME)
{
MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmFormName,
CCHFORMNAME,
dmW->dmFormName, CCHFORMNAME);
if (dmA->dmSize > (const char *)&dmA->dmLogPixels - (const char *)dmA)
memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA->dmSize - ((const
char *)&dmA->dmLogPixels - (const char *)dmA));
}
...
I tried to debug more to look for the root of the problem (why dmA->dmSize is
0) but there were too many calls and I couldn't figure out where the dmA
structure was allocated and popullated.
I've attached the crash report and if you need the game to test, just ask, it's
freeware. Tested on 0.9.44 and 0.9.45.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10115
Summary: Wine should restore the initial graphics mode if an
application exits abnormally
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Sometimes DirectX applications crash and leave your desktop with a changed
resolution e.g. 640x480. This shouldn't happen - wine should restore the
initial graphics mode if an application exited abnormally.
Right now you have to `xrandr -s 0` or use any other utility.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9886
Summary: GeoInfo hangs if trying to select a street for the
second time
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
Created an attachment (id=8378)
--> (http://bugs.winehq.org/attachment.cgi?id=8378)
patch
This is because our DDEML doesn't call the callback after receiving an ACK when
the hMem parameter doesn't match the current transaction hMem. However it
doesn't remove transaction from the queue so only after the first transaction
the callback will be called. This patch removes the transaction from the queue
however it is not fully correct - there may be asynchronous transactions so the
ACK doesn't need to come in the same order as the request were sent. A correct
code should check the whole list of transactions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13937
Summary: visual foxpro 9 installation fails
Product: Wine
Version: 1.0-rc4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: freeman3(a)centrum.cz
can't install foxpro. i click setup main setup window appears. there an option
install prereqisites. i click it and nothing happens.
--
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=9991
Summary: Can not enable more then two input languages
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pavel1r(a)gmail.com
When I run windows applications with Wine, I'm only able to write in English.
When I try to write in other language (I tried Russian and Hebrew), input is
either ignored or I see blocks instead of letters, depending on application.
If I set LANG to ru_RU.UTF-8 or he_IL.UTF-8 before starting application, I'm
able to write in two languages (either English and Russian, or English and
Hebrew). There is no way to enable all three languages to work simultaneously.
I'm using Fedora 7 and Gnome desktop. I added both Russian and Hebrew keyboard
layouts in keyboard preferences and I'm able to write in all three languages in
Linux native applications.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.