http://bugs.winehq.org/show_bug.cgi?id=12854
Summary: ntdll change.ok test fails in PC-BSD but not Linux
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: FreeBSD
Status: NEW
Keywords: testcase
Severity: minor
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=12551)
--> (http://bugs.winehq.org/attachment.cgi?id=12551)
+file in git, bzip2 -9'ed
Change.ok is full of failures in PC-BSD:
change.c:117: Test failed: event should be ready
change.c:119: Test failed: information wrong
change.c:120: Test failed: information wrong
change.c:124: Test failed: action wrong
change.c:125: Test failed: len wrong
change.c:126: Test failed: name wrong
Total of 26.
Attached is a +file 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=27019
Summary: Print in Gestan
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jsiegwald(a)gmail.com
Hello everybody,
I'm using 'Gestan' (you can download it on www.gestan.fr) which is a fantastic
program used to manage my customers and create bills...
Anyway, I can install it without any problem, but when I want to print a bill,
there is nothing in !
It is a program created with Windev...
Anyone have a solution ?
Thanks a lot for your future help !
Julian
--
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=22785
Summary: 'Candytron' exhibits geometry corruption on certain 3D
objects
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://pouet.net/prod.php?which=9424
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mitch074(a)gmail.com
When running the 'Candytron' final version demo (now in full screen), some 3D
objects are rendered garbled with vertices going all over the place. The
program otherwise works to completion and closes properly.
Test configuration: WineHQ-made Wine 1.1.44 on Mandriva 2010.0, using clean
profile and fglrx from Catalyst 10.4.
When running from console, the only d3d error seems unrelated:
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
Download the 'final' version from this page:
http://pouet.net/prod.php?which=9424
Also provided at that address, a video of the rendered version.
--
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=31952
Bug #: 31952
Summary: Graphical bug causing horizontal lines on world
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonathan-vola(a)hotmail.com
Classification: Unclassified
Presumably due to a texture being projected horizontally, several areas in game
have horizontal "Slices" in them.
This was to my knowledge added by an update to the game not to wine, so there
is (probably) no regression.
Some areas where this bug is blindingly obvious are north Diessa Plateau and
west Rata Sum.
--
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=28464
Summary: winmm causes DSOUND_callback Wave queue corrupted
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
WHDR_DONE should only be set immediately before invoking the DriverCallback,
because some apps poll for that flag and don't depend on notifications or
callbacks.
WOD_MarkDoneHeaders must find another way to isolate done headers.
Because the queue of done headers is not isolated properly,
attachment #36494 to bug #28056
exhibits a log (around line 4250) where 2 threads, namely the app calling
waveOutWrite and the winmm feeder thread both grab the same list and send the
same notifications.
0034:trace:driver:DriverCallback (, 32bit function 0003,, 03BD,, 017D3A90,
00000000)
0036:trace:winmm:WINMM_BeginPlaying ...
0036:trace:oss:AudioRenderClient_ReleaseBuffer (0x17d34f0)->(512, 0)
0034:trace:driver:DriverCallback (, 32bit function 0003,, 03BD,, 017D3AB0,
00000000)
0034:trace:driver:DriverCallback (, 32bit function 0003,, 03BD,, 017D3AD0,
00000000)
0034:trace:winmm:WOD_PushData (0xc000)
0036:trace:driver:DriverCallback (, 32bit function 0003,, 03BD,, 017D3AB0,
00000000)
0036:trace:driver:DriverCallback (, 32bit function 0003,, 03BD,, 017D3AD0,
00000000)
What happens is that the first thread removes the first header from
device>first. At the time the second thread kicks in, apparently more headers
are marked done. But since they are all part of the same linked queue, the
later ones trigger 2 notifications each.
err:dsound:DSOUND_callback Wave queue corrupted!
is the result of getting notifications twice.
Nice race condition!
BTW, but that's another issue, the code says "NotifyClient should never be
called while holding the device lock". However that's exactly what can happen
via waveOutWrite -> WINMM_ValidateAndLock -> WINMM_BeginPlaying -> WOD_PushData
-> NotifyClient.
I suggest a per device slot updated via InterlockedExchangePointer holding the
queue of pending notifications. The top-level wave* commands (and the winmm
feeder thread too) would then drain that queue. (The feeder thread could even
delegate that to another (timer?) thread.) Alternatively, Push/PullData return
that queue.
--
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=33119
Bug #: 33119
Summary: Free Download Manager freezes randomly
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
Classification: Unclassified
Tons of "err:treeview:TREEVIEW_HandleTimer got unknown timer" in terminal after
freeze. GUI of FDM partially works when freeze occurs.
To reproduce the bug:
1. Run FDM
2. Check "View / Groups of downloads" if unchecked (probably it triggers the
bug)
3. Download files until FDM will freeze
--
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=18213
Summary: Video in WebSlingPlayer Firefox is blank/black
Product: Wine
Version: 1.1.19
Platform: PC
URL: http://beta.sling.com/sling_player
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
WebSlingPlayer, a Firefox plugin which acts in the same way as Slingplayer,
connects (with workarounds) but doesn't show any video. Audio plays fine.
"winetricks firefox3 flash wmp9" and native qcap.dll are needed to get this far
as there is no native Linux client as of yet. WebSlingPlayer is currently in
beta.
Workaround is using native quartz.dll.
Severity set low as workaround is use the Slingplayer. WebSlingPlayer is
intended for Windows users who do not have admin access, but this isn't
applicable to Wine.
--
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=33264
Bug #: 33264
Summary: iexplore crash on Unhandled page fault on read access
to 0x00000000 at address 0x7d404456 (thread 0009)
Product: Wine-gecko
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: alfonsojon1997(a)gmail.com
Classification: Unclassified
Created attachment 43996
--> http://bugs.winehq.org/attachment.cgi?id=43996
Stack trace
Wine's iexplore.exe crashes when going to www.roblox.com and clicking "Build".
You must be logged in and have already installed Roblox. Perhaps this is an
activex issue?
--
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=18443
Summary: Could not initiate GoogleTalkPlugin connection in Google
Video/Voice chat
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://www.gmail.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Created an attachment (id=21044)
--> (http://bugs.winehq.org/attachment.cgi?id=21044)
+ws2_32,+winsock log
To reproduce:
1. Install win32 Firefox 3.0.x.
2. Login to Gmail.
3. Attempt to try the video/voice chat, download the plugin. (downloading
http://dl.google.com/googletalk/googletalkplugin/GoogleVoiceAndVideoSetup.e…
directly does not work)
4. Close win32 Firefox.
5a. run winetricks msxml3
5b. install GoogleVoiceAndVideoSetup.exe (It will say error 0x80040509 even
though it installed - bug 18442)
6. Move the content of c:\Program Files\'Mozilla Firefox' into the appropriate
place under c:\Program Files\Mozilla Firefox. (bug 18441)
7. Start win32 Firefox.
8. Login to Gmail.
Once the chat window loads, you should get the following on the console:
trace:winsock:WSACreateEvent
trace:winsock:WSAStartup verReq=1
trace:winsock:WSAStartup succeeded
err:ntdll:NtQueryInformationToken Unhandled Token Information class 25!
[000:002] Could not initiate GoogleTalkPlugin connection
--
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=31649
Bug #: 31649
Summary: WebSlingPlayer IE never gets past the "initializing"
screen with Wine IE
Product: Wine
Version: 1.5.12
Platform: x86-64
URL: http://watch.slingbox.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 41610
--> http://bugs.winehq.org/attachment.cgi?id=41610
wine-1.5.12-157-gbdf9a9f console output
WebSlingPlayer IE should pick up account details and connect a Slingbox, but
under Wine's IE it never progresses past the "initializing" screen.
An account is needed with Sling to get this far.
--
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=31389
Bug #: 31389
Summary: Roblox website, 'play now' button fails with builtin
IE
Product: Wine
Version: 1.5.10
Platform: x86
URL: http://www.roblox.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 22417
Classification: Unclassified
$ wine iexplore.exe http://www.roblox.com
once the site loads, click 'Play now'. Nothing happens.
Terminal shows:
fixme:mshtml:HTMLEventObj_get_offsetX (0x14c210)->(0x32e694)
fixme:mshtml:HTMLEventObj_get_offsetY (0x14c210)->(0x32e694)
fixme:mshtml:HTMLEventObj_get_offsetX (0x14c210)->(0x32e6c4)
fixme:mshtml:HTMLEventObj_get_offsetY (0x14c210)->(0x32e6c4)
fixme:mshtml:nsURI_GetOriginCharset (0x13f450)->(0x32efdc)
fixme:mshtml:HTMLEventObj_get_offsetX (0x14c210)->(0x32e694)
fixme:mshtml:HTMLEventObj_get_offsetY (0x14c210)->(0x32e694)
fixme:mshtml:HTMLEventObj_get_offsetX (0x14c210)->(0x32e6c4)
fixme:mshtml:HTMLEventObj_get_offsetY (0x14c210)->(0x32e6c4)
fixme:mshtml:nsURI_GetOriginCharset (0x14c210)->(0x32efdc)
fixme:jscript:Object_propertyIsEnumerable
fixme:mshtml:nsURI_GetOriginCharset (0x219fdb8)->(0x32efdc)
fixme:ieframe:ControlSite_OnFocus (0x1323e0)->(0)
fixme:ieframe:InPlaceSite_OnInPlaceDeactivateEx fNoRedraw (1) ignored
fixme:mshtml:HlinkTarget_SetBrowseContext (0x15f9f8)->((nil))
fixme:jscript:JScript_SetScriptState unimplemented state 3
winetricks wsh57 makes no difference (and the website still reports javascript
as missing).
--
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=30655
Bug #: 30655
Summary: GRID2: Low (1 - 3) FPS during race, but not in in-game
menus.
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linards.liepins(a)gmail.com
Classification: Unclassified
Created attachment 40128
--> http://bugs.winehq.org/attachment.cgi?id=40128
in-game benchmark test #!
Game itself installed with latest winetricks.
--
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=28603
Bug #: 28603
Summary: Winedbg sometimes receives invalid parameters
Product: Wine
Version: 1.3.29
Platform: x86
URL: http://www.winehq.org/pipermail/wine-patches/2011-Sept
ember/106508.html
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: julliard(a)winehq.org
Classification: Unclassified
Created attachment 36753
--> http://bugs.winehq.org/attachment.cgi?id=36753
relay,seh,tid,dbghelp,winedbg
I sent a patch to eliminate this dialog:
http://www.winehq.org/pipermail/wine-patches/2011-September/106508.html
but Alexandre said this should never happen. I see it occasionally on various
systems, but since I wrote the patch, haven't found a very reliable testcase.
I've found a reliable testcase with make test on Alpine Linux (which uses
uclibc).
It may not be the best testcase, since it's not using glibc (and also use PaX),
but AJ asked for a log, so here we go :).
relay,seh,tid,dbghelp,winedbg attached
the testcase used was oleaut32/tmarshal
wine-1.3.29-217-g5432611
--
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=14713
Summary: Xara Xtreme 4: Resizing handles not visible
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)linopus.de
Xara Xtreme 4: Resizing handles not visible
Xara Xtreme 4, the latest edition of the vector drawing application from Xara
(30 days trial available at http://www.xara.com/us/downloads/xtreme/ ), shows
no resizing handles when selecting an object. The resizing handles should be
visible when clicking an object with the select tool.
By contrast, the turning/shearing handles are visible. The turning/shearing
handels appear when clicking an object twice with the select tool.
Additionally, Bezier handles and points on curves do appear, but in wrong
colors (cyan instead of red). Bezier handles and points appear when using the
edit shape tool.
This is on a wine 1.1.2 install on Ubuntu Linux 8.04 in its standard settings.
The same bug is present when using Xara Xtreme X1, which is the thirdlast
edition. The bug is also present in earlier versions of wine (e.g. 0.9.56) and
CrossOver (e.g. 7.0.1).
Yours sincerely
Tobias Hilbricht
--
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=10471
Summary: Radmin viewer 3.1: Ungrayed disabled menu item in the
"Connection Properties" window
Product: Wine
Version: 0.9.48.
Platform: PC
URL: http://www.famatech.com/download/rview31.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugs.radmin(a)gmail.com
We got an error:
1. Installed Radmin server 3.1 (http://www.famatech.com/download/rserv31.exe)
on a windows computer.
2. Installed Radmin viewer 3.1 on a linux computer with wine installed.
3. Started Radmin viewer and open "Connection Properties" window (can be
reached "Right click on connection icon" --> "Properties" or "Connection" -->
"Connect to").
The list of intermediate hosts in "Advanced settings" should be grayed
(disabled) until checkbox "Connect through host" is marked.
The error was tested on Fedora Core 7 installation with the last wine package
from fedora update site (fedora_mirror/fedora/linux/updates/7/i386/).
--
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=30550
Bug #: 30550
Summary: Invisibles sprites in Rayman Origins
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: olivier.luraine(a)gmail.com
Classification: Unclassified
Created attachment 39961
--> http://bugs.winehq.org/attachment.cgi?id=39961
Screenshot that shows the bug.
They are missing sprites on rayman origins. For exemple ropes and other things
that rayman catch are invisible. I'm using an up to date archlinux with nvidia
295.40. The game run smoothly.
--
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=12428
Summary: win16 test suite: profile test fails
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://win16test.googlecode.com
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=11967)
--> (http://bugs.winehq.org/attachment.cgi?id=11967)
Backtrace in git
+++ This bug was initially created as a clone of Bug #9850 +++
The code can be downloaded
from http://win16test.googlecode.com with svn,
and is quite easy to run; see
http://win16test.googlecode.com/svn/trunk/src/README
for instructions.
The profile test crashes in current git. Attached is the backtrace in current
git.
--
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=12427
Summary: win16 test suite: printdlg test fails
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://win16test.googlecode.com
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=11966)
--> (http://bugs.winehq.org/attachment.cgi?id=11966)
Backtrace in git
+++ This bug was initially created as a clone of Bug #9850 +++
The code can be downloaded
from http://win16test.googlecode.com with svn,
and is quite easy to run; see
http://win16test.googlecode.com/svn/trunk/src/README
for instructions.
The printdlg test crashes in current git. Attached is the backtrace in current
git.
--
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=25100
Summary: the program don't start...
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: salvatore91salvatore(a)yahoo.it
....
--
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=32900
Bug #: 32900
Summary: The Bat 5.2.2 - keyboard keys stick
Product: Wine
Version: 1.1.22
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sprog(a)online.ru
Classification: Unclassified
It happens rarely and may be related to RU keyboard layout.
You press Cntr-N a new message form is created but pressing letters on a
keyboard won't work as expected. If fact it's like you're constantly holding
right CTL key. You press right CTL again and the bug disappears....
The same happens happens with ALT key too. The probles was in Wine versions
starting from 1.4.1
Unfortunately I can't give you the conditions how to reproduce the bug. This
report is more like "think about what could go wrong". If you can advise how to
trace this problem - I'll do it.
The Bat all so has problems with ole32. From to time the Connection Center
causes OLE32 error. The conditions are unkown. It happens once if 2-3 days.
After that the connection center works but the status bar is showing OLE32
error...
--
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=21448
Summary: RollerCoaster Tycoon 3 does not accept the original
disc
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.mertes(a)gmx.at
Created an attachment (id=25828)
--> (http://bugs.winehq.org/attachment.cgi?id=25828)
Error log and content of message box when starting RollerCoaster Tycoon 3
When starting RollerCoaster Tycoon 3 it asks for the original disc although the
original disk is in. There are some errors logged (see attachment) and then a
message box appears:
Please insert the original disc instead of a backup. See
www.securom.com/copy for more details
Greetings Thomas
--
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=30186
Bug #: 30186
Summary: Wine Bugzilla quick search return zero result for
keywords
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
If I remember correctly, it works yesterday.
Today I try to search some short keywords in Wine Bugzilla quick search box,
and found it doesn't work as before:
For example, search for "win","mac","wow", "aj", "a", the result is empty.
Here is a example URL:
http://bugs.winehq.org/buglist.cgi?query_format=specific&order=relevance%20…
Bug or feature?
--
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=21424
Summary: Cygwin 1.7.1 bash crashes
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
cygwin installs now, but one sees the following crash
10 [main] bash 9 _cygtls::handle_exceptions: Exception:
STATUS_ACCESS_VIOLATION
1271 [main] bash 9 open_stackdumpfile: Dumping stack trace to
bash.exe.stackdump
err:ntdll:RtlpWaitForCriticalSection section 0x736d2784 "loader.c:
loader_section" wait timed out in thread 0036, blocked by 003c, retrying (60
sec)
during postinstall, and also when running bash interactively.
--
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=19713
Summary: Some serial port communication functions behave
differently in Wine and Windows.
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fenixk19(a)mail.ru
Created an attachment (id=23025)
--> (http://bugs.winehq.org/attachment.cgi?id=23025)
Test program
This makes test program to hang in Wine, but in MS it is ok. Test program
attached.
--
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=13296
Summary: regression problem in upgrade to Ubuntu Hardy/1.0-rc1:
Palm Hotsync over serial Segmentation Fault
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jan-winehq(a)h-i-s.nl
Created an attachment (id=13150)
--> (http://bugs.winehq.org/attachment.cgi?id=13150)
Logging output
I upgraded to Ubuntu Hardy, and wine 1.0-rc1.
Hotsync manager 1.0 for Palm Pilot worked fine before.
http://appdb.winehq.org/objectManager.php?sClass=version&iId=10362
Now it crashes half-way synchronising over the serial port, sometimes after a
few seconds, sometimes much later in the process.
These crashes reproduce well, and yield a segmentation fault without further
information
$ wine hotsync.exe
Segmentation fault
$
I do not know if this means that a part of Wine crashes, or just the
application.
I added logging, where it seems that the problem lies within the call below:
0009:CallTo16(func=111f:072a,ds=1087,118f,7404,0000,0006) ss:sp=1087:ffd0
I am not sure if the problem lies with wine, or that other problems with Ubuntu
Hardy may relate to this.
It is disappointing that an application that used to work fine, and I came to
depend on, is now broken.
--
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=25083
Summary: HyperTerminal unable to loop back on COM1 (RS-232)
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: graham(a)nerve.org.za
On a machine with an on-board RS-232 port at COM1, HyperTerminal (as shipped
with Windows XP) is firstly unable to detect the port until changes are made in
the WINE registry, thereafter, after attaching a simple loopback adapter (pins
2 and 3 of a DB9F shorted) no characters are echoed to the screen.
Obtaining the software:
>From a Windows XP installation, copy the files hypertrm.exe and htrn_jis.dll
from 'C:\Program Files\Windows NT' and hticons.dll and hypertrm.dll from
C:\Windows\System32' into a suitable directory below .wine/drive_c
or
Download a free 30 day trial of HyperTerminal Private Edition 7.0 from
http://www.hilgraeve.com/hyperterminal/
Create a symbolic link for COM1, documented here:
http://www.winehq.org/docs/wineusr-guide/misc-things-to-configure
ln -s /dev/ttyS0 ~/.wine/dosdevices/com1
At this point, starting HyperTerminal will result in no serial ports being
shown.
Now, create a registry entry in WINE for the serial port, mentioned in this bug
report:
http://bugs.winehq.org/show_bug.cgi?id=4282
Add the following lines to .wine/system.reg [Hardware\\Devicemap\\SerialComm]
"Serial0"="COM1"
Now HyperTerminal can be started, COM1 can be selected and configured, but no
characters are echoed to the screen.
However, the free terminal program, simply named 'Terminal' and available here:
https://sites.google.com/site/terminalbpp/
Does echo characters to the screen.
--
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=10051
Summary: Parallax SX Key IDE cannot detect serial port under WINE
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ultimatedevr(a)yahoo.com
Created an attachment (id=8599)
--> (http://bugs.winehq.org/attachment.cgi?id=8599)
Result of running SXKey.exe in wine with the +setupapi debug flag.
I am trying to run the Parallax SX Key IDE through WINE, however the IDE does
not detect any of my serial ports. I have symlinked them to ~/.wine/dosdevices/
and added them to my registry, however the IDE still cannot detect my serial
ports.
I am currently running WINE v.0.9.46 (the same problem exists in the CVS
version as well).
(BTW, I have heard of others getting this to work, yet others who couldn't:
http://forums.parallax.com/forums/default.aspx?f=15&m=217429&g=221692)
--
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=23326
Summary: Cannot change printer settings, Family Tree 7
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jamesl(a)bestweb.net
Created an attachment (id=29072)
--> (http://bugs.winehq.org/attachment.cgi?id=29072)
FTW7 print dialogue, compare Wine to XP
Cannot select printer/change print settings with Family Tree Maker 7. Dialogue
box comes up, drop-down boxes are working, but radio buttons for switching
between "default printer" and an alternate printer are not selectable. Have
compared the print dialogue between Wine vs a native install under Windows XP
(SP3) and notice some text from the Windows install does not show up under
Wine.
Also tried the same thing with the "free" version of FTM2005se available at
http://past.familytreemaker.com/download/starter.aspx and found it's behavior
is the same. So I will describe steps from there, since it would be eaier for
someone to get that to test against.
STEPS TO RECREATE:
1: Set up wine profile with "WINEPREFIX=/home/jelabarre/wine-apps/ftw2005
winecfg"; set winver to "Windows XP", point the Documents directory under
Desktop Integration to my own Documents directory
2: install FTW2005 by running
"WINEPREFIX=/home/jelabaWINEPREFIX=/home/jelabarre/wine-apps/ftw2005 wine
./FamilyTreeMaker2005se.exe", accept all defaults.
3: open FTW 2005 from "Wine" menu entry on Gnome menu. Selected "Buy Later"
from popup window (does not affect outcome, as same print problem occurrs in a
regular retail version of FTM7)
4: create new file, or use existing file (same result either way)
5: select "File | Print Setup", then try to select radio button for either
"Default Printer" or "Specific Printer". Neither can be selected
6: try selecting a "specific printer" from drop-down box. Printer can be
selected, but radio buttons still not functional.
7: after selecting a printer other than the default (such as print-to-PDF) and
then try printing. Output will still go to the Linux default printer, no edits
of the print settings will take effect.
The "Family Archive Viewer v6.0" at
http://familytreemaker.genealogy.com/abtffiv.html and "Family Archive Viewer
v11.0" at http://www.genealogy.com/abtffiv.html are other variants that
exhibits this behavior.
Have attached sample screenshots of Wine vs WinXP versions of the print
dialogue.
--
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=30155
Bug #: 30155
Summary: secdrv.sys from SafeDisc v2.05.030 does not work
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan(a)codeweavers.com
Classification: Unclassified
Created attachment 39336
--> http://bugs.winehq.org/attachment.cgi?id=39336
service,relay,winedevice,ntoskrnl log
SafeDisc 2.05.030 does not work out of the box. The user-visible symptom is
that the application exits with exit code 0 without any output. This affects
for example the Command and Conquer Red Alert 2 installer, which is safedisc
protected for some reason.
The problem seems to be related to the specific secdrv.sys version. If I take a
secdrv.sys from a newer safedisc version(e.g. 2.40.010 from the RA2 Yuri's
revenge expansion) and put it in C:\windows\system32\drivers, the installer
works.
ProtectId says:
Scanning -> D:\Setup\Setup.exe
File Type : 32-Bit Exe (Subsystem : Win GUI / 2), Size : 1308863 (013F8BFh)
Byte(s)
-> File has 733375 (0B30BFh) bytes of appended data starting at offset 08C800h
[File Heuristics] -> Flag : 00000000000000000100000000100111 (0x00004027)
[!] Safedisc v2.05.030 detected !
[i] Appended data contents....
[.] o: 0x0008C828 / t: <0x00000001> <0x00000000> <0x00000001> / s: 00194947
byte(s) -> ~de7bc4.tmp
[.] o: 0x000BC1D2 / t: <0x00000001> <0x00000000> <0x0000044C> / s: 00030208
byte(s) -> clcd32.dll
[.] o: 0x000C37F9 / t: <0x00000001> <0x00000000> <0x0000044C> / s: 00006784
byte(s) -> clcd16.dll
[.] o: 0x000C529D / t: <0x00000001> <0x00000000> <0x0000044D> / s: 00067584
byte(s) -> mcp.dll
[.] o: 0x000D5AC5 / t: <0x00000001> <0x00000000> <0x00000000> / s: 00327220
byte(s) -> ~df394b.tmp
[.] o: 0x00125920 / t: <0x00000001> <0x00000000> <0x00000002> / s: 00034304
byte(s) -> drvmgt.dll
[.] o: 0x0012DF47 / t: <0x00000001> <0x00000000> <0x00000002> / s: 00018768
byte(s) -> secdrv.sys
[.] o: 0x001328BF / t: <0x00000001> <0x00000000> <0x00000000> / s: 00053248
byte(s) -> ~ef7194.tmp
[CompilerDetect] -> Visual C++ 6.0
- Scan Took : 0.640 Second(s)
The md5sum of the broken secdrv.sys is XXX. The md5sum of the working 2.40.010
driver is f376a1580204e47f37a721e1cbc5582a.
I am attaching a +relay,+service,+winedevice+ntoskrnl log of a failed run of
the setup tool.
--
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=9378
Summary: CM: Shock Force 'Could not initialize graphics display'
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.battlefront.com/products/cmsf/downloads.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mailing_list(a)orange.nl
After starting Combat Mission: Shock Force Demo it stops with the message:
'Could not initialize graphics display. REQUIRED 1024x768, 32-bit
color'.
The terminal output doesn't provide any clues:
wine 'CM Shock Force DEMO.exe'
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 0
ALSA lib control.c:910:(snd_ctl_open_noupdate) Invalid CTL default:0
err:alsa:ALSA_CheckSetVolume Could not find 'PCM Playback Volume' element
err:alsa:ALSA_CheckSetVolume Could not find 'PCM Playback Volume' element
fixme:wave:ALSA_AddCaptureDevice Add support for DSCapture
ALSA lib seq_hw.c:457:(snd_seq_hw_open) open /dev/snd/seq failed: No such file
or directory
--
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=18889
Summary: Live Messenger 2008 fails to load - possible actctx
problem
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andras(a)csevego.net
Created an attachment (id=21730)
--> (http://bugs.winehq.org/attachment.cgi?id=21730)
+actctx,+relay log
Starting of installed (on windows) Msn 2009 wil result:
err:module:import_dll Library MSVCR80.dll (which is needed by
L"Z:\\media\\disk\\Program Files\\Windows Live\\Messenger\\msnmsgr.exe") not
found
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\media\\disk\\Program Files\\Windows Live\\Messenger\\msnmsgr.exe" failed,
status c0000135
Same load failure, when I manually install with wine (from msi packages)
MSVCRT 8.0 is installed, as shown attached +actctx,+relay log
I suspect here an Activation Context failure.
--
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=24614
Summary: Medieval Total War crashes on startup
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: th.seltsam(a)gmail.com
CC: wine-bugs(a)winehq.org
Running the game just shows a black window, no crash dialog, and an infinite
console output
err:d3dx:assemble-shader Asm reading failed
err:d3dx:assemble-shader Asm reading failed
err:d3dx:assemble-shader Asm reading failed
err:d3dx:assemble-shader Asm reading failed
Using d3dx9-36 did not solve the 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=11436
Summary: Pepakura viewer: err:wgl:X11DRV_wglShareLists Could not
share display lists, context already created !
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.tamasoft.co.jp/pepakura-
en/download/viewer.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: x11-driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fabio.capela(a)yahoo.com
Created an attachment (id=10567)
--> (http://bugs.winehq.org/attachment.cgi?id=10567)
Trace until the error.
I'm trying to run the Pepakura viewer, but it's giving an strange error on
startup (error: no error) and is having some graphical glitches, as well as
being extremely slow.
The grafical glitches are a flickering 3D model and no textures on the 2D
model.
The bug seems to be the same one affecting Pepakura Designer 2.
The console shows an error with X11DRV_wglShareLists
(err:wgl:X11DRV_wglShareLists Could not share display lists, context already
created !). I've attached a wgl trace up to the moment the error dialog
appears. Seems like the workaround to handle the different way to share OpenGL
contexts in Windows and Linux can't handle this specific software.
The software is freeware and can be downloaded from
http://www.tamasoft.co.jp/pepakura-en/download/viewer.html
--
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=21983
Summary: Buttons come on each other in Proteus
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ssserkkk(a)yahoo.com
hi!
The buttons in ISIS and ARES come on each other. The ones that create this
problem are "subcircuit mode ile terminals mode",
"virtual instruments mode and 2D graphics line mode" in ISIS program;
"connectivity highlight mode and round through-hole pad mode", "padstack mode
and 2D graphics line mode" in ARES.
--
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=31278
Bug #: 31278
Summary: The Longest Journey: "eye-mouth-hand" dialog only
appears sometimes (randomly?)
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmmartins(a)gmail.com
Classification: Unclassified
This bug has been described by Octavian Vocu on one of his comments in another
bug report from the same game
(http://bugs.winehq.org/show_bug.cgi?id=11819#c39). I'm pasting an excerpt of
his comment below because it explains exactly what's happening:
"There is still some issue related to doing actions on objects, with the mouse.
Clicking an actionable object should display the eye-mouth-hand dialog. Mouse
shows correct pointer, but simply clicking has no effect. I noticed that as you
push the left mouse button, you need to move the mouse slightly for the action
dialog to appear. Might be related to transparent windows, not sure yet."
It's certainly a different bug and deserves a different report, that's why I'm
creating this.
I've tested this on Debian Sid (i386) with wine-1.5.9. The console output is
small, so I just pasted it below; the messages look the same as every other bug
report on the game. The last three fixme's repeat a million times.
fixme:win:EnumDisplayDevicesW ((null),0,0x33eb04,0x00000000), stub!
fixme:ddraw:ddraw7_Initialize Ignoring guid
{00000000-0000-0000-0000-000000000000}.
fixme:d3d_surface:wined3d_surface_flip Ignoring flags 0x1.
fixme:d3d_surface:surface_load_location Unimplemented location SFLAG_INSYSMEM
for depth/stencil buffers.
fixme:d3d_surface:surface_unmap Depth / stencil buffer locking is not
implemented.
fixme:d3d:state_subpixel Render state WINED3D_RS_SUBPIXEL not implemented yet.
fixme:d3d:state_flushbatch Render state WINED3D_RS_FLUSHBATCH not implemented
yet.
fixme:d3d_surface:surface_load_location Unimplemented location SFLAG_INSYSMEM
for depth/stencil buffers.
fixme:d3d_surface:surface_load_location Unimplemented location SFLAG_INSYSMEM
for depth/stencil buffers.
fixme:d3d_surface:surface_unmap Depth / stencil buffer locking is not
implemented.
It might be important to notice that Octavian was probably on the right track
of fixing this with his previous patches. The game runs pretty well on 1.3.32
with three of his patches (http://bugs.winehq.org/show_bug.cgi?id=11819#c37);
the issue reported here is the main thing keeping it from being almost perfect.
Also, on a 1.5.9 with the same three patches (even though the characters are
invisible again) the following three messages appear when you click an object
(when the dialog should be displayed):
fixme:x11drv:X11DRV_WindowPosChanged transparent window, fixing window rect
fixme:x11drv:X11DRV_WindowPosChanged transparent window, fixing window rect
fixme:x11drv:X11DRV_WindowPosChanged transparent window, fixing window rect
--
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=33257
Bug #: 33257
Summary: Adobe Digital Editions does not recognize KOBO
eReader.
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peterharris20(a)sky.com
Classification: Unclassified
Adobe Digital Editions does not find the KOBO eReader when it is plugged in.
Ubuntu 10.04 recognizes it and displays the folder and contents.
--
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=26871
Summary: Dawn of War demo uninstaller doesn't do anything
Product: Wine
Version: 1.3.18
Platform: x86-64
URL: http://download.cnet.com/Warhammer-40-000-Dawn-of-War-
demo/3000-7483_4-10317161.html
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=34254)
--> (http://bugs.winehq.org/attachment.cgi?id=34254)
Wine 1.3.18 +msi +msidb [3.3MB]
The Warhammer 40k: Dawn of War demo uninstaller claims to complete
successfully, but doesn't actually do anything.
Nothing useful in the console.
--
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=24078
Summary: The Last Remnant demo: Window size is too small
Product: Wine
Version: 1.3.1
Platform: x86-64
URL: http://news.bigdownload.com/2009/02/26/download-the-la
st-remnant-demo/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
On windows, the window size is the width of your screen, but on wine, it's
about 1/3 of the size.
--
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=33306
Bug #: 33306
Summary: Wine creates FreeDesktop .desktop files when windows
Desktop shortcuts (lnk files) are created
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adman.com(a)gmail.com
Classification: Unclassified
Mac OS X does not support the freedesktop standard for .desktop files, however
Wine attempts to create one anyway when a Windows shortcut (lnk file) is
created by an installer.
This feature should be disabled on Mac OS X, in place of something which can
generate Mac OS X-compatible shortcuts.
--
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=23301
Summary: Steam 2010 version: tooltips popups even when the
steam windows isn't top-active one
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mooroon2(a)mail.ru
Created an attachment (id=29052)
--> (http://bugs.winehq.org/attachment.cgi?id=29052)
Fragment of a screenshot showing the bug in action.
If I've got Steam client window opened on a page where some help tooltips are
expected to popup on mouseover's over some UI elements they would popup and
show as a top z-order window no matter is the Steam windows currently active
one or not. An example how might it look like may be seen in attached
screenshot.
Easiest page to trigger the bug is the "Game details" view in the games library
for the games with "Achievements" available - there would be tooltip popups
when moving the mouse pointer over the pictures representing the achievements.
This behavior was spotted with wine versions starting at about 1.2-rc1 and up
to current 1.2-rc4. Can't tell if earlier versions of Wine suffered the same
bug as I haven't got enough free time to compile and do some tests with em.
--
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=26658
Summary: Steam startup slow on Wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On my nice fast laptop with a 15 Mbit/sec internet connection and wine from
git,
it takes 20-30 seconds from the time the "Connecting Steam Account: Foo"
appears to the time it gains a cancel button. This is about two or three times
longer than on Windows 7 on the same hardware.
The extra time makes starting Steam much more annoying.
--
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=31212
Bug #: 31212
Summary: Some VST instruments crash when reloaded in Mixcraft
Product: Wine
Version: 1.5.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: s_chriscollins(a)hotmail.com
Classification: Unclassified
In Mixcraft, some VST instruments crash when loaded a second time on a track.
However, the same instruments work fine when loaded for the first time on a
track. The following can be reproduced easily in Mixcraft:
1. Start Mixcraft and select "Build Virtual Instrument Tracks" from the "New
Project" window.
2. Click on the keyboard icon next to the first track name, which will bring up
the instrument selection window.
3. Select "<VSTi Instruments>" from the left pane and then "Messiah" from the
right pane. This sets the track to use the Messiah VSTi synth.
4. Now select "Acoustica Instruments" from the right pane.
5. Once again, select "Messiah" from the right pane. Mixcraft will pop up an
error box with the title "An instrument has crashed" containing the following
text: "A crash has been detected in the instrument "Messiah." This plug-in has
been muted. We recommend you save your project and re-start Mixcraft to avoid
losing your work."
Unfortunately, no helpful terminal output seems to be generated in relation to
the plugin crash. I have provided more detailed notes on VST behavior in
Mixcraft here:
https://docs.google.com/document/d/1YEPh0mkd_ip1whAJXcRIl4HYny5D8LSeGo3qgzV…
** My System **
OS: Kubuntu 12.04 64-bit w/ KDE SC 4.8.4
Motherboard: ASRock X58 Extreme3 (Intel X58 chipset)
CPU: Intel Core i7 (2.8 GHz quad-core)
RAM: 12GB DDR3
Video: Dell NVIDIA GeForce 7800 GTX w/ 256 MB RAM (PCI Express)
Sound Card #1: Sound Blaster Audigy 2 ZS Gold
Sound Card #2: Echo Gina3G
Linux Kernel: 3.2.0-26-generic
NVIDIA video driver: 302.17
Screen Resolution: 1280 x 960
--
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=18260
Summary: Quicktime 2 installer exits silently
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/quicktime212.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20783)
--> (http://bugs.winehq.org/attachment.cgi?id=20783)
Wine 1.1.20 +relay +seh +tid (last 3MB)
Installer from Quicktime 2.1.2 exits silently.
Apparently the only available version is from oldversion.com
However, I also have a copy that comes with another app that installs fine. It
*might* have something to do with the lzexpand DLLs.
Failing version prints these lines and then exits:
trace:loaddll:NE_FreeModule Unloaded module "LZEXPAND.DLL" : builtin
trace:loaddll:free_modref Unloaded module
L"C:\\windows\\system32\\lzexpand.dll16" : builtin
trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\lz32.dll" :
builtin
Whereas the working version prints this line and continues:
trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\lz32.dll" :
builtin
I can upload the working version too if needed.
--
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=15255
Summary: ntdll: The memory overview Page in Google Chrome is
incomplete (MemoryWorkingSetList for
NtQueryVirtualMemory)
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://chrome.google.com
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P3
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Created an attachment (id=16041)
--> (http://bugs.winehq.org/attachment.cgi?id=16041)
about:memory
Display the Memory status Page with "about:memory"
The Virtual Memory status is displayed (Private and Mapped),
but the Resident memory size is 0 (Private, Shared and Total)
0019:fixme:virtual:NtQueryVirtualMemory (process=0xffffffff,addr=(nil))
Unimplemented information class: MemoryWorkingSetList
0019:fixme:virtual:NtQueryVirtualMemory (process=0x108,addr=(nil))
Unimplemented information class: MemoryWorkingSetList
--
By by ... Detlef
--
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=22522
Summary: black intro videos with smackw32.dll
Product: Wine
Version: 0.9.48.
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
"Der Dieb von Burg Schreckenstein" and "5 Freunde 2 und der silberne
Turm" start with a black screen when it should show an intro video.
Audio is played normally and the app proceeds to the main menu after
the video ends. Also, pressing a key aborts the video as expected.
The video is visible on a native XP machine.
Both apps use smackw32.dll to display the video. I suppose the screen
remains black because an exception is caught soon after start.
0009:CALL smackw32._SmackDoFrame@4(008c5440) ret=0049ef3d
0009:Call winmm.timeGetTime() [a few times]
0009:Ret winmm.timeGetTime()
0009:trace:seh:raise_exception code=c0000005 flags=0 (access violation)
...
0009:RET smackw32._SmackDoFrame@4() retval=00000000 ret=0049ef3d
The sequence of smackw32 calls is:
smackw32._SmackOpen@12
smackw32._SmackCheckCursor@20
smackw32._SmackToBuffer@28
smackw32._SmackDoFrame@4
The affected video is "intro.smk". Curiously, this is the second such
sequence. The first one, opening "loads.smk" produces no exception
(but it is too short to be a video). Surprisingly, Burg
Schreckenstein's ending credits extro_[1-7].smk are rendered (these
appear to be still images without animation).
Logs are available upon request. What channels?
You may add
[Smacker]
Debug=1
to win.ini and set WINEDEBUG=+debugstr.
I've not yet written an AppDB entry for either of these 2 children apps.
"5 Freunde" is Enid Blyton's "Famous 5" or "Club des cinq".
Bug present with both Ubuntu Intrepid and MacOS, on different HW and was
observed as early as wine-0.9.48 to present.
--
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=23134
Summary: iexplore does not correctly detect proxy details
Product: Wine
Version: 1.2-rc3
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Blocks: 19261
I have an Ubuntu Lucid system that has the proxy preferences set up for HTTP
and FTP. Native applications use the proxy for HTTP and FTP but all other
protocols bypass the proxy. iexplore doesn't. The result being that when a
HTTPS page is opened, there is a failure (proxy does not support HTTPS). Using
Squid.
The following error was encountered while trying to retrieve the URL:
https://accounts.sling.com/accounts/login?
Unsupported Request Method and Protocol
Squid does not support all request methods for all access protocols. For
example, you can not POST a Gopher request.
--
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=25128
Summary: Missing flashing border on the stage select screen of
Pikachu Volleyball 3D
Product: Wine
Version: 1.3.6
Platform: x86-64
URL: http://rev.knu.ac.kr/down/PV3DSetup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=31880)
--> (http://bugs.winehq.org/attachment.cgi?id=31880)
Full output
Choosing "single play" from the main menu leads to a stage selection screen
with a small image of each stage to choose from. The current selection is
supposed to be indicated by a fade effect and a multicolored flashing border.
The fade effect works, but the border always remains black. winetricks d3dx9_36
makes it work correctly.
On this screen, the terminal is flooded with a series of fixmes:
fixme:d3dx:ID3DXLineImpl_Begin (0x217fc0)->(): stub
fixme:d3dx:ID3DXLineImpl_Draw (0x217fc0)->(0x782b58, 5, 0xff0000ff): stub
fixme:d3dx:ID3DXLineImpl_End (0x217fc0)->(): stub
--
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=23356
Summary: Napoleon Total War: black screen without winetricks
d3d9x
Product: Wine
Version: 1.2-rc4
Platform: x86-64
URL: http://www.totalwar.com/napoleon/demo/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
The log shows several d3dx stubs are causing it trouble:
implemented
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
fixme:d3dx:D3DXCreateTextureFromFileInMemoryEx (0x8eafae8, 0xd7ee731, 1440128,
4294967294, 4294967294, 1, 0, fffffffd, 1, 2, 5, 0, (nil), (nil), 0x8f53864):
stub
...
fixme:d3dx:ID3DXEffectImpl_SetMatrixTranspose (0x8f54f58)->(0x1642ea0,
0x8ea54fc): stub
fixme:d3dx:ID3DXEffectImpl_SetTechnique (0x8f54f58)->(0x1642eac): stub
...
d3d call failed, code: 0x80004001
d3d call failed, code: 0x80004001
d3d call failed, code: 0x80004001
d3d call failed, code: 0x80004001
d3d call failed, code: 0x80004001
winetricks d3dx9 lets it start with graphics.
--
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=32334
Bug #: 32334
Summary: Microsoft SQL Server Management Studio Express 2005:
Connection window is too narrow
Product: Wine
Version: 1.5.18
Platform: x86
URL: http://www.microsoft.com/download/en/details.aspx?id=8
961
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
Regression SHA1: ebaf5ea17623268fb1c0f68b1cf9a5984bd4e46e
Created attachment 42678
--> http://bugs.winehq.org/attachment.cgi?id=42678
Screenshots of good and bad versions
Connection window that appears right after starting the application is too
narrow. You may notice that the bitmap on the top is clipped.
Regression testing points to the following commit:
ebaf5ea17623268fb1c0f68b1cf9a5984bd4e46e is the first bad commit
commit ebaf5ea17623268fb1c0f68b1cf9a5984bd4e46e
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Nov 15 13:29:21 2012 +0100
gdi32: Don't load bitmap glyphs when using subpixel rendering in
GetGlyphOutline.
Reverting that commit on top of current git brings back correct behavior.
Prerequisite:
winetricks dotnet20 win7
--
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=21940
Summary: Rise of Legends Demo crashes with null pointer
reference in msxml3?
Product: Wine
Version: 1.1.40
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Once you get past bug 19539, you have to choose to ignore
two BHG errors; the game then starts and runs (though I got
no sound). Trying to play a campaign crashed for me quickly with
an msxml3 error (which is funny, since I had done winetricks msxml3,
and winecfg shows the override, but the backtrace still shows Wine's msxml3):
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x7362be22).
Backtrace:
=>0 priv_from_xmlDocPtr+0x6(doc=(nil)) [dlls/msxml3/domdoc.c:127] in msxml3
1 xmldoc_add_ref+0x1d(doc=(nil)) [dlls/msxml3/domdoc.c:160] in msxml3
2 init_xmlnode+0x26(This=0x3fb63f8, node=0x7e222980, outer=0x3fb6418,
dispex_data=0x73666dec) [dlls/msxml3/node.c:1714] in msxml3
3 create_element+0x6c(element=0x7e222980) [dlls/msxml3/element.c:797] in
msxml3d
4 create_node+0x9d(node=0x7e222980) [dlls/msxml3/node.c:1736] in msxml3
5 queryresult_nextNode+0xdf(iface=0x3ff1120, nextItem=0x32ad60)
[dlls/msxml3/queryresult.c:267] in msxml3
6 xmlnode_selectSingleNode+0xd3(iface=0x1e9510, kqueryString="TRIBE_MASK",
resultNode=0x32ad60) [dlls/msxml3/node.c:1542] in msxml3
7 in legends (+0x6f34c) (0x0032b2dc)
...
0x7362be22 priv_from_xmlDocPtr+0x6 [dlls/msxml3/domdoc.c:127] in msxml3: movl
0x0(%eax),%eax
127 return doc->_private;
--
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=28678
Bug #: 28678
Summary: DirectDraw primary buffer is obscured by transparent
window
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: octavian.voicu(a)gmail.com
Classification: Unclassified
Created attachment 36852
--> http://bugs.winehq.org/attachment.cgi?id=36852
Screenshot showing the obscured dialog.
When trying to exit from the game The Longest Journey (either via menu option
or pressing Alt+F4), a dialog box is shown with Yes/No options.
The application uses DirectDraw for rendering. The dialog box and mouse cursor
are rendered on an offscreen surface (dialog has an image as the background and
buttons use a custom implementation afaics), which is then blitted to the
primary buffer (happens like this when you force single buffer mode; with
double buffering it could be slightly different, but the overall effect is the
same).
The dialog is a parent of the main application window, uses the standard dialog
window class (atom #32270 or 8000 in hex) and has the WS_POPUP and
WS_EX_TRANSPARENT window styles. Window receives a WM_ERASEBKGND message, which
is handled by the default dialog proc by painting the background in the
standard window background color (gray in this case).
When primary buffer is blitted to the d3d surface
(ddraw_surface_update_frontbuffer which uses OpenGL), the rendering of the
dialog is masked by the window boundaries and the gray rectangle remains.
Dialog is interactable and you can click the buttons (if you can do that
without seeing where the mouse is).
The question is: how can we make the primary buffer draw over WS_EX_TRANSPARENT
child windows, as it works on native? Removing the WS_EX_TRANSPARENT style from
the dialog window (on runtime, using WinSpy++ 1.7) makes native's behavior
identical to current wine behavior (only a gray rectangle is visible).
--
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=33326
Bug #: 33326
Summary: Sound problem with Game Maker 8.0 games
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: georgiev_1994(a)abv.bg
Classification: Unclassified
When Im starting a game created from Game Maker 8.0 Po it's sound does not
start. This is happening with every game Im trying to run. This is caused maybe
because of the sound system of Game Maker built games. Here I will give a link
just to one game which runs just perfect with Windows OS but not perfect at all
with Wine.
http://sandbox.yoyogames.com/games/205913/download
--
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=27232
Summary: keys stuck when wine window loses focus
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)gmail.com
When a key is pressed while a wine application is in focus and released while
other application has focus it is stuck down in wine.
To reproduce:
0) set your window manager to focus follows mouse
1) run notepad
2) press some keys to type text
3) press and hold ctrl, pressing a now selects typed text
4) move the mouse to another window
5) release ctrl
6) move mouse back to notepad, press a
Now text previously selected should be replaced with a. Instead, it is selected
again by the Ctrl+a shortcut.
The Ctrl key is stuck.
Note that when windows are switched by means similar to Windows ALt+Tab the
modifier used for switching windows this way gets also stuck.
--
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=23583
Summary: Kaspersky Internet Security 2010 needs FLTMGR.SYS to
install in Vista and Win 7 mode
Product: Wine
Version: 1.2-rc7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bojan(a)antonovic.ch
Created an attachment (id=29472)
--> (http://bugs.winehq.org/attachment.cgi?id=29472)
install log
See summary and attachment.
--
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=32863
Bug #: 32863
Summary: Mathematica main menu window has extra space under
menu
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 43397
--> http://bugs.winehq.org/attachment.cgi?id=43397
Screenshot
In Windows there's nothing like the black bar under menu seen in the screenshot
(denoted by arrow).
--
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=11773
Summary: Mathematica 5.1, Display errors, unreadable.
Product: Wine
Version: 0.9.55.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jacobidiego(a)gmail.com
Hello.
I have previously filed a bug about Mathematica not being able to install:
URL: http://bugs.winehq.org/show_bug.cgi?id=11725
And this same bug in one report which will be marked as invalid:
http://bugs.winehq.org/show_bug.cgi?id=11765
The errors of this report is:
- Some characters are not displayed as they should.
Writing an expression like: (2+x)/(x^2-3) will be showed as (2+x)}(x^2-3).
Note the "/" is changed by "}", but double "//" is correctly showed as "//".
Also Pressing x² makes Mathematica crashes just becouse the correct expression
is x^2 and not x² or x³.
Also there seems to be some conditions for the "/" to be drawed, like if it is
preceded by a variable o number: see 1/x or x/(x-3) then the "/" will be
drawed, but if is is preceded by a ) or ] then "}" will be drawed: (x-3)/x or
Sin[x]/x. Thats wear.
- Mathematical representation is badly printed.
When you enter expressions like (2+x)/(x^2-3) Mathematical has the really nice
feature of showing this as a nice looking fraction. Also it can represent it
with ascii characters if you choose that, but with wine, it doesn't shows the
goodlooking expression and shows a terrible badly drawed ascii expression. Just
to say, "1/x" can not be readed with this expression.
But i am not entirely sure when and why. Trying a bit furder and i can get some
examples which are correctly drawn:
Sqrt[x-3]
(x-3)^2//Expand
But a fraction will not be correctly displayed:
(2+x)/(x^2-3)
Maybe this has something to do with the first error that mathematica will show
a "}" instead of a "/": (2+x)}(x^2-3)
All this errors were tested on ubuntu 7.10 AMD64 and with wine 0.9.55 (becouse
.56 is not available yet for ubuntu on your repos) and with all builtin dlls,
but also some natives does the same results.
It is only one of other errors of Mathematica.
I have no logs for that.
Cheers.
Diego
--
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=18388
Summary: Roblox crashes on install with unimplemented function
pdh.dll.PdhMakeCounterPathA
Product: Wine
Version: 1.1.20
Platform: Other
URL: http://wiki.roblox4linux.co.cc
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user asked for help with this app, see
http://www.winehq.org/pipermail/wine-users/2009-May/053263.html
He said it was his son's favorite game.
Starting the installer goes fine, but it crashes with that
underfined function in pdh.dll.
Winetricks pdh works around it and gets on to the next 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=27827
Summary: Creo Elements/Direct Modeling Express 4.0 loader
failure due to missing msvcrt.dll dependency
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
a user reported a problem with this app on IRC #winehq.
It seems there is a dll dependency to msvcrt.dll not present with Wine dlls.
--- snip ---
...
0025:Call PE DLL (proc=0x5c172245,module=0x5c170000
L"redirect.dll",reason=PROCESS_ATTACH,res=0x1)
0025:Call KERNEL32.GetEnvironmentVariableW(5c17309c
L"SDREDIRECTION",5c175f30,00000040) ret=5c171d99
0025:Ret KERNEL32.GetEnvironmentVariableW() retval=00000000 ret=5c171d99
0025:Call KERNEL32.lstrcmpiW(5c173810 L"no",5c1730b8 L"") ret=5c17228a
0025:Ret KERNEL32.lstrcmpiW() retval=00000001 ret=5c17228a
0025:Call KERNEL32.SetEnvironmentVariableW(5c1738c0 L"_NO_DEBUG_HEAP",5c1738bc
L"1") ret=5c1722b1
0025:Ret KERNEL32.SetEnvironmentVariableW() retval=00000001 ret=5c1722b1
0025:Call KERNEL32.GetModuleHandleW(00000000) ret=5c1722e0
0025:Ret KERNEL32.GetModuleHandleW() retval=00400000 ret=5c1722e0
0025:Call KERNEL32.GetProcAddress(00400000,5c173954 "ThreadAttached")
ret=5c1722e7
0025:Ret KERNEL32.GetProcAddress() retval=004e6e20 ret=5c1722e7
0025:Call KERNEL32.GetModuleHandleW(00000000) ret=5c1722f9
0025:Ret KERNEL32.GetModuleHandleW() retval=00400000 ret=5c1722f9
0025:Call KERNEL32.GetProcAddress(00400000,5c173964 "ThreadDetached")
ret=5c172300
0025:Ret KERNEL32.GetProcAddress() retval=004e6e40 ret=5c172300
0025:Call KERNEL32.GetModuleHandleW(5c173624 L"MSVCRT") ret=5c17212b
0025:trace:module:LdrGetDllHandle L"MSVCRT" -> (nil) (load path L"C:\\Program
Files\\PTC\\Creo Elements\\Direct Modeling Express
4.0\\binNT;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem")
0025:Ret KERNEL32.GetModuleHandleW() retval=00000000 ret=5c17212b
0025:Call KERNEL32.GetProcAddress(00000000,5c173618 "setlocale") ret=5c172132
0025:Ret KERNEL32.GetProcAddress() retval=00000000 ret=5c172132
0025:Call KERNEL32.OutputDebugStringW(5c173650 L"redirect: Cannot find
setlocale() in msvcrt.dll.") ret=5c17214b
0025:Ret KERNEL32.OutputDebugStringW() retval=0032fc80 ret=5c17214b
0025:Call KERNEL32.lstrcmpiW(5c173610 L"try",5c1730b8 L"") ret=5c172230
0025:Ret KERNEL32.lstrcmpiW() retval=00000001 ret=5c172230
0025:Call KERNEL32.RaiseException(0000002c,00000000,00000000,00000000)
ret=5c172243
0025:trace:seh:raise_exception code=2c flags=0 addr=0x683704bb ip=683704bb
tid=0025
0025:trace:seh:raise_exception eax=6835dc85 ebx=683e06c4 ecx=00000000
edx=00000010 esi=0032fd18 edi=0032fc90
0025:trace:seh:raise_exception ebp=0032fc78 esp=0032fc14 cs=0073 ds=007b
es=007b fs=0033 gs=003b flags=00200246
0025:trace:seh:call_stack_handlers calling handler at 0x7b9fbf2e code=2c
flags=0
0025:trace:seh:__regs_RtlUnwind code=2c flags=2
0025:trace:seh:__regs_RtlUnwind calling handler at 0x7b9e0be3 code=2c flags=2
0025:trace:seh:__regs_RtlUnwind handler at 0x7b9e0be3 returned 1
...
--- snip ---
The dll init code from "redirect.dll" assumes "msvcrt.dll" has already been
loaded (hence GetModuleHandleW).
There is an earlier loading attempt of "msvcrt.dll" due to Wine builtin
MSVCR100.dll which is later dropped because native MSVCR100.dll has precedence.
--- snip ---
...
0025:warn:module:load_builtin_dll failed to load .so lib for builtin
L"C:\\windows\\system32\\MSVCR100.dll":
/home/focht/.wine/dosdevices/c:/windows/system32/msvcr100.dll: invalid ELF
header
0025:trace:module:load_builtin_dll Trying built-in L"MSVCR100.dll"
0025:trace:module:load_dll looking for L"msvcrt.dll" in L"C:\\Program
Files\\PTC\\Creo Elements\\Direct Modeling Express
4.0\\binNT;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0025:trace:module:get_load_order looking for
L"C:\\windows\\system32\\msvcrt.dll"
0025:trace:module:get_load_order got hardcoded default for L"msvcrt.dll"
0025:trace:module:load_dll L"C:\\windows\\system32\\msvcrt.dll" is a fake Wine
dll
0025:trace:module:load_builtin_dll Trying built-in L"msvcrt.dll"
0025:trace:module:load_dll looking for L"kernel32.dll" in L"C:\\Program
Files\\PTC\\Creo Elements\\Direct Modeling Express
4.0\\binNT;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0025:trace:module:load_dll Found L"C:\\windows\\system32\\KERNEL32.dll" for
L"kernel32.dll" at 0x68350000, count=7
0025:trace:module:load_dll looking for L"ntdll.dll" in L"C:\\Program
Files\\PTC\\Creo Elements\\Direct Modeling Express
4.0\\binNT;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0025:trace:module:load_dll Found L"C:\\windows\\system32\\ntdll.dll" for
L"ntdll.dll" at 0x7b980000, count=7
0025:trace:module:load_builtin_callback loaded msvcrt.dll 0x116490 0x68780000
0025:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\msvcrt.dll"
at 0x68780000: builtin
0025:trace:module:load_dll Loaded module L"C:\\windows\\system32\\msvcrt.dll"
(builtin) at 0x68780000
0025:trace:module:load_dll looking for L"kernel32.dll" in L"C:\\Program
Files\\PTC\\Creo Elements\\Direct Modeling Express
4.0\\binNT;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0025:trace:module:load_dll Found L"C:\\windows\\system32\\KERNEL32.dll" for
L"kernel32.dll" at 0x68350000, count=8
0025:trace:module:load_builtin_callback loaded msvcr100.dll 0x116398 0x68740000
0025:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\msvcr100.dll" at 0x68740000: builtin
0025:Call PE DLL (proc=0x6874bac4,module=0x68740000
L"msvcr100.dll",reason=WINE_PREATTACH,res=(nil))
0025:Ret PE DLL (proc=0x6874bac4,module=0x68740000
L"msvcr100.dll",reason=WINE_PREATTACH,res=(nil)) retval=0
0025:trace:module:load_dll L"C:\\windows\\system32\\MSVCR100.dll" pre-attach
returned FALSE, preferring native
0025:trace:module:LdrUnloadDll (0x68740000)
0025:trace:module:LdrUnloadDll (L"msvcr100.dll") - START
0025:trace:module:MODULE_DecRefCount (L"msvcr100.dll") ldr.LoadCount: 0
0025:trace:module:MODULE_DecRefCount (L"msvcrt.dll") ldr.LoadCount: 0
0025:trace:module:MODULE_DecRefCount (L"KERNEL32.dll") ldr.LoadCount: 7
0025:trace:module:MODULE_DecRefCount (L"ntdll.dll") ldr.LoadCount: 6
0025:trace:module:MODULE_DecRefCount (L"KERNEL32.dll") ldr.LoadCount: 6
0025:trace:module:free_modref unloading L"C:\\windows\\system32\\msvcrt.dll"
0025:trace:module:free_modref unloading L"C:\\windows\\system32\\msvcr100.dll"
0025:trace:module:LdrUnloadDll END
0025:trace:module:load_native_dll Trying native dll
L"C:\\windows\\system32\\MSVCR100.dll"
...
--- snip ---
It would be helpful if someone could install the app on Windows and load
"SolidDesigner.exe" main executable in Dependency Walker Tool
(http://www.dependencywalker.com/) to figure out which dll pulls in
"msvcrt.dll".
In the listview select "msvcrt.dll" and then right click context menu
"highlight matching module in tree".
This would ideally show the parent dll in tree view that pulls in the
dependency.
Regards
--
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=24946
Summary: uTorrent Release Candidate 2 (2.2 build 22732) hangs
on start up
Product: Wine
Version: 1.3.6
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
µTorrent hangs on start up here in Wine 1.3.5 and 1.3.6. I've double checked
with an empty $HOME/.wine.
I'm using Fedora 14 i686.
--
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=26359
Summary: VMWare Player Setup has no GUI
Product: Wine
Version: 1.3.15
Platform: x86-64
URL: http://www.computerbild.de/download/VMware-Player-9032
75.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
Created an attachment (id=33580)
--> (http://bugs.winehq.org/attachment.cgi?id=33580)
console log
VMware-player-3.1.3-324285 Setup only has white screen. From console log i
would guess it's gecko related.
--
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=20482
Summary: Tunnelier Win32 SSH client shows a very tall dialog
upon exiting
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: christianuceda(a)yahoo.com
Created an attachment (id=24385)
--> (http://bugs.winehq.org/attachment.cgi?id=24385)
Anomalous confirmation dialog
Tunnelier is a nice Win32 SSH graphical client.
Get the software from:
$wget http://dl.bitvise.com/Tunnelier-Inst.exe
Then install:
$wine Tunnelier-Inst.exe
To run it:
$wine tunnelier
to reproduce the bug just log into any ssh enabled server, the console and the
SFTP window will open automatically after logging in.
Then click on exit, a requester stating that there is a session running will
appear asking for exit confirmation.
This confirmation dialog is anomalous, the text on it appears like a tall
vertical column.
See attached capture.
--
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=25435
Summary: MS Access will not open any wizard.
Product: Wine
Version: 1.3.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: de.techno(a)gmail.com
After creating a table, going to the create tab, you'll find lots of wizards...
like the form wizard, report wizard etc... none of them work.
A window opens with the title frui_frmMain with the next, previous cancel etc..
buttons visible and that's about it... access hangs completely and has to be
forced quited.
This appears to be a popular bug.
--
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=24878
Summary: "Group by" options don't work in Explorer++
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31495)
--> (http://bugs.winehq.org/attachment.cgi?id=31495)
Terminal output
The file grouping options accessible in the view -> group by menu don't seem to
do anything. Native comctl32 (v6) makes them functional.
--
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=27559
Summary: ImgBurn crash at startup when Wine's 'Windows Version'
is set to 'Vista' (or newer)
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://www.imgburn.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lightning_uk(a)imgburn.com
I've had a bunch of crash logs sent to me over the past year where ImgBurn
crashes unrecoverably on startup when users are running it under Wine but was
never able to reproduce the error until today.
It turns out that if Wine's 'Windows Version' is set to 'XP' (default and what
I'd always been using) everything works fine. The second it's changed to
'Vista' (or newer), the app crashes at startup.
I've managed to get a crash call stack via madExcept / Eurekalog and have now
traced the problem back to the 'Explorer' style component it uses in the 'Disc
Layout Editor' window ('TVirtualExplorerTree' by MustangPeak). It looks like
it's related to namespace stuff and therefore the shell?
I've made/attached a Delphi demo app with a single form and single instance of
'TVirtualExplorerTree' to hopefully make testing and debugging this issue a
little easier.
Without fail, it'll crash when Wine's 'Windows Version' is set to 'Vista' but
it's fine as 'XP'. I'm using Wine in Ubuntu 11.04 for testing.
The programs (ImgBurn and demo app) work fine on a real Windows XP, Vista or 7
installation.
--
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=32893
Bug #: 32893
Summary: SNES9x DirectDraw display not refreshed correctly when
menus shown
Product: Wine
Version: 1.5.23
Platform: x86-64
URL: http://files.ipherswipsite.com/snes9x/snes9x-1.53-win3
2.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
Created attachment 43440
--> http://bugs.winehq.org/attachment.cgi?id=43440
Showing refresh problem #1
I'm testing with Wine 1.5.23, SNES9x 1.53, Lubuntu 11.10 x86-64, Nvidia driver
304.64.
There is a small issue with the way the SNES9x DirectDraw display is refreshed.
When you browse the menus, as you move from menu to menu the previous menu area
is cleared to black, instead of showing the emulated game.
There was a change at some point between Wine 1.5.18 and 1.5.23. With 1.5.18
all "old" menus remained onscreen (see
http://bugs.winehq.org/attachment.cgi?id=42660), so the current behaviour is
better but not perfect.
To reproduce
- Download and unzip SNES9x.
- Download a SNES ROM, e.g. from
http://pdroms.de/files/supernintendoentertainmentsystem/skipp-and-friends-p…
- Run SNES9x. Select File->Load Game... and select SAF.smc
- Currently the default Direct3D output gives an empty/black window (bug
32319). So change to DirectDraw output: select Video->Display Configuration...,
change Output Method to DirectDraw and click OK.
- Click on the menu bar to browse the menus. As you move from menu to menu,
notice that the region which was occupied by the previously-shown menu is
black.
--
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=32983
Bug #: 32983
Summary: Artifacts demo crashes on start up
Product: Wine
Version: 1.5.23
Platform: x86
URL: http://illogictree.com/app/artifacts/files/Artifacts.z
ip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 43572
--> http://bugs.winehq.org/attachment.cgi?id=43572
backtrace
Backtrace:
=>0 0xc8ae8ebd (0x00000000)
0xc8ae8ebd: -- no code accessible --
--
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=20054
Summary: Wine should include the Microsoft Sans Serif font
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
The GdipGetGenericFontFamilySansSerif function should return the "Microsoft
Sans Serif" font family, but this font does not exist in Wine. Wine should
include a truetype font with this name so gdiplus can be fixed.
http://source.winehq.org/git/wine.git/?a=blob;f=dlls/gdiplus/tests/font.c;h…
--
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=11273
Summary: Civilization I for Windows (16-bt) does not install
through setup
Product: Wine
Version: 0.9.53.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Civilization I for Windows (16-bt) does not install through setup.
Already existing installation works, though, with some bugs I've reported
separately.
--
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=19607
Summary: FIFA '97 does not start
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johan.palmqvist(a)home.se
Created an attachment (id=22862)
--> (http://bugs.winehq.org/attachment.cgi?id=22862)
FIFA '97 output
FIFA '97 does not start. See attached files for output.
System is a fully updated Kubuntu 9.04 with Wine 1.1.26 (default settings) on a
Dell D610 with Intel 915 graphics.
--
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=15110
Summary: MechCommander crashes in virtual desktop mode when mouse
leaves virtual desktop
Product: Wine
Version: 1.1.3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukas.middendorf(a)freenet.de
Created an attachment (id=15805)
--> (http://bugs.winehq.org/attachment.cgi?id=15805)
debug output from console (I marked the point at which the mouse pointer left
the window)
I'm using wine 1.1.3 (compiled from source for complete debug symbols, but
crash is the same with the package from winehq) on ubuntu 8.04.
When wine runs in virtual desktop mode and the intro video of MechCommander is
over, as soon as the mouse pointer leaves the window, the game freezes and I
get a backtrace on the console. There are no errors or fixmes directly related
to the crash. If I then use ctrl+c in the console, the internal debugger of
MechCommander starts (this also happens if the crash has not happened), but
does not seem to be of any use (missing debug symbols I think), but at least
the program does not die totally.
If I disable direct draw for MechCommander (edit prefs.cfg in game directory
and set "b DirectDraw = F") the game runs in windowed mode itself and I have
not seen the crash happen.
I have seen it happen with MechCommander Gold and also with the free demo of
MechCommander. The only way to get the demo seems to be from
http://downloads.gamezone.com/demos/d8467.htm (unfortunately you need a special
downloader, but it runs with wine), but http://www.mechcommander.org/ offers
some valuable help on how to obtain the full version.
--
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=11265
Summary: A number of bugs with Civilization I
Product: Wine
Version: 0.9.53.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
A Civilization I for Windows (16-bit) displays a number of bugs:
1. Some splash screens display no content.
2. In some dialogues (such as city-dialogue) there are some
tranparent/non-rendered areas
3. Keyboard commands do not work in game.
--
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=32201
Bug #: 32201
Summary: Unclosed quotes in .inf files are tolerated by
windows, not by wine
Product: Wine
Version: 1.5.17
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joel(a)airwebreathe.org.uk
Classification: Unclassified
My company develop a product that contains an ActiveX control. I have been
experimenting with the new ActiveX auto-install feature.
The INF file contains the line:
signature="$CHICAGO$
instead of
signature="$CHICAGO$"
Clearly this is a mistake which we will correct soon. However, windows
tolerates this, wine does not. A message box with the text "Installation of
component failed: 800f0100" is shown.
--
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=27448
Summary: Windows Expert Tool needs mode command
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
http://forums.mydigitallife.info/threads/26240-Windows-Expert-Tool-2.0-Reco…
fixme:shell:SHAutoComplete stub
fixme:exec:SHELL_execute flags ignored: 0x00000180
wine: cannot find L"C:\\windows\\system32\\mode.exe"
File not found
Right click WET and run as administrator
Press Return key to continue:
Looks like the "mode" command is missing. Appears to be a batch command? I
can't find it anywhere.
This program looks like a fun testcase.
--
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=22891
Summary: winamp [5.572] Winamp.exe hangs after exiting winamp
forcing a kill
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jason.whipp(a)gmail.com
Created an attachment (id=28305)
--> (http://bugs.winehq.org/attachment.cgi?id=28305)
Console/Terminal output after exit is selected/close button is clicked
When exiting Winamp via the WinAMP's Menu -> Exit or via the close box, Winamp
hangs in sleeping state and never exits requiring a kill.
Out put of errors after exit is started attached.
--
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=31360
Bug #: 31360
Summary: Bobcad v21 crashes on startup
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Tried installing v21 express trial from http://www.bobcad.com, sha1sum
2e986bc8e48e74d361a100d0f8ea5f7b1d41c38e v21.6.exe
Need 'winetricks mfc42' before install to avoid a DLL registration failure.
On startup, the app crashes. +relay shows it's right after
ole32.OleCreateEmbeddingHelper() returns. Adding warn+heap seems to
show it's using freed memory as a pointer:
...
0045:Ret ole32.OleCreateEmbeddingHelper() retval=00000000 ret=007477df
0045:Call KERNEL32.InterlockedDecrement(02813064) ret=00745900
0045:Ret KERNEL32.InterlockedDecrement() retval=00000005 ret=00745900
trace:seh:raise_exception code=c0000005 flags=0 addr=0x7492f7 ip=007492f7
tid=0045
...
Unhandled exception: page fault on read access to 0xfeeefeee in 32-bit code
(0x007492f7).
Backtrace:
=>0 0x007492f7 in bobcad21 (+0x3492f7) (0x0033f184)
1 0x00743441 in bobcad21 (+0x343440) (0x0033f208)
2 0x7bc63e6a call_entry_point+0x29() in ntdll (0x0033f238)
3 0x7bc64a74 relay_call+0x173(descr=0x7e7dc248, idx=0x5000d, stack=0x33f2ac)
[wine-git/dlls/ntdll/relay.c:466] in ntdll (0x0033f298)
4 0x7e6ff4bd in ole32 (+0xf4bc) (0x0033f2f0)
5 0x0046290c in bobcad21 (+0x6290b) (0x0033f2f0)
--
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=16404
Summary: Ever17 crash in system voices menu
Product: Wine
Version: 1.1.10
Platform: PC
URL: http://www.download.com/Ever17-Out-of-Infinity/3000-
7494_4-10573528.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tyle7(a)hotmail.com
Created an attachment (id=17729)
--> (http://bugs.winehq.org/attachment.cgi?id=17729)
Terminal output from the crash
This is tested on wine from git, with patch
http://bugs.winehq.org/attachment.cgi?id=17707 applied to avoid the crash of
bug 10005 .
This only occurs in the full version of the game, as the system voices menu not
is included in the trial version. I have tested this with the Japanese full
version, not sure if US version affected as well.
Steps to reproduce:
Start the game,
Click on Special -> System Voices
Click on any of the characters on the screen. The game crashes.
--
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=26678
Summary: wine beebem.exe crashes in
RtlEnterCriticalSection+0x17 with page fault on read
access
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agents(a)andrewpetermarlow.co.uk
Created an attachment (id=33975)
--> (http://bugs.winehq.org/attachment.cgi?id=33975)
A dump of all output including register dump, stack dump and backtrace.
beebem is the BBC Micro emulator. When I run it using wine it gives the
following error as it crashes:
wine: Unhandled page fault on read access to 0x00000034 at address 0x7bc33647
(thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x00000034 in 32-bit code
(0x7bc33647).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:7bc33647 ESP:0032fbf4 EBP:0032fc1c EFLAGS:00210206( - 00 - RIP1)
EAX:00000020 EBX:7bc89444 ECX:00436f60 EDX:0000c98a
ESI:00000020 EDI:0000fe00
The full log is in the attachment.
This happened when running on Debian 6 (squeeze) with the 1.0.1 version of wine
installed by the synaptic package manager.
Regards,
Andrew Marlow
--
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=13560
Summary: Baldur's Gate 2 Throne of Bhaal fails to save game
because the file default.tot exists in the game temp
directory.
Product: Wine
Version: 0.9.59.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: christian.apolloni(a)gmail.com
Baldur's Gate 2 with the installed expansion Throne of Bhaal fails to save
games unless the user manually removes the file /temp/default.tot in the game
directory. It's not wine crashing: the game displays an error message with the
following text:
Save game failed, do you wish to quit?
Yes No
Removing the default.tot file before attemping to save makes it work, but the
files gets recreated when the game runs so it has to be removed every time you
want to save, which is pretty annoying.
>From the App DB's comments and a quick google search it seems many others are
having the same problem.
It's a lot of time that I don't use wine but I remember in the past it was
saving correctly whithout the need to manually delete anything.
--
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=32089
Bug #: 32089
Summary: Window resize enters endless cycle
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: techtonik(a)gmail.com
Classification: Unclassified
Console2 application enters the endless cycle when tries to adjust its window
size if it doesn't match one specified in settings. Probably there is an
off-by-one problem in Wine window size reporting functions.
Console2 size is specified in characters. Default size is 25x80, but in Wine it
jumps from 23x80 to 24x78 and back. Sources for Console2 are available.
--
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=23647
Summary: Street Fighter 4 Benchmark: Flickering screen with
parallel rendering enabled
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eg.galano(a)gmail.com
The benchmark runs great as long as you disable parallel rendering.
When parallel rendering is enabled, the screen will flicker between the proper
scene and a black screen.
The benchmark is downloadable from:
http://gamedaily.newaol.com/pub/StreetFighterIV_Benchmark.exe SHA1SUM:
f7754210308b3a0ff2bb3be3a62b22767519ca62
--
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=33487
Bug #: 33487
Summary: Davar bible software not working
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeff.needle(a)gmail.com
Classification: Unclassified
Created attachment 44324
--> http://bugs.winehq.org/attachment.cgi?id=44324
Error received
This is the Davar Bible Software, version 3. The program starts, but then
crashes, generating the code that I've attached.
--
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=32958
Bug #: 32958
Summary: ReVolt 1207: Crashes when trying to play Stunt Arena
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dimitar(a)shadez.info
Classification: Unclassified
Created attachment 43528
--> http://bugs.winehq.org/attachment.cgi?id=43528
The backtrace produced by wine.
Running on an Ubuntu 12.04 64bit, using wine. ReVolt is with patch 1207
applied. The command used to run the game (from within its folder) is:
wine explorer /desktop=1024x768 ./revolt.exe
The game starts up, shows the menu, allows me to select Stunt Arena, allows me
to enter my player's name, choose my car and start the game. It crashes while
loading the level.
--
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=9932
Summary: Listview highlight issues when drag&drop enabled
Product: Wine
Version: unspecified
Platform: All
URL: http://www.stationplaylist.com/LV_Checkboxes.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ross(a)stationplaylist.com
I've written a test program to show several problems with Listviews.
When a Listview has drag & drop enabled, clicking a list item with the mouse
shows the highlight color for only a fraction of a second. The operator cannot
see which list item is selected.
A related problem occurs when clicking a list item checkbox while it is
highlighted. It does not show the tick mark. It appears the checkbox is not
checked but moving the highlight to another list item then shows the checkbox
is checked.
These are only issues when drag & drop is enabled.
These issues are quite serious for anyone wanting to use our radio broadcasting
software on Linux. It's not useable with these problems as the highlighted
track and/or checked track is what will play when the user clicks Play.
--
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=11604
Summary: Adobe Premiere 6 tryout installer / Cleaner 5 EZ crashes
Product: Wine
Version: 0.9.42.
Platform: Other
URL: http://download.adobe.com/pub/adobe/magic/premiere/win/6
.x/pre60to.zip
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This happens both with 0.9.42 and with 0.9.54-190-g6d59ddf
and probably others.
The installer crashes and puts up a dialog "Unhandled Exception".
Backtrace:
2 0x7e18ba8b TLB_abort+0xb() [dlls/oleaut32/typelib.c:1357] in oleaut32
(0x0034def0)
3 0x7e18bb1f MSFT_Read+0x8f(buffer=0x34df68, count=0xc, pcx=?, where=0x880)
[dlls/oleaut32/typelib.c:1455] in oleaut32 (0x0034df30)
4 0x7e193044 MSFT_CustData+0x64(pcx=0x34e208, offset=?, ppCustData=0x11c64c)
[dlls/oleaut32/typelib.c:1700] in oleaut32 (0x0034df80)
5 0x7e193464 ITypeLib2_Constructor_MSFT+0x3b4(pLib=?, dwTLBLength=?)
[dlls/oleaut32/typelib.c:2476] in oleaut32 (0x0034e350)
6 0x7e197269 LoadTypeLibEx+0x799(szFile=?, regkind=0x0, pptLib=0x34e75c)
[dlls/oleaut32/typelib.c:2335] in oleaut32 (0x0034e5b0)
Clicking OK hits the same crash once, but otherwise continues.
Enough of the app is installed to try to start.
The crash happens when the installer is running
c:\\Program Files\\Cleaner 5 EZ\\CleanerEZ5.exe /Regserver
and sure enough, after install is over, running that app with
or without /Regserver reproduces the crash (as well as the
nasty directdraw screen black bug).
I'll attach a log. The key lines seem to be
0027:Call oleaut32.LoadTypeLib(0034f0ec L"C:\\Program Files\\Cleaner 5
EZ\\CleanerEZ5.tlb",0034fdb0) ret=00544f78
...
trace:typelib:MSFT_ReadString L"Cleaner 1.0 Type Library" 25
trace:typelib:MSFT_CustData
trace:typelib:MSFT_Read pos=0x0000075a len=0x0000000c 0x00000000 0x0000085d
0x00000880
err:ole:MSFT_Seek seek beyond end (2176/2141)
0027:Call KERNEL32.DebugBreak() ret=7e97ea8b
0027:Call user32.MessageBoxA(00000000,0034e05c "Unhandled exception:
80000003\nAt address: 7ee20433\n",006f68a8 "Unhandled
Exception",00002000) ret=005f6fbc
And yes, you can reproduce the crash by loading that typelib into
wine's OleView. So I guess I'll attach the .tlb, too.
--
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=12341
Summary: Winambulancia -DB backup crashes
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.softprogres.sk/prog_winamb.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tuharsky(a)misbb.sk
WinAmbulancia (see AppDB) is medical software for variety of specialisations of
medical prax. It uses VFP and VB with MDB backend. The app is in Slovak (SK)
language. Mostly the wine problems are related to the OLE.
The database backup function dosen't work properly. In the app, please go to
"Nástroje > Zálohovania" and You will be asked for location of the backup.
Just confirm the path and press OK. You will be then asked, whether You wish to
run DB Defragmentation first. Say "Nie" (eng:No), otherwise You will crash
because of the bug 12340.
The user faces the backup option automatically even after startup after several
days without backup.
--
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=14543
Summary: Worms World Party crashes on attempting to run
Product: Wine
Version: 1.1.1
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Rincebrain(a)gmail.com
Created an attachment (id=14883)
--> (http://bugs.winehq.org/attachment.cgi?id=14883)
Wine 1.1.1 output log (including BT)
Worms World Party crashed when I attempted to run it - WWP fullscreened and
rendered a black screen atop everything else, then Wine crashed, and sat at a
backtrace until I killed wineserver.
Wine output, including backtrace, attached.
--
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=19514
Summary: installation succeeds, running fails -- "the program X
has encountered a serious problem and needs to close"
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bluedzins(a)wp.pl
I try to run PWN Polish Dictionary (v.3.0) using wine. Using virtualbox
everything fine, but using wine only installation works OK. When executing
installed program I get windows program error:
the program X has encountered a serious problem and needs to close
with wine explanation below (the same dialog).
Exactly the same behaviour I see for another program -- SuperMemo UX. I will
attach logs for both of them.
--
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=19561
Summary: Very large memory leak when doing overlapped reads
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ronfischler(a)gmail.com
Created an attachment (id=22796)
--> (http://bugs.winehq.org/attachment.cgi?id=22796)
Program compiled and ready to run using mingw
WINE is buffering serial ports which is in conflict with using overlapped
reads. Additionally, when using overlapped reads on a serial port, there is a
large memory leak. Every time we receive a block of data on the port, (say 800
bytes in our case,) wineserver allocates many pages on the heap and does not
free them afterwards. We are seeing as many as 21 pages lost to the heap every
time we read a small block of data.
My company is creating a Monitor & Control product that works through serial
ports, and we want it to be able to run on Linux netbooks (using USB to serial
port adapters.) This memory leak is the only thing holding us up. The memory
leak is too large for us to recommend to customers that our application can be
used on Linux platforms using WINE.
We are including an attachment for a small program that captures the leak. The
problem is a result of our call to readfile() in the do-while loop. It is using
the overlappedRead feature. Every time this Win32 function call is made, 84K
bytes disappears forever.
-Ron F.
--
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=27396
Summary: Mshtml, DontExecuteScripts flag is ignored
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Example: http://netikka.net/dev/noscript.exe
Run in Windows -> Ok, script is disabled
Run in Wine -> Fail, script is enabled
Method is used to view & download webcontent, but not allowing scripts to run.
DLCTL_NO_SCRIPTS = $00000080
Works with native mshtml.dll + msls31.dll (from 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=28613
Bug #: 28613
Summary: Hidden Mysteries: Salem Secrets text rendering is
corrupted
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: josh+wine(a)iswifter.net
Classification: Unclassified
Text throughout the game (including the Credits roll) draws with extra pixels.
The pattern is seemingly arbitrary but is consistent across multiple
occurrences of a single character.
--
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=27723
Summary: Listview: no multiline edit on long text
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carlo.bramix(a)libero.it
The edit control created for changing icon text is not multiline and it does
not separate words to different lines if they are longer than expected, see
attached err_wine_2.PNG and err_win_2.PNG images.
The test programme has been compiled in MinGW with the command:
gcc testlv.c -o testlv.exe -O2 -mwindows -s -lcomctl32
This report has been splitted from bug 26450.
--
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=27724
Summary: Listview: wrong text width
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carlo.bramix(a)libero.it
when trying to change the text of the item, the width of the edit control is
always larger than expected with an useless area, see attached err_wine_3.PNG
and err_win_3.PNG images.
The test programme has been compiled in MinGW with the command:
gcc testlv.c -o testlv.exe -O2 -mwindows -s -lcomctl32
This report has been splitted from bug 26450.
--
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=27722
Summary: Lisview: wrong text height
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carlo.bramix(a)libero.it
The active area for icon text is wrongly calculated and it is taller than
expected, see attached err_wine_1.PNG and err_win_1.PNG images.
The test programme has been compiled in MinGW with the command:
gcc testlv.c -o testlv.exe -O2 -mwindows -s -lcomctl32
This report has been splitted from bug 26450.
--
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=30389
Bug #: 30389
Summary: No sound in Poacher
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mrmcspummbucket(a)gmail.com
Classification: Unclassified
Created attachment 39731
--> http://bugs.winehq.org/attachment.cgi?id=39731
Some terminal output
No sound in freeware game "Poacher". Terminal output mentions a lot about dmime
(see attachment). Appears possibly related to:
http://bugs.winehq.org/show_bug.cgi?id=25753http://bugs.winehq.org/show_bug.cgi?id=9027http://bugs.winehq.org/show_bug.cgi?id=23373
But since I'm no expert, it should be someone else's decision to say if its a
duplicate.
Overriding dmime.dll does give the game sound, but also makes it lag like
nothing else, causing it do be unplayable.
--
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=28014
Summary: Invisible mouse cursor in some games
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bero(a)arklinux.org
In some fullscreen games, e.g. this freely downloadable one:
http://files.myplaycity.com/files/hotelmogul_setup.exe
the mouse cursor is invisible with current wine builds.
There is no suspicious output in the terminal wine was run from.
--
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=29001
Bug #: 29001
Summary: FeedDemon cannot show feeds' content
Product: Wine
Version: 1.3.32
Platform: x86
URL: http://www.filehippo.com/download_feed_demon
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lucak3(a)gmail.com
Classification: Unclassified
Created attachment 37325
--> http://bugs.winehq.org/attachment.cgi?id=37325
Console log
As of 1.3.32 & FeedDemon 4.0.0.22, FD doesn't show the contents of a selected
feed.
Importing default feeds during first time wizard is enough to see this issue.
In the mean time, msxml3 spams the console to death with its remarks of not
accepting the syntax of downloaded contents.
I needed to kill it with CTRL+c, since it locked up.
--
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=32867
Bug #: 32867
Summary: Directional Lightmaps/Shader problems in
Chivalry:Medieval Warfare
Product: Wine
Version: 1.5.23
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xpander0(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
some places in the distance seem to have black spots. it seems to be caused by
the shaders or from directional lightmaps.
pictures to describe the problem:
https://dl.dropbox.com/u/28788188/Screenshot-607-1screen.pnghttps://dl.dropbox.com/u/28788188/Screenshot-596-1screen.pnghttps://dl.dropbox.com/u/28788188/Screenshot-598-1screen.png
tested with wine 1.5.19 to wine 1.5.23
let me know if u need some debug output.
terminal doesnt show anything usefull, but i might miss some necessary debug
options
--
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=24495
Summary: Knights of the Old Republic can't keep a video mode.
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeff(a)deserettechnology.com
Created an attachment (id=30908)
--> (http://bugs.winehq.org/attachment.cgi?id=30908)
console output with WINEDEBUG=+d3d
I am trying to run KOTOR from Steam on a late-2009 iMac iMac11,1 with Catalyst
10.9 on ATI Technologies Inc M98L Mobility Radeon HD 4850 (as specified by
lsusb). After installing native d3d9x, KOTOR menu stars and can create a
character and start a game.
While the video loads, the screen flickers and switches modes, a little white
box appears in the corner, goes to a liney-screen and then back to the white
box, alternates every second or so. Sometimes a video will load after this, but
after the video the same thing happens endlessly.
I am mostly running in a virtual desktop because when we run for real X gets
all messed up by the constant mode-switching.
I've attached console output with WINEDEBUG=+d3d.
--
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=22041
Summary: winedevice doesn't realized changed screen resolution
Product: Wine
Version: 1.1.40
Platform: x86
URL: http://www.winehq.org/pipermail/wine-users/2010-March/
069987.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toralf.foerster(a)gmx.de
Created an attachment (id=26823)
--> (http://bugs.winehq.org/attachment.cgi?id=26823)
right part of windows shows Lotus Notes workspace pattern
As described in the mail I'd like to have a feature to "refresh" these settings
without restarting an already started windows application.
I attach 3 screen shots which show the effect.
--
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=30129
Bug #: 30129
Summary: Screen in 3d Studio Max v9 refresh badly
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deveee(a)gmail.com
Classification: Unclassified
Problem is with refresh screen in 3d studio max v9.
When I click on object - on screen I don't see any changes. When I click on
second object - I see this first click, not second. All is with one-click
delay.
Problem is only in wine 1.4-*, versions 1.37 and older works fine.
--
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=30893
Bug #: 30893
Summary: No pressure in gimp 2.8 windows version with evdev
tablet
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wintab32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: viktoria.s(a)freemail.hu
Classification: Unclassified
Created attachment 40482
--> http://bugs.winehq.org/attachment.cgi?id=40482
Output of gimp 2.8 windows version with WINEDEBUG=+wintab32
I got an Genius Mousepen i608X tablet. It works only with the evdev driver. (I
am using xubuntu 64 bit with a patched kernel (which includes the driver of
this tablet on a VM.)) I have got no pressure in gimp 2.8 windows version.
(Gimp 2.8 linux version works perfectly on the same operating system.)
In the attachment log you can see that it reports as a tablet:
trace:wintab32:X11DRV_LoadTabletInfo Device 10: [id 12|name Genius MousePen
i608X|type TABLET|num_classes 2|use 4]
but at the end wine writes:
warn:wintab32:X11DRV_LoadTabletInfo Did not find a valid stylus, unable to
determine system context parameters. Wintab is disabled.
Which is wrong. I attached the output of xinput list --long (xinput.txt), so
you can see clearly which device reports what. (I guess I should add that
attachment separately because the bug can contain only one attachment.)
One thing to note: this device comes with a mouse too. And the kernel gives
identical name to both devices. (That is the reason why you can fin 2 mousepens
in the logs. The one with the id=12 is the pen, because this one is reporting
the pressure, the other one is the mouse.)
In my opinion if you modify the wine source/dlls/winex11.drv/wintab.c according
to this:
in line 622 you write this:
if (! is_tablet_cursor(target->name, device_type) && ! devices[loop].type ==
XInternAtom(data->display, XI_TABLET, False))
in line 641 you write this:
if (is_stylus(target->name, device_type) || devices[loop].type ==
XInternAtom(data->display, XI_TABLET, False))
my tablet will be recognised.
Unfortunately I was not able to test if this is going to work or not, because I
was not able to build wine properly so far.
(Gimp 2.8 windows version was always crashed with the one I have built, but the
tablet was recognised as tablet though.)
You can find a list of tablets which are using the evdev driver here:
http://sourceforge.net/apps/mediawiki/digimend/index.php?title=Tablet_suppo…
If you have any questions please 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=28158
Summary: [integration] winemenubuilder forces lower case when
searching fd.o mime database
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)rodrigosilva.com
When winemenubuilder searches for freedesktop.org xdg mime database, and build
its list native extensions and mime types, it always searches and tries to
match a lower case string. Windows registry might be case-insensitive, but
native mime database is not, and (unfortunately) some extensions (globs) and
mime types do have upper case chars. Some examples:
audio/AMR:*.amr
audio/AMR-WB:*.awb
text/x-c++src:*.C
application/x-compress:*.Z
application/x-blender:*.BLEND
text/x-iMelody:*.ime
text/x-iMelody:*.imy
text/css:*.CSSL
application/x-gnome-saved-search:*.savedSearch
I am just listing "regular" globs that could be directly mapped to windows
extensions (as opposed to things like README*, Makefile, *.tar.Z, etc)
Take Z for an example of the problem:
- Windows app register "HKCR\.z". Winemenubuilder searches for *.z, can't
match, so it creates the native application/x-wine-extension-z mime/glob.
Unfortunate but unavoidable.
- Windows app register "HKCR\.Z" instead. Winemenubuilder *still* searches for
*.z, because it forces lowercase in its search! There is no match, and it
creates the application/x-wine-extension-z. With *.z glob! And that is a bug.
Currently, there is no way to prevent winemenubuilder to create duplicate (and
buggy) mime extensions when native glob and/or extension contains upper (or
mixed) case chars.
My suggestion for fix: to really mimic Registry case-insensitivity behavior,
winemenubuilder should use case-insensitive search. For example, comparing
lower(win ext)=lower(fd.o glob). And if a match is not found, create the native
glob *exactly* as registered by windows app.
--
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=32317
Bug #: 32317
Summary: 3dsmax 9 32bit - Registration window
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keith(a)ukscifi.net
Classification: Unclassified
Created attachment 42657
--> http://bugs.winehq.org/attachment.cgi?id=42657
3dsmax register window bug.
I am unable to register the product from the trial version of 3dsmax9 32bit, I
can enter the serial code but the Request code is boxes are missing, Next
button is frozen and you can't seem to quit out.
I have to force kill the window to continue.
Other tests have lead to the register tool not finding the Internet?
--
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=22714
Summary: specviewperf10 test 3dsmax-04 doesn't show clouds
wrapping around scene properly
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://www.spec.org/gwpg/gpc.static/vp10info.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Several minutes into test 3dsmax-04, in the domed structure test,
it shows the domed structure with clouds on the world cylinder,
but on Wine the clouds don't wrap around the whole world.
--
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=33380
Bug #: 33380
Summary: Autodesk 3ds Max 2009 unable to activate
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
Classification: Unclassified
Created attachment 44172
--> http://bugs.winehq.org/attachment.cgi?id=44172
Console output without a debug enviorment variable set
Trying to activate 3ds max 2009 does not work as nothing you do will allow you
to proceed past the first page. The input activation code box is missing and
trying to get an activation code does not work.
Clicking on the next button seems to do nothing, although the close and back
buttons work.
Sidenote: I did see http://bugs.winehq.org/show_bug.cgi?id=32317 this bug,
however that seems to be an issue with utf conversions and none of the messages
I get are in the attached log file for that bug.
--
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=23714
Summary: Homeworld : Can't change resolution
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Created an attachment (id=29711)
--> (http://bugs.winehq.org/attachment.cgi?id=29711)
log +ddraw
Homeworld crashes when we attempt to change the resolution in the game's
options. This is a long lasting problem, this bug report makes mention of it
but it was not it's focus : http://bugs.winehq.org/show_bug.cgi?id=11986
I have attached a +ddraw log. Let me know if you need more.
Gentoo Linux X64
Wine 1.2
nvidia-drivers 256.35
--
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=13859
Summary: Star Wars Race cursor duplicate
Product: Wine
Version: 1.0-rc4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iugamarian(a)yahoo.com
When entering Star Wars Racer in full screen, all is well except that there are
two mouse cursors on screen that follow the same movement, at different speeds:
-the game drawn cursor, witch is the selector, and is faster
-the classic drawn cursor, witch is slower and disturbs the view
When the race starts the cursors are not an issue, as they dissapear, by game
design.
--
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=32778
Bug #: 32778
Summary: Cannot run windows application when connecting to
unbuntu desktop via RDP
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: meghan(a)islandretreat.co.uk
Classification: Unclassified
I am running an application called YNAB (youneedabudget.com)
This application works perfectly under wine 1.5.
However, when I remote desktop from a windows 7 machine into my ubuntu 12.04
machine the wine application no longer runs and I receive an error :
the programe ynab4.exe has encountered a serious problem and needs to close. We
are sorry for the inconvenience.
The bug details are attached.
I note that other applications do run (notepad.exe 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=32831
Bug #: 32831
Summary: TurboTax 2012 fails with error 42016 when manually
checking for updates (win2k3 mode)
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: dotnet
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: focht(a)gmx.net
Depends on: 32323, 32471, 32758
Classification: Unclassified
Created attachment 43366
--> http://bugs.winehq.org/attachment.cgi?id=43366
terminal output
Prereqs:
winetricks corefonts d3d9=disabled dotnet40
install the app as normal, don't start it after install.
winecfg > win2k3 windows version (bug 32758)
Apply http://source.winehq.org/patches/data/93995
Start the app up. Click the 'Online' menu, then 'Check for updates'. It will
soon fail.
I'll attach the terminal output.
FWIW:
https://ttlc.intuit.com/questions/1459455-error-42016-unexpected-content-re…
--
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=18987
Summary: Prototype: Fails to start
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21871)
--> (http://bugs.winehq.org/attachment.cgi?id=21871)
Wine-1.1.23
I'm using Wine 1.1.23 (compiled from source using gcc version 4.4.0 20090506
(Red Hat 4.4.0-4) ) on Fedora 11 i386.
The problem is that game crashes in the begging. It shows something about
registered trademarks and then probably intro movie should start (i can skip or
get crash) and then game makes first save which is failed because crash occurs.
Additional info:
ORM=fbo (backbuffer also causes crash)
GFX: NVIDIA 9xxx (drivers 185.18.14)
during crash: memory 160.1MB and VirtualMemory 2.7GB
I did "winetricks directx9 xact vcrun2005sp1" because application showed error
about Xaudio2 and msvcp80
--
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=26865
Summary: WinRAR cannot drag-drop extract files
Product: Wine
Version: 1.3.18
Platform: x86-64
URL: http://rarlabs.com/rar/wrar393.exe
OS/Version: Linux
Status: NEW
Keywords: download, integration
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Dragging files FROM Nautilus into WinRAR works fine.
Dragging files TO Nautilus from WinRAR doesn't do anything, it should extract
the relevant files.
Dragging from WinRAR to Winefile has no effect either, but I'm not sure if it
should.
Nothing of relevance in the console.
--
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=25709
Summary: Some apps doesn't recieve focus in Virtual Desktop
Mode
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor-hkr(a)mail.ru
Configure WIne for using Virtual Desktop.
Start(for example) Total Commander(i used 7.55a)
Start (you can use Total Commander for this) regedit(or wordpad or notepad or
winecfg...). TotalCmd loses focus but regedit doesn't recieve it(its caption
still has gray background).
If you'll click on TotalCmd caption or minimize it(and it will recieve focus)
all becames ok(regedit can recieve focus after clicking)
--
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=15932
Summary: Adobe Photoshop 7, CS3 can't load images from URLs
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In
http://www.pclinuxos.com/index.php?option=com_smf&Itemid=26&topic=51000.msg…
a user complained
"I am having a problem with PhotoShop7 in PClinux
in windows I can just past in the URL to open files from our servers exsample:
http://www.site.com/file.jpg
but when trying to do this in PClinux I get the error files can not contain
/:<>|"
I verified this with both Photoshop 7 and CS3.
On CS3, the error occurs with the OS dialog. (There's a button
to select OS or Adobe dialog.)
(And on wine, the Adobe dialog just silently doesn't respond to those URLs,
doesn't even highlight the Open button.)
I haven't verified this on Windows, but two people in that thread
confirmed it, so it's probably real.
--
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=12007
Summary: Photoshop 7.0 Dragging Layers between Images dont work
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas(a)holzeisen.de
This bug was tested on Wine 0.9.57 running under Ubuntu Linux:
When dragging a layer from the layer list into another open image window it
should be duplicated for this image. Dragging and holding the layer over the
target-image results in drawing a black border, therefore the image gets
recognized correctly, but dropping gets ignored.
These errors appears on console when dragging layers:
fixme:win:EnumDisplayDevicesW ((null),0,0x34ced8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x34ced8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x34cee0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x34cee0,0x00000000), stub!
--
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=32707
Bug #: 32707
Summary: Shockwave 11 Installer crash when installing
Product: Wine
Version: 1.5.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fantasticfears(a)gmail.com
Classification: Unclassified
Created attachment 43155
--> http://bugs.winehq.org/attachment.cgi?id=43155
shockwave_installer_full
When installer runs C:\windows\system32\Adobe\Director\SwDnld.exe /regserver,
it 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=13088
Summary: Adobe Acrobat Pro 7 / Acrobat Reader 7 -- Comments don't
work
Product: Wine
Version: 1.0-rc1
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Comments cannot be created, modified, viewed, or saved in Acrobat Pro 7 (Tryout
Version).
this bug differs from bug 11835 in the following way:
in Acrobat Pro 6, you can at least see the comment's text by hovering over the
"sticky note"; here that is not possible.
Bug exists in both Acrobat Pro 7 and Acrobat Reader 7.
--
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=10814
Summary: Photoshop 7 main tool window disappears
Product: Wine
Version: 0.9.51.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In
http://appdb.winehq.org/objectManager.php?sClass=version&iId=1336 ,
Peter Cartright said:
2. Toolbox windows frequently disappear when minimizing main window, they can
be brought back to resetting palette locations.
- Main tool window on the left can disappear and it's not recoverable with the
above method. Definitely a show-stopper.
--
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=19343
Summary: Adobe Photoshop CS2: Edit controls have wrong names
(appinstall)
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.adobe.com/pub/adobe/photoshop/win/cs2/
Photoshop_CS2.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 18934
On windows, the ClassNN's for the Username/company info for Photoshop's
installer are RichEdit20W1/RichEdit20W2. On wine, they're Edit1/Edit2.
May be related to bug 18934, but not an ordering issue, since the names
themselves are wrong. I tried using winetricks riched20, but it didn't help.
--
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=15590
Summary: Photoshop CS3 fails due to Bonjour Service startup error
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gimpel(a)sonnenkinder.org
Created an attachment (id=16593)
--> (http://bugs.winehq.org/attachment.cgi?id=16593)
photoshop cs3 bonjour error
I'm still having problems installing Photoshop CS3. It fails due to the bonjour
service not starting correctly. The shared components seem to install correctly
though.
Wine version is yesterday's GIT (1.1.6+). My system does have mDNSResponder
installed, but not started. Otherwhise there is no support for Zeroconf
protocol available (No avahi, no nss-mdns installed etc)
Attached is the installer output (last few lines)
--
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=30239
Bug #: 30239
Summary: Adobe Photoshop CS6 beta installer "failed to
initialize"
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Downloaded
http://labsdownload.adobe.com/pub/labs/photoshopcs6/photoshopcs6_p1_win_032…
unzipped, ran Set-up.exe
Log shows
...
Exiting Installer with Code: 0
...
trace:text:X11DRV_GetTextExtentExPoint L"I" 1
trace:text:X11DRV_GetTextExtentExPoint L"n" 1
trace:text:X11DRV_GetTextExtentExPoint L"s" 1
trace:text:X11DRV_GetTextExtentExPoint L"t" 1
trace:text:X11DRV_GetTextExtentExPoint L"a" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"e" 1
trace:text:X11DRV_GetTextExtentExPoint L"r" 1
trace:text:X11DRV_GetTextExtentExPoint L" " 1
trace:text:X11DRV_GetTextExtentExPoint L"f" 1
trace:text:X11DRV_GetTextExtentExPoint L"a" 1
trace:text:X11DRV_GetTextExtentExPoint L"i" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"e" 1
trace:text:X11DRV_GetTextExtentExPoint L"d" 1
(+relay shows that message whole,
0028:Call gdi32.GetTextExtentPoint32W(00000438,01fdd2e0 L"Installer failed to
initialize. This could be due to a missing file.",00000001,0033cfc4)
ret=00d2caaa )
The log also shows a fair bit of XML, so I tried "winetricks msxml3",
and it got further.
--
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=15572
Summary: Adobe Photoshop CS3 z-order problems
Product: Wine
Version: 1.1.6
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Photoshop CS3, when run with native gdiplus, looks not so bad.
However, the grey frame just inside the window border
always appears on top. Thus when you choose
"Help / Photoshop Online", a nice Firefox window shows up,
but it's partly obscured by the grey frame.
--
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=18048
Summary: Acrobat Pro 8 Crashes on Stick Note Open
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dave(a)higherform.com
Created an attachment (id=20438)
--> (http://bugs.winehq.org/attachment.cgi?id=20438)
Stdout log of crash due to mouseover sticky note
Multiple potentially related issues:
- Insert Text comments, sticky notes, etc popups do not display text or allow
selecting of contents
- Often, when mousing over the icon for a sticky note, application will
segfault (see stdout log attached)
--
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=29249
Bug #: 29249
Summary: iexplore fails to load ftp.adobe.com
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 37819
--> http://bugs.winehq.org/attachment.cgi?id=37819
Terminal output (builtin iexplore)
Running "wine iexplore ftp.adobe.com" gives only a blank page. Workaround:
winetricks wininet
It doesn't work in IE8, either: it only shows "Internet Explorer cannot display
the webpage" unless I use WINEDLLOVERRIDES=wininet=n.
--
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=22160
Summary: The Sims 3: Sims3Launcher.exe doesn't show web site
when started second time
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=27037)
--> (http://bugs.winehq.org/attachment.cgi?id=27037)
Image showing the problem
Steps to reproduce:
1) install The Sims3
2) start Sims3Launcher.exe
3) Sims3Launcher.exe looks like in upper image in attachment.
2) close Sims3Launcher.exe
5) start Sims3Launcher.exe
6) Sims3Launcher.exe looks like in lower image in attachment.
Behaviour:
Sims3Lanucher.exe looks like in lower image
Expected behaviour:
Sims3Lanucher.exe should look like in upper image
An workaround is to change "FirstRun"=dword:00000000 to
"FirstRun"=dword:00000001
in user.reg under [Software\\Electronic Arts\\Sims 3\\Launcher\\Settings]
before every start of Sims3Launcher.exe
Additional info:
I'm using wine-1.1.41-72-ge9be1b4 on Fedora 12 32 bit.
--
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=18517
Summary: Tablet pen pressure or eraser (wacom tablet) are not
working in Photoshop CS 4
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ergo14(a)gmail.com
Tested with both version of CS:
CS4:
pen pressure is not recognized , nor reversing the pen to use eraser
CS2:
pressure and eraser work and are recognized correctly
--
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=13664
Summary: dogfood: Disabled Buttons are complete gray in Adobe
Reader 3.x (16-Bit)
Product: Wine
Version: 1.0-rc3
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=12388
OS/Version: Linux
Status: NEW
Keywords: download, win16
Severity: enhancement
Priority: P5
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Disabled Buttons in the toolbar should be shaded, but they are gray
--
By by ... Detlef
--
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=30665
Bug #: 30665
Summary: Add support for DeletePrinterDriverEx deletion flags
(DPD_DELETE_*)
Product: Wine
Version: 1.5.4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
encountered this with "Acrobat 7" tryout installer.
The installer executes a custom action "DeleteDistillerPrinter" to remove any
previous remains of "Adobe PDF Converter" driver.
DPD_DELETE_UNUSED_FILES 0x00000001
DPD_DELETE_SPECIFIC_VERSION 0x00000002
DPD_DELETE_ALL_FILES 0x00000004
First try (DPD_DELETE_UNUSED_FILES | DPD_DELETE_ALL_FILES):
--- snip ---
0025:trace:msi:HANDLE_CustomType1 Calling function L"DeleteDistillerPrinter"
from L"C:\\users\\focht\\Temp\\msiba95.tmp"
...
0037:trace:msi:ACTION_CallDllFunction calling L"DeleteDistillerPrinter"
...
0037:Call KERNEL32.LoadLibraryA(004d9d1c "winspool.drv") ret=004d4c0e
0037:Ret KERNEL32.LoadLibraryA() retval=f7460000 ret=004d4c0e
0037:Call KERNEL32.GetProcAddress(f7460000,004d9d04 "DeletePrinterDriverExA")
ret=004d4c2a
0037:Ret KERNEL32.GetProcAddress() retval=f74653e4 ret=004d4c2a
0037:Call winspool.drv.DeletePrinterDriverExA(00000000,00000000,004d9844 "Adobe
PDF Converter",00000005,00000000) ret=004d4c36
0037:Call ntdll.RtlCreateUnicodeStringFromAsciiz(015be704,004d9844 "Adobe PDF
Converter") ret=f74663b7
0037:Ret ntdll.RtlCreateUnicodeStringFromAsciiz() retval=00000001 ret=f74663b7
0037:trace:winspool:DeletePrinterDriverExW (null) (null) L"Adobe PDF Converter"
5 0
0037:fixme:winspool:DeletePrinterDriverExW dwDeleteFlag = 5 - unsupported
...
0037:Ret winspool.drv.DeletePrinterDriverExA() retval=00000000 ret=004d4c36
0037:Call KERNEL32.FreeLibrary(f7460000) ret=004d4c44
0037:Ret KERNEL32.FreeLibrary() retval=00000001 ret=004d4c44
...
--- snip ---
Second try (DPD_DELETE_UNUSED_FILES):
--- snip ---
0037:Call winspool.drv.DeletePrinterDriverExA(00000000,00000000,004d9844 "Adobe
PDF Converter",00000001,00000000) ret=004d4c52
0037:Call ntdll.RtlCreateUnicodeStringFromAsciiz(015be714,004d9844 "Adobe PDF
Converter") ret=f74663b7
0037:Ret ntdll.RtlCreateUnicodeStringFromAsciiz() retval=00000001 ret=f74663b7
0037:trace:winspool:DeletePrinterDriverExW (null) (null) L"Adobe PDF Converter"
1 0
0037:fixme:winspool:DeletePrinterDriverExW dwDeleteFlag = 1 - unsupported
...
0037:Ret winspool.drv.DeletePrinterDriverExA() retval=00000000 ret=004d4c52
--- snip ---
Third try, "fallback" (empty deletion flags):
--- snip ---
0037:Call winspool.drv.DeletePrinterDriverA(00000000,00000000,004d9844 "Adobe
PDF Converter") ret=004d4c65
0037:Call ntdll.RtlCreateUnicodeStringFromAsciiz(015be704,004d9844 "Adobe PDF
Converter") ret=f74663b7
0037:Ret ntdll.RtlCreateUnicodeStringFromAsciiz() retval=00000001 ret=f74663b7
0037:trace:winspool:DeletePrinterDriverExW (null) (null) L"Adobe PDF Converter"
0 0
0037:trace:winspool:WINSPOOL_OpenDriverReg ((null))
0037:trace:winspool:validate_envW testing (null)
...
0037:trace:winspool:validate_envW using 0xf748902c: L"Windows NT x86"
...
0037:Call advapi32.RegCreateKeyW(80000002,00d85ae8
L"System\\CurrentControlSet\\control\\Print\\Environments\\Windows NT
x86\\Drivers\\Version-3",015be634) ret=f746ebca
0037:Ret advapi32.RegCreateKeyW() retval=00000000 ret=f746ebca
0037:Call ntdll.RtlFreeHeap(00110000,00000000,00d85ae8) ret=f746ebf4
0037:Ret ntdll.RtlFreeHeap() retval=00000001 ret=f746ebf4
0037:Call advapi32.RegDeleteTreeW(00000104,00d85ab8 L"Adobe PDF Converter")
ret=f747c98a
0037:Ret advapi32.RegDeleteTreeW() retval=00000002 ret=f747c98a
0037:Call advapi32.RegCloseKey(00000104) ret=f747c9a3
0037:Ret advapi32.RegCloseKey() retval=00000000 ret=f747c9a3
...
0037:Ret winspool.drv.DeletePrinterDriverA() retval=00000000 ret=004d4c65
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd183546%28v=vs.85%…
--- quote ---
dwDeleteFlag [in]
The options for deleting files and versions of the driver. This parameter
can be one or more of the following values.
Value Meaning
DPD_DELETE_SPECIFIC_VERSION
Deletes the version specified in dwVersionFlag. This does not ensure that
the driver will be removed from the list of supported drivers for the server.
DPD_DELETE_UNUSED_FILES
Removes any unused driver files.
DPD_DELETE_ALL_FILES
Deletes the driver only if all its associated files can be removed. The
delete operation fails if any of the driver's files are being used by some
other installed driver.
If DPD_DELETE_SPECIFIC_VERSION is not specified, the function deletes all
versions of the driver if none of them is in use. If neither
DPD_DELETE_UNUSED_FILES nor DPD_DELETE_ALL_FILES is specified, the function
does not delete driver files.
--- quote ---
Source:
http://source.winehq.org/git/wine.git/blob/7508a5d4b2d5246ea9c19afd734274d1…
--- snip ---
6626 BOOL WINAPI DeletePrinterDriverExW( LPWSTR pName, LPWSTR pEnvironment,
6627 LPWSTR pDriverName, DWORD dwDeleteFlag, DWORD dwVersionFlag)
6628 {
6629 HKEY hkey_drivers;
6630 BOOL ret = FALSE;
6631
6632 TRACE("%s %s %s %x %x\n", debugstr_w(pName), debugstr_w(pEnvironment),
6633 debugstr_w(pDriverName), dwDeleteFlag, dwVersionFlag);
6634
6635 if(pName && pName[0])
6636 {
6637 FIXME("pName = %s - unsupported\n", debugstr_w(pName));
6638 SetLastError(ERROR_INVALID_PARAMETER);
6639 return FALSE;
6640 }
6641
6642 if(dwDeleteFlag)
6643 {
6644 FIXME("dwDeleteFlag = %x - unsupported\n", dwDeleteFlag);
6645 SetLastError(ERROR_INVALID_PARAMETER);
6646 return FALSE;
6647 }
...
6662 return ret;
6663 }
--- snip ---
There is a page fault after the last call to
winspool.drv.DeletePrinterDriverA() which might be a separate bug.
--- snip ---
0037:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7bc78e63
ip=7bc78e63 tid=0037
0037:trace:seh:raise_exception info[0]=00000000
0037:trace:seh:raise_exception info[1]=00000000
0037:trace:seh:raise_exception eax=00000000 ebx=7bcbf544 ecx=75e74639
edx=00000000 esi=7ed94da0 edi=00000037
0037:trace:seh:raise_exception ebp=015be478 esp=015be380 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010246
0037:trace:seh:call_stack_handlers calling handler at 0x7bc91c09 code=c0000005
flags=0
0037:trace:seh:__regs_RtlUnwind code=c0000005 flags=2
0037:trace:seh:__regs_RtlUnwind calling handler at 0x7bc76e57 code=c0000005
flags=2
0037:trace:seh:__regs_RtlUnwind handler at 0x7bc76e57 returned 1
0037:trace:seh:raise_exception code=c0000005 flags=0 addr=(nil) ip=00000000
tid=0037
0037:trace:seh:raise_exception info[0]=00000000
0037:trace:seh:raise_exception info[1]=00000000
0037:trace:seh:raise_exception eax=00000000 ebx=7ed46639 ecx=00000000
edx=00000004 esi=7ed94da0 edi=00000037
0037:trace:seh:raise_exception ebp=004d4c65 esp=015be7ec cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010202
...
0037:err:msi:ACTION_CallDllFunction Custom action
(L"C:\\users\\focht\\Temp\\msiba95.tmp":L"DeleteDistillerPrinter") caused a
page fault: c0000005
--- snip ---
$ du -sh AcTR7EFG.exe
116M AcTR7EFG.exe
$ sha1sum AcTR7EFG.exe
4f1ff389ea71f21d624083d65bbe5a74e4760079 AcTR7EFG.exe
Regards
--
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=23345
Summary: Adobe Reader freezes when trying to open embedded
multimedia
Product: Wine
Version: 1.2-rc4
Platform: x86-64
URL: http://www.adobe.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: septim.dt(a)gmail.com
Created an attachment (id=29085)
--> (http://bugs.winehq.org/attachment.cgi?id=29085)
Terminal output with backtrace on wine-1.2-rc4-119-g410f8e9
When I try to play an avi video embedded in a PDF file (made with the LaTeX
multimedia package) Adobe Reader freezes. I also found this problem reported on
the AppDB page, but I couldn't find a bug report. Terminal output with
backtrace attached (using wine wine-1.2-rc4-119-g410f8e9).
--
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=11848
Summary: Adobe Acrobat Pro 7 -- Clipboard Viewer does not work
Product: Wine
Version: 0.9.56.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Selecting Window --> Clipboard Viewer produces a pop up message that says:
Could not launch the clipboard.
--
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=23993
Summary: Batman: Arkham Asylum demo slow frame rate
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://www.batmanarkhamasylum.com/demo
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
One has to jump through the following hoops to run the demo (props to
the appdb howto):
wget cdn2.netops.eidosinteractive.com/batmanarkhamasylum/BMDemo_installer.exe
rm -rf .wine
sh winetricks gecko dotnet20
sh winetricks dotnet30
sh winetricks gfw
wine BMDemo_installer.exe
cd .wine/drive_c/users/$USERNAME/My\ Documents
mkdir -p "Eidos/Batman Arkham Asylum Demo/BmGame/Config"
cd "Eidos/Batman Arkham Asylum Demo/BmGame/Config"
wget www.glio.net/UserEngine.ini
wget www.glio.net/UserInput.ini
wget www.glio.net/UserGame.ini
cd ~/.wine/drive_c/Program\ Files/Eidos/Batman\ Arkham\ Asylum\ Demo/
wine Binaries/ShippingPC-BmGame.exe
The game runs, but slowly (on my e8400, it ran at 10-20fps at the default
settings during the initial combat scene).
http://news.cnet.com/8301-17938_105-10355716-1.html
suggests it can do a lot better.
--
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=23532
Summary: wine needs an xlive.dll implementation
Product: Wine
Version: unspecified
Platform: x86
URL: http://www.microsoft.com/games/en-us/live/Pages/livela
unch.aspx
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Not a huge priority, of course...I'll stub it after 1.2.
Needed for several games, e.g., Fallout 3.
--
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=32738
Bug #: 32738
Summary: Batman: Arkham Asylum Demo fails early with wine-mono
Product: Wine
Version: 1.5.21
Platform: x86
URL: http://store.steampowered.com/app/35140/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: andrey.goosev(a)gmail.com, madewokherd(a)gmail.com
Classification: Unclassified
Noticed while looking at bug 32685. If you install the demo with steam, it just
fails very early with:
Unhandled Exception:
System.NotImplementedException: The requested feature is not implemented.
at System.Management.ManagementObjectSearcher..ctor (System.String
queryString) [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check)
System.Management.ManagementObjectSearcher:.ctor (string)
at BmLauncher.Program.GetProcessOwner (Int32 processId) [0x00000] in
<filename unknown>:0
at BmLauncher.Program.GetPrevInstance () [0x00000] in <filename unknown>:0
at BmLauncher.Program.Main () [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.NotImplementedException: The
requested feature is not implemented.
at System.Management.ManagementObjectSearcher..ctor (System.String
queryString) [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check)
System.Management.ManagementObjectSearcher:.ctor (string)
at BmLauncher.Program.GetProcessOwner (Int32 processId) [0x00000] in
<filename unknown>:0
at BmLauncher.Program.GetPrevInstance () [0x00000] in <filename unknown>:0
at BmLauncher.Program.Main () [0x00000] in <filename unknown>:0
if I install dotnet20 with winetricks, it gets further and fails due to
wmiutils.
--
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=29736
Bug #: 29736
Summary: Fallout 2 crashes at "Please Stand By" screen.
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mister_a(a)aol.com
Classification: Unclassified
Created attachment 38588
--> http://bugs.winehq.org/attachment.cgi?id=38588
FO2 in terminal
Look at attachments if you want to see the backlogs.
--
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=23832
Summary: Mass Effect 2 stutter on initial rotation after
awakening
Product: Wine
Version: 1.2
Platform: x86
URL: http://masseffect.bioware.com/cdn/A/ME2_DEMO/MassEffec
t2DemoEN.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Using the saved game from bug 23684, restart the mission;
when you start waking up, press escape twice to skip the
movies. Now sweep the mouse to rotate yourself to look around.
On Windows, this is very smooth.
On Wine, there is a noticeable amount of stuttering.
The problem stops as soon as you've looked at enough of the room
to have it in cache, or something like that.
--
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=16692
Summary: Morrowind Construction Set Crashes on Saving New Plugin
Product: Wine
Version: 1.1.11
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aestrivex(a)gmail.com
Created an attachment (id=18347)
--> (http://bugs.winehq.org/attachment.cgi?id=18347)
ASCII text file of error output
TES III: Morrowind's Construction Set does not allow the creation of new plugin
files (mods) and causes a crash to desktop upon saving a new plugin file.
Changes to old plugin files suffer no such crashes.
--
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=13460
Summary: ZDoom: distorted graphics rendering
Product: Wine
Version: 1.0-rc2
Platform: PC-x86-64
URL: http://www.zdoom.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aeichhorst(a)gmail.com
Created an attachment (id=13376)
--> (http://bugs.winehq.org/attachment.cgi?id=13376)
Hall of Mirrors effect on textures
When running ZDoom, the graphics rendering produces a "hall of mirrors" effect
on textures. This has no effect on gameplay, but is a big eyesore. Another
graphical problem that occurs is a "pixel coloration-distortion" that imposes
colors from one texture onto another. An example of this is when firing the
BFG9000 in Doom the walls will retain pixels of the BFG's green energy ball
color. This can be seen when pulling up the menu (hitting the Esc key) during
gameplay. The menu's yellowish background-shade produces the effect quite well.
I managed to get a screenshot of the "hall of mirrors" effect and is attached
to this report.
--
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=18391
Summary: Postal 2 - Brightness settings apply themselves to the
Desktop.
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.gopostal.com/freestp.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pvtpuddin(a)gmail.com
I have the Gog.com version of Postal 2, so I don't have the native Linux
version. But when I run Postal 2 in either a virtual desktop, or fullscreen,
the game's brightness settings apply themselves to the rest of the desktop.
The default brightness settings washed everything out. And changing the
brightness in game, you could see the desktop getting brighter or darker.
If you don't have Postal 2, you could test this with the free demo of the
Multiplayer part. You don't have to play the game to see this bug, it'll
happen at the menu.
--
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=30400
Bug #: 30400
Summary: Final Fantasy 7 in the first fight scene
Product: Wine
Version: 1.5.1
Platform: x86
URL: http://download.cnet.com/Final-Fantasy-VII-demo/3000-7
538_4-10020419.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 39739
--> http://bugs.winehq.org/attachment.cgi?id=39739
terminal output
Bug 9220 is fixed, so this is the next crash.
Get the game from
http://download.cnet.com/Final-Fantasy-VII-demo/3000-7538_4-10020419.html
austin@aw21 ~ $ sha1sum ff7demo.zip
79a555cd1874410a93952486e511bb8492e82a56 ff7demo.zip
unzip/run. Bug 9220 would crash it once Cloud swung his sword. This no longer
happens, the fight scene starts, then about 15 seconds later => 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=10506
Summary: wine crypt32 needs DSS provider to support more .NET
apps which use cryptography API
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
while playing around with .NET apps I found various shortcomings when it comes
to native backends for certains parts of .NET
One is the state of cryptographic providers (crypt32).
Many .NET apps use either default RSA or DSS provider.
Currently the DSS and enhanced DSS provider are missing, resulting in failure
of several .NET apps.
Would be nice if wine gets DSS provider too.
Trace log showing failure of typical .NET app trying to query DSS provider:
--- snip ---
trace:crypt:CryptAcquireContextW (0x33d6b8, (null), L"Microsoft Enhanced
Cryptographic Provider v1.0", 1, f0000000)
trace:crypt:RSAENH_CPAcquireContext (phProv=0x1771b8, pszContainer=(null),
dwFlags=f0000000, pVTable=0x1771c8)
trace:crypt:CryptReleaseContext (0x1771a8, 00000000)
trace:crypt:RSAENH_CPReleaseContext (hProv=00000002, dwFlags=00000000)
trace:crypt:CryptAcquireContextW (0x33d72c, (null), L"Microsoft Enhanced
Cryptographic Provider v1.0", 1, f0000000)
trace:crypt:RSAENH_CPAcquireContext (phProv=0x177450, pszContainer=(null),
dwFlags=f0000000, pVTable=0x175f98)
trace:crypt:CryptCreateHash (0x177440, 0x8004, 0x0, 00000000, 0x33d83c)
trace:crypt:RSAENH_CPCreateHash (hProv=00000002, Algid=00008004, hKey=00000000,
dwFlags=00000000, phHash=0x175e04)
trace:crypt:CryptAcquireContextW (0x33d6f4, (null), (null), 13, f0000000)
trace:crypt:CryptAcquireContextW Did not find registry entry of crypto provider
for L"Software\\Microsoft\\Cryptography\\Defaults\\Provider Types\\Type 013".
trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b841300
trace:seh:raise_exception info[0]=80090017
trace:seh:raise_exception eax=7b82c455 ebx=7b8ad1e4 ecx=00000000 edx=0033d348
esi=0033d348 edi=e0434f4d
trace:seh:raise_exception ebp=0033d310 esp=0033d2ac cs=0073 ds=007b es=007b
fs=0033 gs=003b flags=00000212
--- snip ---
resulting in CLR exception:
--- snip ---
Unhandled Exception: System.InvalidOperationException: An error occurred
creating the form. See Exception.InnerException for details. The error is: The
type initializer for 'Sunisoft.IrisSkin.SkinEngine' threw an exception. --->
System.TypeInitializationException: The type initializer for
'Sunisoft.IrisSkin.SkinEngine' threw an exception. --->
System.Security.Cryptography.CryptographicException: Unknown error
"-2146893801".
at
System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32
hr)
at System.Security.Cryptography.Utils._AcquireCSP(CspParameters param,
SafeProvHandle& hProv)
at System.Security.Cryptography.Utils.AcquireProvHandle(CspParameters
parameters)
at System.Security.Cryptography.Utils.get_StaticDssProvHandle()
at
System.Security.Cryptography.DSACryptoServiceProvider.ImportParameters(DSAParameters
parameters)
at System.Security.Cryptography.DSA.FromXmlString(String xmlString)
at Sunisoft.IrisSkin.SkinEngine..cctor()
--- snip ---
Type 001 "RSA Full (Signature and Key Exchange)" and Type 012 "RSA SChannel"
are currently implemented in wine
Additionally needed:
Type 003 "DSS Signature" (base DSS provider)
Type 013 "DSS Signature with Diffie-Hellman Key Exchange" (enhanced DSS
provider)
Type 018 "Diffie-Hellman SChannel" (optional?)
Regards
--
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=19446
Summary: Icy Tower 1.4 installer erroneously creates an
installation log in an invalid directory
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://download.cnet.com/Icy-Tower/3000-2099_4-1007506
0.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
With wine-1.1.26-183-gc6570a5, after installing Icy Tower 1.4, a directory
listing of the Wine drive_c folder shows an unusual directory created in the
root of drive_c:
andrew@ubuntu-desktop:~$ ls ~/icytower/drive_c
C: games Program Files users windows
andrew@ubuntu-desktop:~$ ls ~/icytower/drive_c/C:/windows/temp
INSTALL.LOG
>From relay log:
0019:Call KERNEL32.CreateDirectoryA(0033f354 "C:",00000000) ret=1000c978
0019:Ret KERNEL32.CreateDirectoryA() retval=00000000 ret=1000c978
...
0019:Call KERNEL32.CreateDirectoryA(0033f354 "C:\\C:",00000000) ret=1000c978
0019:Ret KERNEL32.CreateDirectoryA() retval=00000001 ret=1000c978
...
0019:Call KERNEL32.CreateFileA(0033f354
"C:\\C:\\windows\\temp\\INSTALL.LOG",40000000,00000000,00000000,00000002,00000080,00000000)
ret=100140c9
0019:Ret KERNEL32.CreateFileA() retval=00000068 ret=100140c9
The directory creation operation that was logged does not succeed on Windows,
and it should not succeed on Wine.
--
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=26532
Summary: Barnes and Noble Nook eReader sync data to server.
Product: Wine
Version: 1.3.16
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: JNowka(a)gmail.com
Download: http://www.barnesandnoble.com/download/ereader/ereader-windows.asp
Version: 2.5.3.4630
Licence Type: Proprietary
Cost: Free
The Barnes And Noble Nook e-Reader for PC does not upload updates to bookmarks
or annotations to the server.
The errors and fixmes that are returned when it is ran from the command line is
as follows:
fixme:wininet:set_cookie persistent cookies not handled (L"expires=Mon,
21-Mar-2016 23:20:09 GMT; path=/")
err:wininet:HTTP_ParseDateAsAsctime unexpected weekday L"-1"
err:wininet:HTTP_ParseDate unexpected date format L"-1"
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
fixme:wininet:InternetCheckConnectionW
fixme:wininet:InternetSetOptionW Option 7 STUB
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
(180000): STUB
The fixme warnings are repeated consistently until the software is closed.
--
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=29804
Bug #: 29804
Summary: Forever grayed out "agree" button
Product: Wine
Version: 1.3.28
Platform: x86
URL: http://erwin.com/products/detail/ca_erwin_data_modeler
_community_edition/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rambo_8713(a)hotmail.com
Classification: Unclassified
Created attachment 38713
--> http://bugs.winehq.org/attachment.cgi?id=38713
Some times gives invalid arguement -1 when changing riched20 and msls31
I can not agree to the EULA for CA ERWIN MODELER Community Edition, i have used
native riched20.dll and msls31.dll. With and without the dlls and one on and/or
the other dll not overriden. I have the lastest wine version 1.3, fresh install
as of today. When using native msls31.dll, before the EULA screen appears,
after u click next after it computes space requirements, it gives an invalid
argument: -1
I am running ubuntu 11.10, i have tried winetricks as well, to configure the
windows dlls
--
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=30826
Bug #: 30826
Summary: Gigasoft's ProEssentials demo crashes on startup
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
To reproduce,
wget http://www.gigasoft.com/PE7-Pro-Setup.exe
wine PE7-Pro-Setup.exe
cd .wine/drive_c/ProEssentials7/DEMO
wine PEDemo.exe
Click the popup window to make it go away.
Unhandled exception: page fault on read access to 0x5050ff98 in 32-bit code
(0x7ed36a26).
Or, sometimes:
Unhandled exception: page fault on read access to 0x00000048 in 32-bit code
(0x7ed2ea26).
The backtrace seems the same either way:
Backtrace:
=>0 get_log_fontW+0x16(font=0x720041, graphics=0x154780, lf=0x32e92c)
[dlls/gdiplus/font.c:486]
1 get_font_hfont+0x10e(graphics=0x154780, font=0x720041, hfont=0x32eb58)
[dlls/gdiplus/graphics.c:2139]
2 GdipDrawString+0x2c1(graphics=0x154780, string="Bollinger Upper",
length=0xf, font=0x720041, rect=0x32eba8, format=0x149e28, brush=0x154b68)
[dlls/gdiplus/graphics.c:5210]
486 lf->lfHeight = -em_size_to_pixel(font->emSize, font->unit,
font->family->dpi);
Installing corefonts doesn't help.
--
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=32490
Bug #: 32490
Summary: Graphical issues in Inquisitor (red squares painted on
the screen)
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 42861
--> http://bugs.winehq.org/attachment.cgi?id=42861
terminal output
Inquisitor is an RPG released in 2012. I guess it uses DirectX8 (or DX7?)
because only +d3d8 produces output, not +d3d9.
Red squares are present on the screen while in the menus as well as in the main
game. This makes the game unplayable. I tested this bug with a Nvidia gfx card:
both the open source Nouveau and the binary drivers show the same problem.
Wine 1.2.3, 1.4.1, 1.5.19 etc. have the reported problem.
No demo available. Let me know if you need a debug 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=28586
Bug #: 28586
Summary: Team Fortress Arcade and Pixel Force: Left 4 Dead have
no sound
Product: Wine
Version: 1.3.29
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sagman.staredsi(a)gmail.com
Classification: Unclassified
Created attachment 36730
--> http://bugs.winehq.org/attachment.cgi?id=36730
Full Team Fortress Arcade log
Team Fortress Arcade and Pixel Force: Left 4 Dead have no sound due a
unimplemented function of directmusic:
fixme:dmfile:IDirectMusicSegment8Impl_IPersistStream_Load : WAVE form (loading
to be checked)
fixme:dswave:IDirectMusicWaveImpl_IPersistStream_Load (0x5f148e8, 0x5f148b8):
loading not implemented yet (only descriptor is loaded)
This two lines are a message that wine repeat often in the output and inform
this.
--
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=18773
Summary: The Westerner: needs MPEG Layer-3 audio codec
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
The Westerner until now had garbage AppDB rating but no bug entry. Deselecting
any audio driver in winecfg let's wine play the intro and crash after:
err:ole:CoGetClassObject class {38be3000-dbf4-11d0-860e-00a024cfef6d} not
registered
err:ole:CoGetClassObject no class object {38be3000-dbf4-11d0-860e-00a024cfef6d}
could be created for context 0x1
This UUID is the "FriendlyName"="MPEG Layer-3 Decoder" from DirectX9
windows\system32\l3codecx.ax
As Wine has its own winemp3.acm, shouldn't it declare this UUID (e.g. via
tools/wine.inf)? Is this a simple omission? Does winemp3 implement something
entirely different, another win API?
When audio is not disabled in winecfg, wine crashes after repeatedly (~13x)
opening and closing all winmm codecs, including winemp3.acm (it does not manage
to reach the intro).
wine regsvr32 l3codecx.ax
WINEDLLOVERRIDES=quartz=n wine PICTuRE.exe
is what's needed to let the music play, to see the intro, to start gameplay and
to bump the AppDB rating from garbage to bronze. (Likely gold except for
serious mouse lag, which is another issue.) The loop mentioned above is then
avoided, as a driver is found.
The native quartz.dll is needed or it won't find some pin (later than the
intro).
I copied the l3codecx.ax from a separate winetricks DirectX9 install before
noticing that The Westerner's CD-ROM also contains it in DirectX9\DirectX.cab.
Oddly, the application's cover lists only DirectX 8.1 as requirement.
Using The Westerner German Patch v1.3. I guess v1.0 (CD-ROM without patch)
would behave the same (guessing from reports in AppDB).
--
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=20394
Summary: 3DMark 2000, 2001, 2003 - wrong size of loading window
Product: Wine
Version: 1.1.31
Platform: PC
URL: http://www.futuremark.com/download/3dmark03/
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zilforever(a)gmail.com
Created an attachment (id=24186)
--> (http://bugs.winehq.org/attachment.cgi?id=24186)
WINEDEBUG=+ddraw
I think window should have the size of the image which display. But window have
black border on the right and bottom.
I couldnt find such a bug, i hope its not duplicated.
Ubuntu 9.04
Intel(R) Pentium(R) Dual CPU E2220 @ 2.40GHz
CPU flags: 2400MHz MMX SSE SSE2 SSE3 SSSE3 HTT
Linux 32bit GCC 4.3.3 Release May 26 2009
Linux 2.6.28-15-generic i686
GeForce 9600 GT PCI Express 180.44 512Mb
WINEDEBUG=+ddraw wine "C:\Program Files\Futuremark\3DMark03\3Dmark03.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=25495
Summary: Homeworld 2: Shadows and High-Quality Hyperspace
Effect are disabled
Product: Wine
Version: 1.3.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: megatog615(a)gmail.com
Even with the Shadows and High-Quality Hyperspace Effect enabled through the
options menu in Homeworld 2, either effect is not seen in the actual gameplay.
>From some research via Google, it appears both effects use the stencil
capabilities of the graphics driver. I'm assuming the game is failing to detect
the correct capabilities of the graphics card.
--
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=33192
Bug #: 33192
Summary: Characters in Granado Espada not visible
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rndbit(a)nm.ru
Classification: Unclassified
Created attachment 43911
--> http://bugs.winehq.org/attachment.cgi?id=43911
Visual explanation
So game works flawlessly except for models somehow not being attached to
animations.
I uploaded screenshot that illustrates issue.
1. As you can see models of all static actors are pisitioned in center of
loaded level.
2. Spots where NPCs should stand are empty, however 'invisible' npcs are
clickable at spot above their name, just where npc body should be.
3. Player characters also can not be seen. Items carried by characters (and
NPCs) are rendered properly. Gear moves according to animation.
Terminal log:
String Dictionary Loading Start
String Dictionary Loading Success
fixme:win:EnumDisplayDevicesW ((null),0,0x32ef04,0x00000000), stub!
fixme:winediag:AUDDRV_GetAudioEndpoint Winepulse is not officially supported by
the wine project
fixme:winediag:AUDDRV_GetAudioEndpoint For sound related feedback and support,
please visit http://ubuntuforums.org/showthread.php?t=1960599
fixme:d3d9:Direct3DShaderValidatorCreate9 stub
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:imm:ImmGetOpenStatus (0xcf077a8): semi-stub
fixme:imm:ImmReleaseContext (0xa0062, 0xcf077a8): stub
fixme:ras:RasEnumConnectionsW (0x1333e8,0x326af0,0x76c623e4),stub!
fixme:ras:RasEnumConnectionsW RAS support is not implemented! Configure program
to use LAN connection/winsock instead!
fixme:service:EnumServicesStatusW resume handle not supported
fixme:ras:RasEnumEntriesW ((nil),(null),0xcffb108,0x327320,0xcffadf4),stub!
fixme:wmvcore:WMCreateSyncReader ((nil), 0, 0xd17ef28): stub
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:wined3d_buffer_preload Too many declaration changes or converting
dynamic buffer, stopping converting
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:wined3d_buffer_preload Too many declaration changes or converting
dynamic buffer, stopping converting
fixme:win:GetWindowPlacement not supported on other process window 0x20028
<...>
fixme:win:GetWindowPlacement not supported on other process window 0x20028
<...>
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:wmvcore:WMCreateSyncReader ((nil), 0, 0x193d8048): stub
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
<...>
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:win:GetWindowPlacement not supported on other process window 0x20028
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
<...>
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:win:GetWindowPlacement not supported on other process window 0x20028
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
<...>
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:win:GetWindowPlacement not supported on other process window 0x20028
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
<...>
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:win:GetWindowPlacement not supported on other process window 0x20028
<...>
fixme:win:GetWindowPlacement not supported on other process window 0x20028
I replaced multiple same messages with <...> for improved readability.
Forum thread: http://forum.winehq.org/viewtopic.php?f=2&t=18485
--
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=27819
Summary: Die by the Sword: strange audio distortions
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Audio is not playing correctly in Die by the Sword (GoG.com version here). Some
scratching, stuttering sound is coming from the speakers during audio/music
playback. In the tutorial the voice-over of the narrator is also distorted by
the same artefacts.
Player taunts and NPC sounds are OK, though.
The same problem with Wine-1.0.1, too.
I can't reproduce the problem in the demo.
None of the followings helped:
- Alsa with 'emulation'
- winetricks dsoundbug9612
- changing 'defaults.pcm.dmix.rate' to '44100' in /usr/share/alsa/alsa.conf
The resampler patchset (bug #14717) reduced the intensity of the sound
artefacts considerably but they are still audible.
Terminal output is basically the same what I attached in bug #27814. The only
relevant lines are:
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x15b610,0x152668): stub
Fedora 15
Alsa 1.0.24
nVidia Corporation MCP61 High Definition Audio (rev a2)
--
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=9672
Summary: The Sims crashes with page fault on read access
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diablownik(a)gmail.com
The Sims game doesn't run: output returns unhandled page fault on read access.
--
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=24902
Summary: Sky Track: No music
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=31536)
--> (http://bugs.winehq.org/attachment.cgi?id=31536)
Terminal output on Wine-1.3.5
Steps to reproduce:
1) remove ~/.wine
2) install Sky Track (16MB)
3) wine Game.exe
4) create your own profile
Behaviour:
No music is heard.
Expected behaviour:
Music should be heard.
--
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=23779
Summary: Graphviz msiexec installer fails with "Installation
Incomplete: The installer was interupted before
Graphviz could be installed"
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.graphviz.org/pub/graphviz/stable/windows/gr
aphviz-2.26.msi
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: saturn_systems(a)yahoo.com
Graphviz ( wine msiexec /i graphviz-2.26.msi ) fails with:
The install program showing
["Installation Incomplete: The installer was interupted before Graphviz could
be installed. You need to restart the installer to try again. Click "close" to
exit"]
and the terminal showing:
fixme:advapi:LookupAccountNameW (null) L"me" (nil) 0x32f160 (nil) 0x32f164
0x32f158 - stub
fixme:advapi:LookupAccountNameW (null) L"me" 0x157138 0x32f160 0x131df8
0x32f164 0x32f158 - stub
err:msi:ITERATE_Actions Execution halted, action L"SxsInstallCA" returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
--
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=26058
Summary: Thief: Deadly Shadows - Some texture problems & very
many messages 'Texture wrapping not yet supported'
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fcsadcfgbh(a)mail.ru
Created an attachment (id=33227)
--> (http://bugs.winehq.org/attachment.cgi?id=33227)
Look at the tree & at player's figure
* There are very many messages like this 'fixme:d3d:state_wrap
(WINED3DRS_WRAP0) Texture wrapping not yet supported.' in console while playing
Thief: Deadly shadows
* There are problems with textures of trees. Maybe there are also problems with
textures of people - I don't know if they must be so as they are. See attached
screenshot of game
Wine version: git from 10 february 2011
OS: Debian Squeeze
Videocard: Notebook with Nvidia GeForce 8200M with latest drivers
(NVIDIA-Linux-x86_64-260.19.36.run) from www.nvidia.com
--
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=24159
Summary: sigcheck -a outputs garbage in comments for WoW.exe
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://technet.microsoft.com/en-us/sysinternals/bb8974
41.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Created an attachment (id=30403)
--> (http://bugs.winehq.org/attachment.cgi?id=30403)
WINEDEBUG=+ver wine sigcheck wow.exe
Download sigcheck (url) and run it on WoW.exe with wine sigcheck -a wow.exe.
Comments (the last line) is supposed to be empty. Instead, I get "NCompanyName"
(two invisible bytes between N and Company).
--
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=31783
Bug #: 31783
Summary: Add VMs with a virtual smart card reader
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
Bruno Jesus reported that having at least some VMs with a virtual smart card
reader would be useful in getting smartcard support in Wine.
* One way would be through Windows software that provides a virtual smartcard
device. If you know of such software please provide pointers below.
* Another option would be to do it through QEmu/Libvirt's support for smartcard
devices. However this seems to require plugging in a real smartcard reader into
the host... Given that smartcard readers can often plug into a USB port this
may be possible, but again with a rack-mounted server it may not.
* QEmu/Libvirt also supports a 'host-certificate' mode for the smartcard
reader. It's not clear if that negates the need for a real smartcard reader.
--
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=10570
Summary: Thief 2: The Metal Age - fog not working
Product: Wine
Version: 0.9.49.
Platform: Other
URL: http://www.thief-thecircle.com/media/demos/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.hurst(a)shef.ac.uk
In a notoriously foggy level (Life of The Party), the fog doesn't work.
Card is an nvidia GeForce 6200, with latest nvidia-driver.
--
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=29902
Bug #: 29902
Summary: Windows Live Messenger 8.5 does login, error 81000378
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fael_mc(a)msn.com
Classification: Unclassified
Created attachment 38893
--> http://bugs.winehq.org/attachment.cgi?id=38893
Log, try entering the messenger
salutations (google translation)
I installed messenger through .msi package without problems in wine,
I went to winecfg, changed windows version to 2000, when I opened the messenger
if you could not type anything in the field username and password, then
Riched20 installed through winetricks, so I could enter my username and
password when I try to get in, get into normal, but not time to appear the
contacts of the error 81000378
"You cannot use Windows Live Messenger at this time because your contact list
is not available.Please try again later"
I made some test with Wine 1.1.30, and usually logged, but the messenger is
buggy
I want to run it under wine 1.4
thank you
--
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=29942
Bug #: 29942
Summary: Windows Live Messenger 8.5, lock in chat windows
Product: Wine
Version: 1.4-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fael_mc(a)msn.com
Classification: Unclassified
Created attachment 38969
--> http://bugs.winehq.org/attachment.cgi?id=38969
Terminal log
Greetings
I managed to run and log into Windows Live Messenger 8.5 on wine, the bug does
not login, (bug 29902) was solved with a patch disponiblizado by Juan Lang.
Now I have another problem, after logging all normal, see the contacts, can I
change nickname, phrase, image.
I open the chat window to talk, I type normal, but when I send the message, the
program crashes, and gets caught, taking 30% cpu.
to have Windows Live Messenger 8.5 on wine, follow these steps:
Download messenger: http://www.mediafire.com/?tlywu43id00
Normal installation in wine, and install riched20 msxml3 by winetricks, then
set the Wine version for Windows 2000, done that is possible to login.
But to login you must have wine with the patch:
http://www.winehq.org/pipermail/wine-patches/2012-February/111655.htmlhttp://www.winehq.org/pipermail/wine-patches/2012-February/111656.html
applied, but the Windows Live Messenger error 81000378 will
Post here the log of the terminal, since the messenger open, until it freezes
in the chat window
--
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=33008
Bug #: 33008
Summary: UDP listening on specific IP address does not work
properly
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: decimusmaximus(a)seznam.cz
Classification: Unclassified
Wine updated from 1.5.6 to 1.5.24.
My app uses UDP listening on specific address (not 0.0.0.0). It is running on
machine with NAT, there are two interfaces with IP A.A.A.A (public) and IP
B.B.B.B (private) My app is set to listen only on one IP address, IP A.A.A.A
It works properly on Wine 1.5.6. Traffic from subnet B.B.B.B is NATed to
A.A.A.A interface and application running in wine receives it correctly.
After update to 1.5.24 it does not work anymore.
Application does not receive data from private subnet B.B.B.B, however it works
properly for traffic incoming on A.A.A.A interface.
Please see attached schema.
results of "netstat --listening"
with Wine 1.5.6 it is listening on A.A.A.A address correctly.
with Wine 1.5.24 it is listening on 0.0.0.0 (obviously incorrect, socket
binding is set to A.A.A.A address in application and although it is saying
0.0.0.0 app does not receive any data from B.B.B.B network)
This application has to be listening only on one interface and do not mix
public and private addresses. In this case it is not accessible for clients in
private network, so it is critical bug.
Main strange thing is, that it is listening on all addresses 0.0.0.0 although
socket binding in application is set to address A.A.A.A
--
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=22675
Summary: TechSmith Camtasia player fails to open.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mattj10973(a)hotmail.co.uk
Created an attachment (id=27925)
--> (http://bugs.winehq.org/attachment.cgi?id=27925)
The program (MATHSWATCH), it's embedded player, the Tech Smith Camtasia player
(Clip 102 etc.), and the error message.
I recently purchased a revision CD for my GCSE Mathematics course, and it
states the CD is compatible with Windows 98SE/Me/2000/XP/Vista. I try to run it
through Lucid Lynx, but I get an error message. I'm new to Linux and open
source software in general, and have pretty much zilch coding or advanced
knowledge of my new system, so sorry in advance if I've done anything
incorrectly, or failed to understand some of the site's instructions. Error
message attached, thanks :)
--
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=33069
Bug #: 33069
Summary: Visual Basic 6 can't load any component
Product: Wine
Version: 1.5.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: german_ant_82(a)yahoo.com
Classification: Unclassified
Created attachment 43719
--> http://bugs.winehq.org/attachment.cgi?id=43719
Fixme errors list for the components that can't be loaded
Visual Basic comes with a set of preloaded standard components and a set of
loadable extra components. These extra components can't be loaded.
List of components that can't be loaded:
AxBrowser
Cdlg
Microsoft ADO Data Control 6.0 (OLEDB)
Microsoft Calendar Control 8.0
Microsoft Chart Control 6.0 (OLEDB)
Microsoft Comm Control 6.0
Microsoft Common Dialog Control 6.0
Microsoft Data Bound Grid Control 5.0 (SP3)
Microsoft Data Bound List Controls 6.0
Microsoft DataGrid Control 6.0 (OLEDB)
Microsoft DataList Controls 6.0 (OLEDB)
Microsoft DataRepeater Control 6.0 (OLEDB)
Microsoft FlexGrid Control 6.0
Microsoft Hierarchical FlexGrid Control 6.0 (OLEDB)
Microsoft Internet Transfer Control 6.0
Microsoft MAPI Controls 6.0
Microsoft Masked Edit Control 6.0
Microsoft Multimedia Control 6.0
Microsoft PictureClip Control 6.0
Microsoft RemoteData Control 6.0
Microsoft Rich Textbox Control 6.0
Microsoft Script Control 1.0
Microsoft SysInfo Control 6.0
Microsoft Tabbed Dialog Control 6.0
Microsoft Windows Common Controls 5.0 (SP2)
Microsoft Windows Common Controls 6.0
Microsoft Windows Common Controls-2 5.0 (SP2)
Microsoft Windows Common Controls-2 6.0
Microsoft Windows Common Controls-3 6.0
Microsoft Winsock Control 6.0
MSFlexGrid Wizard 6.0
Package and Deployment Wizard
VB6 Application Wizard
VB6 Data Form Wizard 6.0
VB6 MSChart Wizard 6.0
VisModelBrowser
--
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=23064
Summary: Sourceinsight: no response clicking menu, untill
firstly right-click in main window area
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dwwwww(a)hotmail.com
OS: RHEL 4
Wine, 1.2-rc2
Open sourceinsight, click the menus, no response.
But it works after right click in main window area.
--
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=15480
Summary: Saving files in Word/Excel creates useless .lnk files
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew(a)etc.gen.nz
Hi,
In Word and Excel 2003 when we save files then a .lnk file is created in the
same directory as the source file. These files are useless for two reasons:
1) They're in the same directory as the original .doc or .xls files which have
Word and Excel associated with them respectively.
2) On a standard Debian Lenny machine running Gnome the .lnk files aren't
recognised by any apps and won't cause Word or Excel to run.
I've searched around the place to see if we can turn this "feature" off, but
haven't found anything. Is this possible? If not, could this please be added.
--
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=24256
Summary: 3D Sexvilla 2: extremely long loading times
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.3d-sexgames.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mailme667(a)yahoo.co.uk
Loading time makes the game unusable (version 2.093). I just watched the
loading screen for half an hour. But I know it works, because I tried starting
the game, turning the monitor off, having dinner and see the game running when
I came back a long time later.
Clean .wine tested. Other users in appdb have reported the same problem, it's
not just me.
Bug is tested to be present on wine 1.2 and 1.3.1. sysprof makes it clear ntdll
is consuming nearly all the time.
Using wine 1.2 the following is seen repeating over and over with winedebug
during loading:
002e:Call KERNEL32.GetTickCount() ret=7da7655d
002e:Ret KERNEL32.GetTickCount() retval=00032601 ret=7da7655d
002e:Call KERNEL32.GetTickCount() ret=7e7997bb
002e:Ret KERNEL32.GetTickCount() retval=00032601 ret=7e7997bb
002e:Call KERNEL32.GetTickCount() ret=7e7997bb
002e:Ret KERNEL32.GetTickCount() retval=00032607 ret=7e7997bb
002e:Call KERNEL32.GetTickCount() ret=7da76415
002e:Ret KERNEL32.GetTickCount() retval=00032607 ret=7da76415
002e:Call ntdll.RtlAcquireResourceShared(00187fa4,00000001) ret=7da76541
002e:Ret ntdll.RtlAcquireResourceShared() retval=00000001 ret=7da76541
002e:Call ntdll.RtlReleaseResource(00187fa4) ret=7da76555
002e:Ret ntdll.RtlReleaseResource() retval=00000000 ret=7da76555
I got the following from wine-dbg also using 1.2:
Wine-dbg>bt 0x0000002e
Backtrace:
=>0 0xb7705430 (0x04e0e9d8)
1 0x7e78ea4a TIME_MMSysTimeThread+0x329(arg=0x4e0ea34)
[/build/buildd/wine1.2-1.2/dlls/winmm/time.c:218] in winmm (0x04e0ea68)
2 0x7e78ea4a TIME_MMSysTimeThread+0x329(arg=0x7e770000)
[/build/buildd/wine1.2-1.2/dlls/winmm/time.c:218] in winmm (0x04e0ea78)
3 0x7bc6f8f0 call_thread_func+0xb() in ntdll (0x04e0eb48)
4 0x7bc6fac0 call_thread_entry_point+0x6f(entry=0x7e78e720, arg=0x7e770000)
[/build/buildd/wine1.2-1.2/dlls/ntdll/signal_i386.c:2473] in ntdll (0x04e0f398)
5 0x7bc780b5 start_thread+0xf4(info=0x7ff9cfb8)
[/build/buildd/wine1.2-1.2/dlls/ntdll/thread.c:399] in ntdll (0x04e0f498)
6 0xb757780e start_thread+0xbd() in libpthread.so.0 (0x00000000)
I hope I've provided enough information.
--
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=29096
Bug #: 29096
Summary: Phoenix (steam file extractor) z-order of popup is
wrong
Product: Wine
Version: 1.3.32
Platform: x86
URL: http://stat1cv01d.com/load/phoenix_1_5_beta_8/1-1-0-13
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
80056a42f6b0e96426751497a8c322de0cdf0602 Phoenix_15beta8.rar
After
http://source.winehq.org/git/wine.git/commitdiff/2429ef905c46aec91465ac187c…,
the program runs. It pops up a dialog on first run, asking if you want to put a
shortcut on the desktop. The dialog is behind a splash screen, so you have to
alt+move to get to it.
A virtual desktop also works around it.
--
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=29028
Bug #: 29028
Summary: Starcraft crashes on exit
Product: Wine
Version: 1.3.31
Platform: x86
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amasterov(a)gmail.com
Classification: Unclassified
After upgrading wine to 1.3.31 Starcraft crashes on exit.
wine 1.3.30 has not this problem.
After choosing exit in game menu I get black screen in 640x480 resolution (I
switch to nvidia-settings with Alt-Tab and set up correct resolution after
this). In console there are this lines:
fixme:advapi:SetSecurityInfo stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33f3d8,0x00000000), stub!
err:seh:setup_exception_record stack overflow 844 bytes in thread 0024 eip
0041efcc esp 00240fe4 stack 0x240000-0x241000-0x340000
err:ntdll:RtlpWaitForCriticalSection section 0x62385d40 "time.c:
TIME_tz_section" wait timed out in thread 0027, blocked by 0024, retrying (60
sec)
err:seh:raise_exception Unhandled exception code c0000194 flags 0 addr
0x6231354f
I've tried regression testing with git bisect and get this result:
496b438ede825fc00daac7a5869e045ae583cec9 is the first bad commit
commit 496b438ede825fc00daac7a5869e045ae583cec9
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Sep 27 09:31:59 2011 -0500
wined3d: Remove d3d8/9 palette support.
:040000 040000 8b95a8e0e4e7524170ba43bc2ffe369359b9811d
7c427ec5a0816aa5da25718cee9c70e0d3605214 M dlls
:040000 040000 a6ee1c817b1f21634ddad86780fad5cfe9c4fb29
fe57de377c4cf96d0f48c4560d0db321b7b28e91 M include
There was slightly different errors on the screen during testing, but I did
"git bisect bad" on every crash on exit.
With what WINEDEBUG flags should I run wine to provide any additional
information about this issue?
--
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=19017
Summary: DirectX Hardware presenting Problem
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fr.fr(a)vr-web.de
Created an attachment (id=21920)
--> (http://bugs.winehq.org/attachment.cgi?id=21920)
Log output of the Game Balls (in Appdb is a link for a Download)
Device is not Found
It seams DirectX in Wine has a Problem with presenting Hardware devices
--
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=32235
Bug #: 32235
Summary: Soldiers heroes of World War II crashes on startup
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paulthetall(a)gmail.com
Classification: Unclassified
Created attachment 42522
--> http://bugs.winehq.org/attachment.cgi?id=42522
Crash log
Soldiers Heroes of World War 2 crash on startup see crash log. It says a out of
memory notification, so maybe a memory leak or something? I use the GOG.com
version in this test. Hope you guys can ind out what is going on. If you need
andy extra debug extensions let me know so I can provide it. Many thanks in
advance!
--
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=19505
Summary: Cannot run AMIS (Daisy Book Reader)
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jvromans(a)squirrel.nl
Created an attachment (id=22688)
--> (http://bugs.winehq.org/attachment.cgi?id=22688)
Wine log when starting AMIS
When trying to run AMIS, the program aborts almost immediately.
AMIS can be downloaded from http://daisy.org/projects/amis/ .
--
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=18775
Summary: WINE can load DLL with full path second time
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amorozov(a)etersoft.ru
Windows LoadLibrary does not load dll second time if full path is specified.
Attached test print "OK" on WinXP and "FAIL" on WINE.
--
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=14771
Summary: Firefox 3 complains it is not the default browser on
every startup
Product: Wine
Version: 1.1.2
Platform: PC
URL: http://www.mozilla.com/en-US/firefox/all.html
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Everytime I start Firefox 3, it complains it's not the default browser. I hit
Yes when it asks me to set is as the default browser, but on the next start up,
it complains again.
--
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=9404
Summary: cannot select TWAIN source in irfanview
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.irfanview.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
In Irfanview, users should be able to select the TWAIN source via file ->
select TWAIN source. Clicking that menu item should bring up a dialog box to
let users pick which scanner to use. In Wine, no dialog box ever comes up, so
the program uses the first TWAIN source it finds, which is the gphoto2 driver.
--
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=21158
Summary: Hitman: Contracts ignores mouse press events
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.gamershell.com/download_5663.shtml
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
CC: vitaliy(a)kievinfo.com
With wine-1.1.35-180-g20a50f3, after launching Hitman: Contracts, mouse press
events at the main menu are ignored by the game. Since a user reported that the
game worked normally in wine-1.1.9, a regression test was performed, which
indicated:
3743a1a7ca170c765cd779c61b9e362c5b1c5203 is first bad commit
commit 3743a1a7ca170c765cd779c61b9e362c5b1c5203
Author: Vitaliy Margolen <wine-patches(a)kievinfo.com>
Date: Sun Feb 1 13:11:46 2009 -0700
dinput: Consume mouse & keyboard events in exclusive mode.
:040000 040000 6ae6b43b3c100af38ed4f27384470dc4d2595bc1
700b35b9bc8fd27239ee8faaed8ca1c10cfc31d4 M dlls
Wine built prior to the indicated commit allows mouse input to work normally.
Interestingly, doing graphical mode changes (via keyboard input) makes mouse
input work again. The AppDB also suggests adding the strings:
UseDirectInputMouse
UseDirectInputKeyboard
to the HitmanContracts.ini configuration file to have mouse input work. The
only visible output under wine-1.1.35-180-g20a50f3 is:
fixme:dinput:SysMouseAImpl_Acquire Clipping cursor to (0,0)-(1280,1024)
fixme:win:EnumDisplayDevicesW ((null),0,0x32eb58,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x253b060,0x253afa8): stub
fixme:dsound:DllCanUnloadNow (void): stub
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x253b060,0x253afa8): stub
(Z:\code\hitman2\gui\MainMenu.cpp:554)Hitman Contracts build 171 (Apr 26 2004
14:42:27)
fixme:dsound:DllCanUnloadNow (void): stub
--
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=25726
Summary: PDF XChange Viewer corrupt display when scrolling
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: schwejk(a)quantentunnel.de
Created an attachment (id=32773)
--> (http://bugs.winehq.org/attachment.cgi?id=32773)
output when program run out of console
When scrolling a document horizontal lines appear and the document is partially
unreadable. (version 2.5 build 190)
http://www.tracker-software.com/product/pdf-xchange-viewer
--
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=32908
Bug #: 32908
Summary: Resident Evil: Operation Raccoon City doesn't launch
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 43461
--> http://bugs.winehq.org/attachment.cgi?id=43461
without native dx
See attached logs without and with native DirectX.
--
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=14831
Summary: ws2_32: sock.ok fails in Solaris, but not Linux
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Solaris
Status: NEW
Keywords: testcase
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@opensolaris:~/wine-git/dlls/ws2_32/tests$ make testclean ; wineserver -k
; rm -rf ~/.wine ; make sock.ok
rm -f protocol.ok sock.ok
../../../tools/runtest -q -P wine -M ws2_32.dll -T ../../.. -p
ws2_32_test.exe.so sock.c && touch sock.ok
wine: created the configuration directory '/export/home/austin/.wine'
err:iphlpapi:getNumWithOneHeader Unable to open '/proc/net/route' to count
entries!
err:iphlpapi:getRouteTable unimplemented!
Could not load Mozilla. HTML rendering will be disabled.
sock.c:947: Test failed: get/setsockopt(SO_RCVTIMEO) failed error: 10042
sock.c:955: Test failed: get/setsockopt(SO_SNDTIMEO) failed error: 10042
err:iphlpapi:getNumWithOneHeader Unable to open '/proc/net/route' to count
entries!
err:iphlpapi:getRouteTable unimplemented!
sock.c:1258: Test failed: Failed to create socket: 10043
sock.c:1662: Test succeeded inside todo block: select should not return any
socket handles
sock.c:1663: Test succeeded inside todo block: FD should not be set
sock.c:1664: Test succeeded inside todo block: FD should not be set
sock.c:1688: Test failed: closesocket did not wakeup select
sock.c:1765: Test failed: closesocket did not wakeup accept
+winsock attached
--
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=26715
Summary: Win1.0 executable triggers Dosbox
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spammis(a)spam.la
$ wine paint
This seems to be a very old (pre-3.0) Windows executable. Expect crashes,
especially if this is a real-mode binary !
DOSBox version 0.74
Copyright 2002-2010 DOSBox Team, published under GNU GPL.
---
CONFIG:Loading primary settings from config file
/home/user/.wine/dosdevices/c:/users/user/Temp/cfg1bc1.tmp
MIXER:Got different values from SDL: freq 44100, blocksize 512
ALSA:Can't subscribe to MIDI port (65:0) nor (17:0)
MIDI:Opened device:none
$
The executable (paint/PAINT.EXE) is the Windows 1.0 version of Paint. Wine
properly recognises it as a "very old" Windows executable, but after doing
that, Wine thinks that it is a DOS executable and tries to launch Dosbox.
Dosbox gives the usual message: "This program requires Microsoft Windows." The
lines about the old executable come from Wine while the rest of the lines come
from Dosbox.
--
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=32643
Bug #: 32643
Summary: getsockopt() does not indicate WSAEFAULT when setting
optlen too small
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexander255(a)lavabit.com
Classification: Unclassified
Using the attached WSA code will cause an error on Windows but NOT on WINE.
If you change "optlen" value to at least 4, the example the code will run
smoothly on both platforms.
--
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=26822
Summary: Double click the icon in the title bar should close
the window
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florian.angermeier(a)desaster-games.com
In Windows it is the default behavior if double click the icon in the title bar
of a window it closes the window. Would it not be better if this also true in
Wine? Users of Windows software would expect such behavior.
May be this is optional and is only behaving like this if you turn of the
decoration of the windows (Which are Windows applications) through the window
manager. If the decoration through the window manager is turn off the window
have the "Windows window borders".
--
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=28960
Bug #: 28960
Summary: Mount & Blade: WFAS configuration menu panels are
partially hidden
Product: Wine
Version: 1.3.31
Platform: x86
URL: http://www.fileplanet.com/219895/210000/fileinfo/Mount
&Blade-with-Fire-and-Sword-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pavel.ondracka(a)gmail.com
Classification: Unclassified
Regression SHA1: 3b9669017bc8425f04860f331d8a1f689c8d63e0
Created attachment 37237
--> http://bugs.winehq.org/attachment.cgi?id=37237
comparison of good and bad behavior
3b9669017bc8425f04860f331d8a1f689c8d63e0 is the first bad commit
commit 3b9669017bc8425f04860f331d8a1f689c8d63e0
Author: Huw Davies <huw(a)codeweavers.com>
Date: Wed Oct 12 11:55:13 2011 +0100
gdi32: Add the liberation fonts to the default fallback lists.
Screenshot attached, reverting mentioned commit from latest wine fixes this
issue. To reproduce: start game, select trial and click configure when launcher
menu starts.
--
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=27244
Summary: Wiggles: Indeo
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=34827)
--> (http://bugs.winehq.org/attachment.cgi?id=34827)
Terminal output on Wine 1.3.19
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko icodecs
3) install Wiggles
4) patch Wiggles with Wiggles_Patch_1_0_844.exe
4) wine Wiggles.exe
Behaviour:
I get only audio from intro video.
Expected behaviour:
I should get audio and video from intro video.
Additional info:
I can play video in Smplayer. Here I give info about video:
Resolution: 640 x 360
Format: IV32
Bitrate: 4373 kbps
FPS: 24.000
Decoder: ffindeo3
Size: 96,2 MB
--
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=11622
Summary: DejaVu X installation failing at start because of
component not found
Product: Wine
Version: 0.9.55.
Platform: HP
URL: http://www.atril.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yolande(a)haneder.biz
Created an attachment (id=10825)
--> (http://bugs.winehq.org/attachment.cgi?id=10825)
log file
I extracted the .exe file in the temp directory of Wine as instructed and
launched the installation.
The missing file is indeed not in the temp and I can't find it on the internet
because of deprecated from Microsoft.
--
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=29937
Bug #: 29937
Summary: File selection dialog view shows Favorites when you
click elsewhere
Product: Wine
Version: 1.4-rc1
Platform: x86-64
URL: http://www.winuae.net/files/InstallWinUAE2330.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
There is a small issue with file selection dialogs which some programs use.
When the dialog opens, it shows the files in some directory in the right pane,
and a tree view of the directory hierarchy in the left pane. The tree view
shows Favorites and Desktop (which is expanded to show My Computer, My
Documents, Trash, /).
If you then click on any of the + or - symbols in the tree view, the view in
the right pane jumps to Favorites. For example, click the + next to My Computer
and the view on the right changes to Favorites (which may be empty).
The directory shown in the right pane should probably not change when the user
clicks a + or - symbol in the left pane.
WinUAE is one program which uses that type of file dialog. To show the problem,
download and run the WinUAE installer, check the box to run the program at the
end. When the WinUAE Properties window appears, click "Select image file" to
open a file selection dialog.
--
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=29714
Bug #: 29714
Summary: mmdevapi/capture test often fails on debian testing
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: mmdevapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: hoehle(a)users.sourceforge.net
Classification: Unclassified
Regression SHA1: f24b31fcf2047e8b4d0d8b910c54c0815c54d1cf
Created attachment 38565
--> http://bugs.winehq.org/attachment.cgi?id=38565
+tid,+mmdevapi,+winmm,+driver,+midi,+dsound,+dmusic,+mci,+oss,+alsa,+coreaudio
trace
austin@debian-buildbot:~/wine-git$ git bisect bad
f24b31fcf2047e8b4d0d8b910c54c0815c54d1cf is the first bad commit
commit f24b31fcf2047e8b4d0d8b910c54c0815c54d1cf
Author: J��rg H��hle <hoehle(a)users.sourceforge.net>
Date: Thu Jan 12 22:36:31 2012 +0100
mmdevapi/tests: Perform capture protocol tests in shared mode.
:040000 040000 8251887bab3583e1327626d8e7492e61fa5e0285
255d9de316fae3fc6fc5b26a87b771593858e8c6 M dlls
+tid,+mmdevapi,+winmm,+driver,+midi,+dsound,+dmusic,+mci,+oss,+alsa,+coreaudio
trace attached.
--
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=12209
Summary: Microsoft FileFormatConverter.exe installs but does not
work
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dimesio(a)earthlink.net
Created an attachment (id=11631)
--> (http://bugs.winehq.org/attachment.cgi?id=11631)
console output when trying to open a docx file in Word 2003
Microsoft's FileFormatConverter.exe gives Office 2003 the ability to open
Office 2007 files. I tried installing it to my working Office 2003 wine
installation. The installer ran fine, ending with a message that installation
was complete. However, when I tried to open a docx file in Word 2003, it
aborted with the message "There was an error opening the file." I've attached
the console output. Getting this program to work would be very useful to those
of us who have to deal with documents from people using Office 2007.
--
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=20843
Summary: Virtual colour depth & full screen resolution?
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezekiel000(a)lavabit.com
Would it be technically possible to implement a virtual desktop that allows you
to set the colour depth and resolution, but then wine will stretch the virtual
desktop to full-screen or to a custom resolution?
What would happen if you fooled a game that needed 256 colour depth into
thinking that's what it is running in while it is actually running at 24bit?
I ask this as I am unable to change my colour depth and reduce my resolution
below 640x480. And even when I could change my colour depth it meant restarting
the X-server. I assume other people will also have 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.
http://bugs.winehq.org/show_bug.cgi?id=13470
Summary: Warhammer : Battle March (Loading)
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dl.zerocool(a)gmail.com
Created an attachment (id=13387)
--> (http://bugs.winehq.org/attachment.cgi?id=13387)
Console logs
Actually, warhammer is playable at decent speed.
The troubleshooting is starting the game, or charging a map (mission, campaign,
etc.)
It requires arround 10min to have the first game menu...
And it requires other 10minutes if you want to play.
The game is unplayble since it requires 20minutes to start gaming.
But the game itself even with highest options work very well.
The problem is the same with older wine versions.
And apparently the Warhammer mark of chaos (whitout battle march addon
installed)
Have the same loading 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=31517
Bug #: 31517
Summary: Gomez Peer blanks screen and does not redraw correctly
Product: Wine
Version: 1.5.10
Platform: x86-64
URL: http://lastmile.gomez.com/PEERInstall.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 41452
--> http://bugs.winehq.org/attachment.cgi?id=41452
Wine 1.5.10 console output
+++ This bug was initially created as a clone of Bug #13879 +++
When Gomez Peer is started or opened, the screen goes black and does not
refresh automatically.
+++
Yes, I have cloned this because it is exactly the same problem!
Ubuntu 12.04 AMD64 with Unity 2D and fglrx 8.96 (AFAICT)
--
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=26550
Summary: Top shows unnamed process when running GomezPEER
Product: Wine
Version: 1.3.16
Platform: x86-64
URL: http://lastmile.gomez.com/PEERInstall.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
When GomezPEER is running it launches java.exe (Windows version of command-line
Java), but Top shows a running process with no name.
gnome-system-monitor shows "." and the command line as the environment
variables only.
GomezPEER.exe itself appears on the list fine, as does the Wine .exes, but
java.exe seems to be affected in this way.
This could very easily be mistaken as a virus (which I thought when I initially
ran it way back).
Console output:
fixme:win:EnumDisplayDevicesW ((null),0,0x73a83c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x73a83c,0x00000000), stub!
fixme:ddraw:DirectDrawEnumerateExA flags 0x00000001 not handled
fixme:win:EnumDisplayDevicesW ((null),0,0x74b69c,0x00000000), stub!
fixme:font:WineEngCreateFontInstance Untranslated charset 255
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
--
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=26549
Summary: GomezPEER fails to set processor priority
Product: Wine
Version: 1.3.16
Platform: x86-64
URL: http://lastmile.gomez.com/PEERInstall.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
GomezPEER sets its background process (an instance of java.exe) to the lowest
(idle) priority in Windows. It fails to do so under Linux. Does Wine lack the
ability to set process priorities, perhaps?
Apologies if a similar bug is already open but I could not find one.
On newer systems this is not a problem, but on older system the PEER can
consume 100% CPU while processing. The app is designed so that performance of
the PC is not affected, which of course it isn't under Windows (save the usual
Windows-related problems) but it is under Wine.
I'm not sure if I/O priority is also set.
The following does not work as a workaround:
$nice -n19 wine ~/blah/GomezPEER.exe
because this then sets all the Wine components to -n19 and can badly affect the
performance of other apps running under Wine.
Instead, the workaround I use is:
$wineserver -p15
$nice -n19 wine ~/blah/GomezPEER.exe
This way the wineserver remains at normal priority. winedevice.exe in this
case still receives -n19 priority, however.
Console log:
fixme:win:EnumDisplayDevicesW ((null),0,0x73a83c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x73a83c,0x00000000), stub!
fixme:ddraw:DirectDrawEnumerateExA flags 0x00000001 not handled
fixme:win:EnumDisplayDevicesW ((null),0,0x74b69c,0x00000000), stub!
fixme:font:WineEngCreateFontInstance Untranslated charset 255
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
--
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=31927
Bug #: 31927
Summary: ws2_32: sock.c fails intermittently - 'Test succeeded
inside todo block: GetQueuedCompletionStatus returned
0'
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, testcase
Severity: minor
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Running in a loop for about 15 minutes, I got:
sock.c:5385: Test succeeded inside todo block: GetQueuedCompletionStatus
returned 0
sock.c:5386: Test succeeded inside todo block: Last error was 64
make: *** [sock.ok] Error 2
--
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=12159
Summary: Alt-click moves the windows instead of giving access to
alternate functionalities in Photoshop Cs2
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mariejoaile(a)gmail.com
Steps to reproduce:
1- Open Photoshop
2- Create a new document or open one
3- Pick a selection tool or clone or any of the tool making use of an alternate
function using alt
4- Try to use this alt-click option and instead of for instance for the select
tool, deselecting, it will move the window.
This action is very important because there is no other way to use certain of
Photoshop's tool, making tools like clone and healing useless.
--
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=15555
Summary: Implement Windows calculator (calc.exe)
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This was discussed recently, and both
a patch that just invokes gcalc and
a patch that actually implements a calc
were mentioned here:
http://www.winehq.org/pipermail/wine-patches/2008-June/056311.html
This affects the app SteuerSparErklaerung; see user report at
http://www.tuxlog.de/keinwindowsmehr/2008/steuererklarung-unter-gentoo-linu…
Not a critical error, but it does cause an annoying dialog box
to pop up when installing that app.
--
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.