http://bugs.winehq.org/show_bug.cgi?id=26960
Summary: mshtml renders gibberish text with "courier" font
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kevin.m.smyth(a)gmail.com
Loading this document:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
</HEAD>
<BODY STYLE="font-family: courier; font-size: 10px; margin: 0px">
</BODY>
</HTML>
then calling:
CComPtr<IHTMLDocument2> pHtmlDoc;
pDispatch.QueryInterface(&pHtmlDoc);
CComPtr<IHTMLElement> pElement;
pHtmlDoc->get_body( &pElement );
CComBSTR where(L"BeforeEnd");
CComBSTR text(line);
pElement->insertAdjacentHTML(where, text);
results in gibberish. Changing "courier" to "monospace" works as expected.
Ubuntu package: 1.2.2-0ubuntu2~lucid1
--
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=24192
Summary: Star Trek: Legacy exits when trying to play sound
effect
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: companheiro.vermelho(a)gmail.com
Created an attachment (id=30454)
--> (http://bugs.winehq.org/attachment.cgi?id=30454)
full log of WINDEBUG=+file wine Legacy.exe
The game Star Trek: Legacy installs and run well until it tries to play a voice
over in one of the missions.
The sound in the menu and the introduction works fine and even some sound
effects and music. But when it tries to play this voice over, a exception
occurs.
After some debugging, I discovered that it seems like the game tries to open a
file and doesn't test if it was successful, leading to a page fault in case of
failure when it tries to read it.
The strange thing is that there seems to be no reason why the file can't be
accessed. The path is right and the permissions are good. I can even play the
sound using aplay.
The relevant part of the log with WINEDEBUG=+file is this (I know I shouldn't
paste logs in here, but is just a few lines to explain the bug...):
trace:file:SearchPathW found L"C:\\Arquivos de programas\\Bethesda
Softworks\\Star Trek
Legacy\\sounds\\voiceover\\captains\\Federation\\f_cap03_Fleet_att_enterprise.wav"
trace:file:OpenFile found "\x02"
trace:file:_lopen ("\x02",0000)
trace:file:CreateFileW L"\0002" GENERIC_READ FILE_SHARE_READ FILE_SHARE_WRITE
creation 3 attributes 0x80
trace:file:RtlDosPathNameToNtPathName_U (L"\0002",0x934e274,(nil),(nil))
trace:file:RtlGetFullPathName_U (L"\0002" 520 0x934dfb8 (nil))
warn:file:CreateFileW Unable to create file L"\0002" (status c0000033)
trace:file:CreateFileW returning 0xffffffff
warn:file:OpenFile
(sounds\voiceover\captains\Federation\f_cap03_Fleet_att_enterprise.wav): return
= HFILE_ERROR error= 123
wine: Unhandled page fault on read access to 0x00000004 at address 0x45688a
(thread 0024), starting debugger...
According to MSDN, error 123 is ERROR_INVALID_NAME
Attached is the full log of WINDEBUG=+file wine Legacy.exe
If you need any other information, let me know.
--
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=24040
Summary: "Roller Coaster Tycoon 2" download manager fails
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://www.download-free-games.com/simulation/rollerco
aster_tycoon2.htm
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://www.download-free-games.com/simulation/rollercoaster_tycoon2.htm
has a sneaky download form.
If you mouse over the download button, or right click and copy link, you see
http://d.trymedia.com/d/infogrames/60m_d_61_mp86/t_04se1/RollerCoasterTycoo…
which is the real app, but if you click on the download button, it downloads
http://38.108.189.230/[very long string]/dm3/RollerCoasterTycoon2-dm.exe
The latter app is a Macrovision download manager, judging by the line
trace:wininet:HTTP_HttpSendRequestW full request -> "GET
/dd/infogrames/60m_d_61_mp86/t_04se1/RollerCoasterTycoon2.exe
HTTP/1.1\r\nAccept: */*\r\nHost: d.trymedia.com\r\nUser-Agent:
Macrovision_DM_2.4.152\r\nPragma: no-cache\r\n\r\n"
On Wine, it downloads one file, named e.g.
C:/users/dank/Local Settings/Temporary Internet
Files/Content.IE5/UGYJ9D59/RollerCoasterTycoon2[0]
/bin/file says that file contains ASCII text. cat shows
<?xml version="1.0" encoding="UTF-16"?>
<dm>
<files>
<file execute="yes" stamp="yes">
<url>http://cdn.dli.trymedia.com/r/release/infogrames/60m_d_61_mp86/RollerCoaste…</url>
</file>
</files>
</dm>
(so the file body appears to disagree with the header about the encoding?)
With builtin DLLs, it gets lots of those files, repeatedly outputting
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
With "winetricks msxml3", it doesn't repeat, it just downloads one XML
file and stops. So it seems there's something wrong with how we handle
that XML file?
(With "winetricks ie6", you get a nice status window, which at this point asks
if you want to retry.)
On Windows, I couldn't catch it downloading that XML file, but the downloader
does 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.
http://bugs.winehq.org/show_bug.cgi?id=21976
Summary: LiveZilla has missing GUI elements while running under
Wine
Product: Wine
Version: 1.1.40
Platform: All
URL: http://www.livezilla.net
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: s.priebe(a)allied-internet.ag
Created an attachment (id=26688)
--> (http://bugs.winehq.org/attachment.cgi?id=26688)
terminal output while starting livezilla, logging in to a server, try to chat
to somebody where the gui elements are missing
Hi!
When running LiveZilla under wine it has some important missing GUI elements.
To get livezilla running i've installed via winetricks:
gdiplus ie6 dotnet20 mdac25 mdac28 corefonts wininet urlmon
Stefan
--
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=23462
Summary: Robots Creative Studio says you must install a printer
to use it, then crashes
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=29280)
--> (http://bugs.winehq.org/attachment.cgi?id=29280)
Robots Creative Studio console output
Robots Creative Studio is bundled with several 20th Century Fox DVD film
titles.
After installing it and running Robots.exe, a dialog box says "You must install
a Windows printer to use the Robots Print Studio". (If it's relevant, I don't
have a physical printer connected to my PC.)
Clicking OK to dismiss the dialog box results in a Wine Program Error dialog
box. I have attached the console output.
Is there any way to have Wine present a dummy/fake printer for those Windows
applications that check for one?
--
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=22960
Summary: Endnote X3 full version crashes at start
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spam(a)apparition.student.utwente.nl
Created an attachment (id=28435)
--> (http://bugs.winehq.org/attachment.cgi?id=28435)
wine output at crash
When starting the fully licensed version of Endnote X3 Wine crashes. This
happens when starting the program. I've also tested it with office 2007
installed and running it from office 2007. In that case it exits with a "no
error available" message.
--
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=22967
Summary: Restricted Area game - sound issues
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://www.restricted-area.net/demo.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Created an attachment (id=28443)
--> (http://bugs.winehq.org/attachment.cgi?id=28443)
Console output
When i play in the game i hear only music, but no other sound (shoots for
example)
--
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=19615
Summary: Can't compile Inkscape with mingw on wine: fd leak?
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://kegel.com/wine/inkscape-download-and-build.sh.t
xt
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://kegel.com/wine/inkscape-download-and-build.sh.txt
is a simple script that downloads all of the prerequisites
for building inkscape on windows, grabs the source from svn,
and builds it. Read the comments at the top to see how
to run it in cygwin (and in cygwin on wine).
This script runs to completion on Windows, but on Wine, it failed for me
with
Make error line 291: executeProgram: could not create pipe
when compiling src/xml/subtree.cpp (the 770th file out of 844).
Oddly, rerunning the script in the same wineconsole window
failed quickly with various symptoms, including
"ld.exe: crt2.o: No such file: Too many open files"
Even more oddly, problem persisted even in a new wineconsole window;
bash just wasn't happy.
wineserver -k elicited the following messages:
...
0x8833cc0:1: Fd unix_fd=474 user=0x877ec68 options=00000010
0x882e3b8:1: Fd unix_fd=-1 user=0x877ec68 options=00000010
0x877ec68:4: Named pipe server pipe=0x8824608 state=3
0x8824608:1: Named pipe name=L"Win32.Pipes.00000012.00000739"
0x8833c48:1: Fd unix_fd=473 user=0x8816378 options=00000010
0x882b138:1: Fd unix_fd=-1 user=0x8816378 options=00000010
0x8816378:4: Named pipe server pipe=0x8833f80 state=3
0x8833f80:1: Named pipe name=L"Win32.Pipes.00000012.00000736"
0x8813520:1: Fd unix_fd=472 user=0x87dcfb8 options=00000010
0x8833f08:1: Fd unix_fd=-1 user=0x87dcfb8 options=00000010
0x87dcfb8:4: Named pipe server pipe=0x87d9038 state=3
0x87d9038:1: Named pipe name=L"Win32.Pipes.00000012.00000733"
0x882eeb8:1: Fd unix_fd=471 user=0x87dae30 options=00000010
0x8833fd0:1: Fd unix_fd=-1 user=0x87dae30 options=00000010
0x87dae30:4: Named pipe server pipe=0x87e2418 state=3
0x87e2418:1: Named pipe name=L"Win32.Pipes.00000012.00000730"
0x882f3b0:1: Fd unix_fd=470 user=0x880c2a8 options=00000010
0x880ba30:1: Fd unix_fd=-1 user=0x880c2a8 options=00000010
...
After that, starting a new wineconsole let me run cygwin.bat
again, and running ink.sh again picked up the build more or less
where it left off.
So it appears wine(server) has an fd leak related to pipes?
--
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=22270
Summary: Counter Strike 1.6 Steam crashes on "parsing game
info"
Product: Wine
Version: 1.1.42
Platform: x86-64
OS/Version: Solaris
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eugene.turkulevich(a)gmail.com
steps:
1. set up Steam (with winetricks for example)
2. log in to Steam and disable notifications and chats in options (as
winetricks recommends regarding to bug #22053)
3. launch Counter Strike (or Condition Zero, result is the same)
4. choose "create new game" or "find server" and connect to server
5. wait untill "Parsing game info" message
result:
application freeze for some time (about a minute or two)
then message"The program hl.exe encountered a serious problem and needs to
close..." appears and after clicking "Close" application is closed
additional info about hardware and software:
AMD Phenom II x4, 8gb mem, OpenSolaris snv_134
wine 1.1.42 built from source with no errors
dunno how to provide additional info 'cos no console log appears when running
Steam
--
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.