http://bugs.winehq.org/show_bug.cgi?id=14318
Summary: Michisoft Reader Studio v1.5a fails to produce LIT file
from HTML
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: truxxon(a)gmail.com
I tried to use the Michisoft Reader Studio v1.5a, available at
http://www.michisoft.com/programs/readerstudio/rsdownload.htm , and verified
that under wine it does not finish the conversion of HTML to LIT.
Instead, it shows the following message in a dialog error box log:
"
LITGen warning (1101): DTD(Ver 1.0): Unrecognized metadata tag <Title>.
LITGen warning (1203): DTD(Ver 1.0): The <dc-metadata> tag cannot have a
<Unknown> tag in it.
LITGen warning (1205): DTD(Ver 1.0): The <dc-metadata> tag cannot have text
'mytitle' as child in its content model.
LITGen warning (1205): DTD(Ver 1.0): The <Unknown> tag cannot have text
'mytitle' as child in its content model.
LITGen warning (1101): DTD(Ver 1.0): Unrecognized metadata tag <Creator>.
LITGen warning (1203): DTD(Ver 1.0): The <dc-metadata> tag cannot have a
<Unknown> tag in it.
LITGen warning (1101): DTD(Ver 1.0): Unrecognized metadata tag <Identifier>.
LITGen warning (1203): DTD(Ver 1.0): The <dc-metadata> tag cannot have a
<Unknown> tag in it.
LITGen warning (1205): DTD(Ver 1.0): The <dc-metadata> tag cannot have text
'7055.475' as child in its content model.
LITGen warning (1205): DTD(Ver 1.0): The <Unknown> tag cannot have text
'7055.475' as child in its content model.
LITGen warning (1101): DTD(Ver 1.0): Unrecognized metadata tag <Language>.
LITGen warning (1203): DTD(Ver 1.0): The <dc-metadata> tag cannot have a
<Unknown> tag in it.
LITGen warning (1205): DTD(Ver 1.0): The <dc-metadata> tag cannot have text
'en' as child in its content model.
LITGen warning (1205): DTD(Ver 1.0): The <Unknown> tag cannot have text 'en' as
child in its content model.
LITGen error (1207): DTD(Ver 1.0): Unique identifier not found. There should
be a 'unique-identifier' attribute on the <package> tag and at least one
<dc:Identifier> tag whose ID matches that attribute.
Error 0x%x processing package file %S.
"
and the corresponding wine stderr is:
"
fixme:ole:OLEPictureImpl_Render Not quite correct implementation of rendering
icons...
fixme:msxml:bsc_QueryInterface interface {6d5140c1-7436-11ce-8034-00aa006009fa}
not implemented
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
fixme:msxml:bsc_QueryInterface interface {79eac9e4-baf9-11ce-8c82-00aa004ba90b}
not implemented
Error 0x80004005 processing package file
Z:\home\xxxx\local\bin\litgen-wine\temp\temp.opf.
Terminating for error 0x80004005.
fixme:ole:OLEPictureImpl_Render Not quite correct implementation of rendering
icons...
fixme:ole:OleLoadPictureEx
(0xa7535c,774,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32e4dc),
partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0
palette.
fixme:ole:OleLoadPictureEx
(0xa7535c,3318,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32e4dc),
partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0
palette.
fixme:ole:OleLoadPictureEx
(0xa7535c,1086,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32e4dc),
partially implemented.
fixme:ole:OLEPictureImpl_get_hPal unimplemented for type 3. Returning 0
palette.
fixme:ole:OLEPictureImpl_SaveAsFile (0x11c1c8)->(0x11c298, 0, (nil)), hacked
stub.
fixme:ole:OLEPictureImpl_Render Not quite correct implementation of rendering
icons...
"
The problem seems to come down to wine not implementing yet these two MSXML
interfaces, and therefore being unable to support the microsoft litgen dll:
fixme:msxml:bsc_QueryInterface interface {6d5140c1-7436-11ce-8034-00aa006009fa}
not implemented
fixme:msxml:bsc_QueryInterface interface {79eac9e4-baf9-11ce-8c82-00aa004ba90b}
not implemented
--
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=31772
Bug #: 31772
Summary: NtQuerySystemInformation doesn't fill ReturnLength
properly with SystemProcessInformation
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam.kotarou.dono(a)gmail.com
Classification: Unclassified
Created attachment 41804
--> http://bugs.winehq.org/attachment.cgi?id=41804
Test program for calling NtTerminateProcess with it's handle as 0
While I was writing a test program for calling NtTerminateProcess with 0 as
it's handle, I found out NtQuerySystemInformation doesn't correctly fill
ReturnLength when called with SystemProcessInformation.
Code
---
SIZE_T spiSize;
NtQuerySystemInformation(SystemProcessInformation, NULL, 0, (ULONG*)&spiSize);
Expected result
---
spiSize contains the size of the needed buffer to completely contain all the
SYSTEM_PROCESS_INFORMATION and SYSTEM_THREAD_INFORMATION structures of the
processes and threads of the system.
Actual result
---
spiSize contains 0
On a side note, after hacking my code by pre-setting spiSize to an amount and
commenting out the first NtQuerySystemInformation call, the behaviour of
NtTerminateProcess is not what I expected: It should return STATUS_SUCCESS and
kill all threads except for the calling one, but it returns
STATUS_INVALID_HANDLE instead.
--
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=21103
Summary: Presentation 14.2 (Neurobehavioral Systems): crashes
when displaying video output
Product: Wine
Version: 1.0.1
Platform: x86
URL: http://www.neurobs.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marc.o.tettamanti(a)tiscali.it
Created an attachment (id=25328)
--> (http://bugs.winehq.org/attachment.cgi?id=25328)
Bug report
Core package installs and opens. Code activation works. Editor works without
problems. Audio test under Settings Tab works fine.
Video test under Settings Tab does not work: as a consequence, running of demo
and experiments does not work.
The crash occurs when I hit the Test button under Settings: Video, or when I
try to run any scenario from the editor (see the attached console error).
After crashing, the program hangs with the error message: 'Floating point
division by zero'
My Linux distro:
$ uname -a
Linux bll4 2.6.30-2-686 #1 SMP Fri Dec 4 00:53:20 UTC 2009 i686 GNU/Linux
My lspci:
see attachment
Thanks,
Marco
--
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=13314
Summary: Winevdm displays parasitic window
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Created an attachment (id=13186)
--> (http://bugs.winehq.org/attachment.cgi?id=13186)
A screenshot to illustrate the bug.
When running Civilization I for Windows there appears a parasitic black window
with "winevdm" caption. If to close this window, the game exits. In earlier
versions of Wine (0.9.61) the window did not appear.
The attached screenshot shows the 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=11224
Summary: Throw In (Blitz Basic game) has a memory access
violation
Product: Wine
Version: 0.9.53.
Platform: PC
URL: http://freeforumzone.leonardo.it/cartella.aspx?c=3694&f=
3694&idc=34040
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trevi55(a)gmail.com
Created an attachment (id=10306)
--> (http://bugs.winehq.org/attachment.cgi?id=10306)
Throw In launch error screenshot
I'd like to play to this old-school soccer game but it doesn't run in Wine...
I mean, after creating a new wine folder to use I have to set Direct3D ->
DirectDrawRenderer to OpenGL (if I don't do so, wine stops immediately saying
me that I've to change the DirectDraw render mode)...
After this modification, I can launch the Throw In exe file and for few seconds
I get the game (loading) splash in my screen while the music is playing, then
an «Error» pop-up message appears with the «Memory Access Violation» error
(as you can see in the attached screenshot)...
The music continues to play until I press the «Ok» button, then all crashes!
The only messages I've in my terminal are:
fixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 32 vertex
samplers and 32 total samplers
fixme:d3d:IWineD3DImpl_FillGLCaps Expected vertex samplers + MAX_TEXTURES(=8) >
combined_samplers
fixme:win:EnumDisplayDevicesW ((null),0,0x34f840,0x00000000), stub!
I've tried to enable also a more accurate debugging output, but I don't see
relevant messages... Anyway I could attach it, if you need!
You can download this game (version 0.85) at http://tinyurl.com/37lhzh (0.86
update at http://tinyurl.com/36cjdu)
Just one note... If I try the version 0.8 (http://tinyurl.com/3ymj42) the
application behavior is different: when launching the exe the game menu loads
and I can navigate it until I select to play... Then the game crashes giving
the same output I've already described.
I'd have to say also that another game I can find in the same site (Total
Control Soccer), always written in the same language give me this error :(
--
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=23945
Summary: Textures are not properly rendered in game
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukp12(a)gmail.com
In menu and in game console spams:
"fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wrapping not yet supported".
The game runs very slow, unplayable.
I've also noticed short moments, when everything is upside-down - just when
moving the mouse.
It makes the game 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=29897
Bug #: 29897
Summary: Lord Of the Rings Online Slow/Freezes
Product: Wine
Version: 1.4-rc3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marek.zachara(a)telperion.pl
Classification: Unclassified
This looks like a regression to me - I have been playing LOTRO under wine 1.2.3
for some time now. It ocassionaly freezes for a few seconds (every few
minutes), and hangs once in a while, but apart from that its playable. I
decided to try the new 1.4 release of Wine and had no luck with it. LOTRO
starts, but after I log in a character, the game is incredibly slow - like 1
frame displayed per 5 seconds (clearly unplayable). I have tried 1.4 rc2 and
1.4 rc3 with same results. Then i reverted back to 1.2.3 and the game works OK.
I havent tried the 1.3 branch.
--
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=26646
Summary: Worms Reloaded: sound choppy without hardware sound =
emulation
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Worms Reloaded has no sound at all unless I do 'winetricks xact',
and the sound is awful and choppy unless I also do 'winetricks
dsoundhw=Emulation'.
--
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=25605
Summary: The Settlers 3: Save as bitmap crashes world editor
Product: Wine
Version: 1.3.9
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
Steps to reproduce:
1) remove ~/.wine
2) install The Settlers 3 Gold
3) wine S3Editor.exe
4) File->Save as bitmap
Behaviour:
Silent exit.
Expected behaviour:
No silent exit.
Terminal output:
fixme:commdlg:GetFileName95 Flags 0x00008000 not yet implemented
X Error of failed request: BadAlloc (insufficient resources for operation)
Major opcode of failed request: 53 (X_CreatePixmap)
Serial number of failed request: 46724
Current serial number in output stream: 46745
--
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=16784
Summary: Babylon 7: Trail mode expires after installation
Product: Wine
Version: unspecified
Platform: PC-x86-64
URL: http://www.babylon.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mail2benny(a)gmail.com
Babylon 7 trail mode expires after installation,
native msxml3 4 or 6 do not seem to do the trick.
See bug 16614 for more 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=20771
Summary: the menu bar doesn't work in M. Flight Simulator 98
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jerome.bouat(a)wanadoo.fr
Either in window mode or in full screen I can't select a menu entry. The menu
bar is shown but the menus don't pop up.
This is a regression between 1.1.31 and 1.1.33.
--
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=23504
Summary: Font rendering wrong in Samo-Touragent application
starting with 1.2rc2
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: savelov(a)gmail.com
Created an attachment (id=29340)
--> (http://bugs.winehq.org/attachment.cgi?id=29340)
screenshot from 1.2rc1
Before 1.2rc2 font rendering for dates and numbers in the attached screenshot
was correct, but after 1.2rc2 , including 1.2rc6 font rendering is wrong
Tests were performed with clean ~/.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=23687
Summary: err:seh:setup_exception_record stack overflow when
start Proteus7 Ares
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: alllg(a)yandex.ru
Start the application from the package Ares.exe Proteus 7.7
WINEPREFIX=~/.wine_proteus wine '~/.wine_proteus/drive_c/Program
Files/Labcenter Electronics/Proteus 7/BIN/Ares.exe'
I eceive an error message.
err:seh:setup_exception_record stack overflow 1672 bytes in thread 0009 eip
7ef870bf esp 00610ca8 stack 0x610000-0x611000-0x810000
When used version wine-1.1.40 error did not appear
--
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=27658
Summary: 3dvia plugin installer crashes
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://forum.winehq.org/viewtopic.php?t=12599 said the
3dvia plugin was needed to view
http://www.nickjr.com/kids-games/backyardigans-racing-adventure.html
so I tried it. That page links to the installer with the url
http://3dlifeplayer.dl.3dvia.com/player/install/3DVIA_player_installer.exe
Installing that dies with
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
Backtrace:
=>0 msi_load_media_info+0x2c8(package=0x145a60, Sequence=0x1, mi=0x17cc40)
[include/winbase.h:2284] in msi
1 ACTION_InstallFiles+0x255(package=0x145a60) [dlls/msi/files.c:329]
...
0x68115fe8 msi_load_media_info+0x2c8
[/home/dank/wine-git/dlls/msi/../../include/winbase.h:2284] in msi: movzwl
0x0(%edi,%eax,1),%ecx
2284 while ((*p++ = *src++));
--
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=28495
Summary: Runes of Magic mouse-bug
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ventrill(a)gmail.com
Time for time mouse cursor freezes.
Аppears around the black spot ( look in attachment).
At this time appear in the console:
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
err:d3d_surface:surface_load Not supported on scratch surfaces.
First meet of bug - wine 1.3.21.
--
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=33559
Bug #: 33559
Summary: Guild Wars 2: Randomly buttons are pressed
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Since this version I'm noticing unexpected input behaviors. If I'm looking
around (holding the right mouse button) the right mouse key is automatically
randomly released (~every few minutes). Also rarely ingame menus are opening
without pressing the related key.
--
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=18548
Summary: catlitter crashes winedevice
Product: Wine
Version: 1.1.21
Platform: All
URL: http://psxemulator.gazaxian.com/catlitter.rar
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mizvekov(a)gmail.com
catlitter is a program that controls playstation 1 'caetla' acessory.
It uses WinRing0 to access parallel port from any windows version.
WinRing0 can be downloaded from here: http://openlibsys.org/
The source for catlitter can be downloaded from:
http://psxemulator.gazaxian.com/catlitter_src.rar
When it's executed, winedevice crashes because WRITE_PORT_UCHAR is not
implemented in hal.dll
This api would be very simple to implement at least for parallel port, because
everything that is needed for it is already done in winedos.
--
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=25068
Summary: Not able to initiate cognitrainer
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: satyap_b2001(a)rediffmail.com
Created an attachment (id=31788)
--> (http://bugs.winehq.org/attachment.cgi?id=31788)
error logs
Got the error logs while starting cognitrainer apllication .Was working fine
with wine 1.2.1 version although there were some display problems (Strip was
not visible sometimes)
--
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=25017
Summary: Battlefield 2142 is unable to start on FreeBSD.
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 6yearold(a)gmail.com
Created an attachment (id=31706)
--> (http://bugs.winehq.org/attachment.cgi?id=31706)
backtrace when running from home dir
I'm using FreeBSD 8-STABLE with wine 1.3.6 from here:
http://people.freebsd.org/~ivoras/wine/
My system architecure is amd64 and video driver is nvidia 256.53. Using this
script (http://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh) i have
installed 32-bit version of the same driver.
Battlefield itself installed fine, however when i run
wine .wine/dosdevices/c:/Program\ Files/EA\ GAMES/Battlefield\ 2142/BF2142.exe
i'm getting
--
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=21838
Summary: Geheimakte 2: Freezes at start
Product: Wine
Version: 1.1.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
CC: stefan(a)codeweavers.com
[forked off bug #19913]
With i915 Intel graphics on Ubuntu Intrepid, past wine-1.1.24
commit e211a0b4a432013b76c1398fc99985951f98dc92
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Thu Jun 18 18:27:04 2009 +0200
wined3d: Enable Shader Model 2.0 in ARB.
If the needed constants are available, we can support all vs_2_0 and ps_2_0
requirements with the plain ARB extensions. We cannot however, run SM 2.0a
or SM 2.0b.
causes Geheimakte2 Puritas Cordis to freeze screen and mouse
immediately after the intro sequence (or when loading a scene), while
audio finishes playing normally. The work-around (still valid for
1.1.39) is to disable the pixel shader in winecfg.
UseGLSL=disabled changes nothing (in 1.1.39).
This app used to work fine in wine-1.0.1 and 1.1.24.
--
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=31941
Bug #: 31941
Summary: sniper elite V2 not running
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ph.gachoud(a)gmail.com
Classification: Unclassified
Installed and not working no special error found
--
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=21495
Summary: App Crashs
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://pluto.brain-killer.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 131337(a)qip.ru
Hi Guys.
I've tried to start Pluto.exe from http://pluto.brain-killer.org/
Install is working without problems.
When i try to start the App, i see the Window for 1 Second, then crash.
I debugged it -> see attachment for logfile.
What to do?
--
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=22983
Summary: Battlefield Bad Company 2: game only shows black
screen
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: stefandoesinger(a)gmx.at
Regression caused by:
481aca47ad649297e5435d0f4c7466fd70aa702f is the first bad commit
commit 481aca47ad649297e5435d0f4c7466fd70aa702f
Author: Stefan Dösinger <stefan(a)e195-194.eduroam.tuwien.ac.at>
Date: Wed May 5 13:02:07 2010 +0200
wined3d: Don't use GL_ARB_map_buffer_range for now.
There are numerous problems with this extension, and there are no
visible upsides. In the best case dynamic VBOs are just as fast as no
VBO at all.
:040000 040000 cca8ec087bc506feda3595448c85c39ebe496bf6
d395ecea38a8be62103acb6279b99c0cb452d2e5 M dlls
if this patch is reverted, the game shows, although with messed up textures.
See bug 22617 for details on that.
Bug shows up in Steam and DVD versions.
--
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=22617
Summary: Texture Problems in Battlefield Bad Company 2
Product: Wine
Version: 1.1.43
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xwillex(a)gmail.com
http://appdb.winehq.org/objectManager.php?sClass=version&iId=19520
Battlefield Bad Company 2 is completely unplayable because of texture problems.
I've included wine's output while playing the game.
There are some unimplemented d3d features.
--
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=26690
Summary: d3d9 device test crashes on Intel i945
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marcus(a)jet.franken.de
Hi,
shortly after 1.3.17 d3d9 test device started crashing.
I bisected, and the bisect converged on:
git bisect good
77face22d5365d94b9bfe614ed202692e1523593 is the first bad commit
commit 77face22d5365d94b9bfe614ed202692e1523593
Author: Matteo Bruni <mbruni(a)codeweavers.com>
Date: Fri Mar 18 19:18:40 2011 +0100
wined3d: Get rid of context_validate.
It should not be needed anymore, now the wined3d context is implicitly
validated on GL context activation. The check itself wasn't reliable
because of some threading issues and it also brought a small performance
hit.
:040000 040000 865b97d2f96fb3c31125a5af9b5ad12b12c8f246
dcfa2071517116fa3beb4fd3bcf7411a4e1da085 M 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=20625
Summary: chromium's ImporterTest.IEImporter test fails
Product: Wine
Version: 1.1.32
Platform: PC
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
Chromium's IEImporter test tries to create bookmarks etc. using
COM, then read them back. It fails with
$ wine src/chrome/Debug/unit_tests.exe --gtest_filter=ImporterTest.IEImporter
fixme:seh:RtlCaptureStackBackTrace (3, 31, 0x32fce0, (nil)) stub!
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
...
[ RUN ] ImporterTest.IEImporter
fixme:shdocvw:UrlHistoryStg_AddUrl
(L"http://A79029D6-753E-4e27-B807-3D46AB1545DF.com:8080/path?key=value"
L"Unittest GUID" 00000000)
.\browser\importer\importer_unittest.cc(383): error: Value of: res == S_OK
Actual: false
Expected: true
[ FAILED ] ImporterTest.IEImporter (205 ms)
...
$
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\Google Home Page.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\SubFolder\Title.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\TheLink.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\WithPortAndQuery.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\a\??.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\Links\TheLink.url
err:menubuilder:WinMain failed to build menu item for
C:\windows\temp\ImporterTest\Favorites\Links\SubFolderOfLinks\SubLink.url
(Seems strange that bookmarks would trigger menu item creation?)
Related source:
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/importer/imp…
To repeat:
$ wget http://kegel.com/wine/chromium/chromium-tests.tar.bz2
$ tar -xjvf chromium-tests.tar.bz2
$ wine src/chrome/Debug/unit_tests.exe --gtest_filter=ImporterTest.IEImporter
--
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=22520
Summary: World of Warcraft (WotLK installer) cant accept EULA
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azureuspt(a)gmail.com
I want to make a fresh install of World of Warcraft. To do so, I downloaded
from Battle.net the new Wrath of the Lich King installer and ran it with wine.
The installer lets you choose which game/expansion you want to download, then
it downloads a small installer that starts the installation of the
game/expansion.
The GUI is the same as using the CD/DVD of Wrath of the Lich King expansion.
You click on install and then choose the languaje packs you want to include.
Next step is accepting the EULA, but it wont show. You get the empty window
with no scrollbar and the buttons bellow "accept"/"reject". Accept button is
unusable, as other WoW instalations I suppose you need to get to the end of the
EULA to be able to activate it.
So... You cant install World of Warcraft this way...
Any hints of any possible patch to be able to pass through the EULA?
--
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=25260
Summary: The Secret of Monkey Island SE requires d3dx9_36
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
CC: wine-bugs(a)winehq.org
The Secret of Monkey Island depends on some stubs in d3dx9_36 and fails to
load.
In the console log, there is a loop of these three in particular.
fixme:d3dx:ID3DXEffectImpl_SetTechnique (0x20ed90)->((nil)): stub
fixme:d3dx:ID3DXEffectImpl_Begin (0x20ed90)->(0x33c4f0, 0x1): stub
fixme:d3dx:ID3DXEffectImpl_BeginPass (0x20ed90)->(0): stub
winetricks d3dx9_36 is a workaround.
--
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=24298
Summary: iSpQ 9.1 small font size
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benjie1(a)cox.net
ISpQ 9.1 has small font size as unreadable. msi file http://www.ispq.com/
Unable to increase the font size. 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=24406
Summary: Certain objects invisible in Recettear:An Item Shop's
Tale
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karl.r.ernst(a)gmail.com
Created an attachment (id=30764)
--> (http://bugs.winehq.org/attachment.cgi?id=30764)
WINEDEBUG=warn+all of a dungeon run
This only seem to affect the following objects in dungeons:
- treasure chests
- doors of returning
- some bosses
As far as I know, it seems to be 100 % reproducable for everyone, including the
free demo versions (which can be downloaded at
http://www.carpefulgur.com/recettear/downloads.htm, in case you want to
reproduce this).
Also attaching a WINEDEBUG=warn+all log for a dungeon run in the hope it may be
usefull.
--
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=13321
Summary: WoW EULA fails to activate "Agree" button during
installation (gecko wrapper)
Product: Wine
Version: 1.0-rc1
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh+winehqdotorg(a)gmail.com
The latest version of the World of Warcraft installer (83xx) seems to have
changed. Under the gecko wrapper, the EULA can be read but seems to fail to
report scrolling position. This blocks the user from installing WoW without
either forcing rendering with IE engine or using an older installer to install
the game.
I'm afraid I cannot provide an URL.
Log: http://pastebin.com/f25664af1
--
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=29656
Bug #: 29656
Summary: Using OpenType fonts make photoshop CS2 crash
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeff.artik(a)gmail.com
Classification: Unclassified
In a old bugtracker : http://bugs.winehq.org/show_bug.cgi?id=5877 the bug has
been fixed. But since new releases of wine, this bug appeared again.
To fix it, you have to place your fonts in C:\Program Files\Common
Files\Adobe\Fonts
/home/user/.fonts doesn't work and result a crash of photoshop.
--
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=33682
Bug #: 33682
Summary: ACT! 6 cannot start under Wine 1.5.31
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick222(a)yandex.ru
Classification: Unclassified
ACT! 6 cannot start under Wine 1.5.31 - for error message see screenshot.
Under Wine 1.4.* it started and worked good.
Xubuntu 13.04-64.
--
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=21186
Summary: Windows Live Messenger: No text in the chat window
from version 8 and up
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.oldapps.com/msn_messenger.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
This bug is quite annoying since make Windows Live Messenger unusable.When you
send or receive a message from another user the chat window will stay in blank
as no one has started a conversation. This bug is present in Windows Live
Messenger 8 or higher, the MSN Messenger version is not affected.
--
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=32612
Bug #: 32612
Summary: CodeWright does not start
Product: Wine
Version: 1.5.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oboguev(a)yahoo.com
Classification: Unclassified
I am trying to run CodeWright 6.6 on wine-1.5.20, Ubuntu x64 12.10.
Wine hangs up when trying to display CodeWright splash screen.
$ wine c:\\Program\ Files\\Starbase\\CodeWright\\cw32.exe
fixme:heap:RtlCompactHeap (0x5b4000, 0x0) stub
err:ntdll:RtlpWaitForCriticalSection section 0x7bcb6964 "loader.c:
loader_section" wait timed out in thread 0023, blocked by 0009, retrying (60
sec)
With wine 1.4 CodeWright was coming up and displaying main window but crashing
after a click on "File" 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=31555
Bug #: 31555
Summary: Proteus ISIS crash when running simulation (wine
1.4-rc2 and earlier versions)
Product: Wine
Version: 1.4-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sergio_br2(a)ig.com.br
Classification: Unclassified
Created attachment 41498
--> http://bugs.winehq.org/attachment.cgi?id=41498
Circuit to reproduce the bug. Run simulation (F12), then move the oscilloscope
window and stop the simulation (Esc twice!).
Proteus ISIS (Labcenter) is crashing in simulation that involve the
oscilloscope window. Steps to reproduce:
Run a circuit that have a oscilloscope (run with F12 or click on the play
button in the lower left), like the attachment's circuit;
Then move the oscilloscope window to any side;
Stop the simulation (Esc twice or click in the stop button, on the lower left)
Take a look at this video:
http://www.youtube.com/watch?v=ILEBbqtTTEk&feature=plcp
ISIS crash with:
err:seh:setup_exception_record stack overflow 36 bytes in thread 0009 eip
7bc723a9 esp 006a130c stack 0x6a0000-0x6a1000-0x8a0000
It can be reproduce in wine 1.4-rc2 and above, like wine 1.4.1 and 1.5.11. I
try in wine 1.4-rc1, 1.3.37 and 1.2.3, and there aren't any problems (it can't
be reproduce in these versions).
I'm using PlayOnLinux 4.1.7 on Ubuntu 10.04.4.
Sorry for my english!
--
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=15330
Summary: wine crashes in xdraw
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Solaris
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smp(a)putre.net
Using FIlemaker Pro application with Wine. When click on checkbox in
application, wine crashes. See attached backtrace.
--
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=18056
Summary: Yukon: doesnt work with wine
Product: Wine
Version: 1.1.19
Platform: Other
URL: https://devel.neopsis.com/projects/yukon/wiki
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Wine was supposed to be patched in 0.9.43 to be compatibile with yukon project
(https://devel.neopsis.com/projects/yukon/wiki/Compatibility) but as i've tried
to run it with latest wine it doesn't seem to work.
I'm not sure is that related as regression test or was intended change in how
wine works and won't be fixed so i will save myself couple hours of making
regressions tests in case its wontfix case.
--
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=29803
Bug #: 29803
Summary: Flying Vehicle Gets Stuck on Ground or Surface of
Water - Battle for Naboo
Product: Wine
Version: 1.3.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jthomas97411(a)yahoo.com
Classification: Unclassified
In Battle for Naboo in Wine, if the bottom of your flying vehicle skims the
ground or the surface of water, it gets stuck on that surface.
In Windows, your flying vehicle also got stuck on the surface if it skimmed
ground or water, but if you pointed your vehicle straight up and put the
thrusters on, you could break out of it.
In Wine, you can't break out of it since 1.3.29. That 1.3.29 again!
In 1.3.28 and before (well, at least 1.3.28, 1.3.16, and 1.3.20), you could
point the flying vehicle up and break out of it. You may or may not need your
thrusters to break out.
I'm starting to really get suspicious of the transition from 1.3.28 to 1.3.29.
It is also responsible for bugs 29797 and 29799, which are also BFN-Wine bugs.
Jake
--
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=24944
Summary: MATLAB won't display help under wine version beyond
1.3.3
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zhanghan2001(a)sina.com
Matlab's help content seldom displays after several upgrade of wine.
Under wine version after 1.3.3, as for 1.3.4 and 1.3.5, all help content except
the "help navigator" is blank.BUT only at some rare chances, for example a
restart of matlab, can bring help content back again. 1 out of 10 maybe.
This probably due to some regression with jre or maybe wine-gecko.
wine 1.3.3 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=20685
Summary: IGOR Pro 6 graphing software - data browser has update
problems
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ffrindiau(a)gmail.com
I have tried to run this graphing software on OpenSuse and PcLinuxOS and
generally it works well (it has a silver rating). For both systems there are a
few small usability issues. This is part of a forum posting that I posted
today. Please see http://www.igorexchange.com/node/1098#comment-1334 for more
details.
System I use right now.
--PcLinuxOS2009
-- Gnome , motherboard inbuilt graphics card
--WINE 1.132
--IGOR 6.12
I will start with my worst problem ;-)
Summary of problem:
--data browser sometimes has update problems, with especially the red arrow
being a problem in practical use. For instance if I add a folder under root
then any new waves I add sometimes do not dissapear or appear when they are
created or deleted. The red arrow which marks which folder is active sometimes
appears to be pointing in the wrong place as a consequence.
Note to bugfixer. You can download a demo of IGOR Pro for free. See the app
winepage http://appdb.winehq.org/objectManager.php?sClass=version&iId=17472.
The way the data browser works is given in the IGOR Pro manual Pg.198 (or
Chapter II-124).
Part of the problem seems to me to be that as you add more and more stuff into
the data browser the arrow underestimates how long the list has become and
thinks the folder is slightly higher up than what we see on screen. To see the
effect just add more folders and watch as the arrow doesn't go down far enough
to catch up with the increase in list length. I created a test experiment for
you as an attachement "bugfix.pxp". I think the Data browser also has an
refresh problem but I can't be sure about that.
Anyway thanks. If you fix this would you like to fix the other ones I mention
in the Forum posting or shall I create a new bug report?
Yours sincerely
--
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=15161
Summary: Flatout 1 installer fails
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: glenn(a)webmind.be
Created an attachment (id=15894)
--> (http://bugs.winehq.org/attachment.cgi?id=15894)
Flatout install failure wine output
After selecting where to install flatout, the copy process starts and abruptly
ends with a message saying that the installer was interrupted before
completion.
--
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=32146
Bug #: 32146
Summary: Wine 1.5.15 breaks Quicken Premier 2011 one-step
update
Product: Wine
Version: 1.5.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: waldonjue(a)hotmail.com
Classification: Unclassified
Created attachment 42419
--> http://bugs.winehq.org/attachment.cgi?id=42419
binary crash file (core dump?) and crash xml file.
Quicken Premier 2011 was running beautifully (platinum-level) with the Wine 1.5
series up to (and including) 1.5.14, on OpenSuse 11.4 / AMD x86_64.
Updated to 1.5.15, and something broke. When performing a "one-step update,"
Quicken not only hangs, but refuses to close. (The "x" button in the top right
disappears, and "close" is grey in the task bar menu.) Only recovery is to
restart the system and re-open Quicken (which seems to work gracefully, until
the next attempted update).
Still broken in 1.5.16.
Reverted to 1.5.13 snapshot (couldn't find 1.5.14), and one-step update works
again.
Crash dump files 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=28104
Summary: White windows
Product: Wine
Version: 1.2.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hemanthkm(a)gmail.com
Created an attachment (id=36001)
--> (http://bugs.winehq.org/attachment.cgi?id=36001)
SAP
i am using wine with RHEL 4.0,When i try to install SAP,i am just getting white
window,after installation,its only showing few contents not the complete
window.same problem with acrobat reader 8 and wine internet explorer.
i installed wine from the source.
for the ur reference i have attached the screen shot of the SAP and Acrobat
reader.
thanks
hemanth
--
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=23916
Summary: In a on-line game, open the chat block the game
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: giacomololo(a)gmail.com
In a LAN o Internet game, pressing "pag down" button to show the chat, block
your turn. When "Pag Up" is pressed, the game restart.
Also with the chat opened, the game should go on.
--
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=22565
Summary: Delphi 7 doesn't find Project directory / Update
doesn't install
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max(a)knirz.de
Created an attachment (id=27684)
--> (http://bugs.winehq.org/attachment.cgi?id=27684)
Wine output when crashing on Delphi7 Update (d7_ent_upd1_1.exe)
I installed Delphi7 on a fresh Installation of Ubuntu 10.4 with wine 1.1.42
(the default). I accepted all default, exec opting out InterBase. The
installation
didn't report errors. When starting from the menu, it stops with an error
dialog, that reports that "C:\Programme\Borland\Delphi7\Projects" isn't found.
And indeed, ...\Delphi7 is present, Delphi7\Projects isnt.
Starting 'wine delphi32.exe' from the command line brings up the GUI. I didn't
try loading any project.
Next I tried to start the update d7_de_pro_upd1_1.exe . It stops with a
message, that the update was interrupted prematurely and the installation
wasn't changed.
The output is attached.
http://appdb.winehq.org/objectManager.php?sClass=version&iId=2325&iTestingI…
seem to have the same problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22510
Summary: Fullscreen crash bug introduced since 1.1.40 and
windowed mode remains black
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.anarchy-online.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: letsclimbhigher(a)gmail.com
These problems do _not_ occur in 1.1.40 (I'll test 1.1.41 later).
Wine crashes when trying to run in full screen (my screen res is 1024x600 if
that matters). This is an introduced bug since 1.1.40.
In windowed mode the game runs fine although the window remains black (You can
hear the game sounds and other people doing stuff and can log back out using
the ctrl-f10 logout game-key combo). This is an introduced bug since 1.1.40.
--
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=30350
Bug #: 30350
Summary: MYOB 10.0 accounting cannot start [winevdm.exe
encounter serious problem]
Product: Wine
Version: 1.5.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xirotyu(a)gmail.com
Classification: Unclassified
The installation is fine, but when you start the myob, it crash. it said
winevdm encounter problem. see detail for the log. the os is 64bit archlinux.
when i use wine 0.9 it can run 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=25731
Summary: Cursor/text selection issues in Dreamweaver CS4 code
editor
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: jflores(a)realm9.com
I am running Ubuntu Lucid (Linux Mint Isadora) on Asus U50F laptop
Since upgrading to wine 1.3.10 the text cursor in Adobe Dreamweaver CS4's code
view is very buggy when using Ctrl, Shift, Home, PgUp and PgDn keys to select
or highlight text:
-Entire page will become selected when attempting to select single lines or
sections.
-Entire line will select when attempting to select only parts
-on document open, (random?) scrolls down
-Mouse selection does not seem to override issues once occurring
Downgraded to 1.3.9 and the issues have ceased.
--
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=24768
Summary: Sony Vegas 5.0d crash
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spam(a)vsevjednom.cz
Created an attachment (id=31300)
--> (http://bugs.winehq.org/attachment.cgi?id=31300)
.xsession-errors
Hello,
when I want to run Sony Vegas, it crashes with this error: The program
vegas50.exe has encountered a serious problem and needs to close. We are sorry
for the inconvenience.
In attachment is log from .xsession-errors.
--
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=24599
Summary: Runes of Magic lost sound effects in release 1.3.4
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tsrdel(a)gmail.com
After update to wine 1.3.4 runes of magic client lost the capability to emit
sound effects. 1.3.3 sounded with the client 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=21630
Summary: Geogrid viewer broken due to regression in wine-1.1.25
Product: Wine
Version: 1.1.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: klaus.layer(a)gmx.de
CC: julliard(a)winehq.org
One of my favorite applications I use with wine got broken between wine-1.1.24
and wine-1.1.25. It is a application to display topographical maps. Since
wine-1.1.25 the map area no longer displays the map but is just black (please
see the attached screen shots).
I did a git bisect to track down which commit breaks it:
user@host:~/make/wine-git$ git bisect good
09712593c8496be5e952b7316099f9eed5043203 is first bad commit
commit 09712593c8496be5e952b7316099f9eed5043203
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Jun 25 14:18:53 2009 +0200
ntdll: Release some address space after the process initialization is done.
:040000 040000 25715d0c052bc6bbc0262c742ad285d17a78f236
aa973aa3e5286174dcbffd782691d09bd9109e5d M dlls
If I checkout
commit c68594a9417c98b2a3a8056b9ef8512822673cdb
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Jun 25 12:11:14 2009 +0200
ntdll: Don't try to decommit a heap past its initial commit size
and do a make, the map is painted correct. If I checkout
commit 09712593c8496be5e952b7316099f9eed5043203
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Jun 25 14:18:53 2009 +0200
ntdll: Release some address space after the process initialization is done.
and do a make, the map is painted 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=17376
Summary: Crystal Reports 2008: Install Fails
Product: Wine
Version: 1.1.14
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dpoirier(a)adclegal.com
When attempting to install Crystal Reports 2008 the install fails. The install
is an MSI. It gets to the point where I select the language I want and then
sits for a while before crashing. You can download an evaluation copy of this
product from
http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/crystalreport…
for testing.
--
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=19284
Summary: can't identify nvidia vendor string
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andreu.blanc013(a)gmail.com
Created an attachment (id=22321)
--> (http://bugs.winehq.org/attachment.cgi?id=22321)
nvidia detection fix
Running wined3d on Windows XP, with an nvidia GeForce 4 MX, results in this
error:
"Invalid nVidia version string: 1.5.2"
It seems that the win32 ICD doesn't report vendor string the same way. I'm
attaching a fix to make the check more tollerant.
--
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=23087
Summary: Starcraft/Broodwar crashes when getting back to main
menu after playing UDP multiplayer game
Product: Wine
Version: 1.2-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hpark2_1999(a)yahoo.com
I get error:
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
fixme:winsock:WSAIoctl WS_SIO_UDP_CONNRESET stub
err:seh:setup_exception_record stack overflow 2216 bytes in thread 0030 eip
7bc3ef28 esp 03780a88 stack 0x3780000-0x3781000-0x3880000
If I use Battlenet for Multi player, it exits just fine.
This happens AFTER you enter UDP multiplayer mode, then try to exit to main
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=32801
Bug #: 32801
Summary: wine: Unhandled exception 0x80000003 at address
0x7bc7577c (thread 0035)
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: nick(a)well2u.com
Classification: Unclassified
Created attachment 43320
--> http://bugs.winehq.org/attachment.cgi?id=43320
Log output from wine ABORT running FC3Updater.exe
Far Cry 3 game fails to start.
This is from official release DVD for PC, using valid purchase software
and key verified by Ubisoft server.
Attached is today's windbg output it is slightly different than
previous one found in the winehq.org database for Far Cry 3.
-- this is weeks later from report in the DB --
The game is correctly authenticated with Ubisoft server on network,
Ubisoft Uplay app is running, the Uplay GUI comes up fine,
today it loaded a new update
after the update "start Game" the game aborts.
1) output PART I in attachment
2) Running FC3Updater.exe in same bottle
same wine version -- directly provide output as included:
$ wine FC3Updater.exe
fixme:thread:GetThreadPreferredUILanguages 52, 0x32faac, 0x32fc24 0x32fab4
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:thread:GetThreadPreferredUILanguages 52, 0x32fa0c, 0x32fb84 0x32fa14
e:\Perforce\fc3\main\external\technology-group\framework\gear\private\src\thread/ms/thread.cpp(339)
: ASSERT FAILURE: Ret()
wine: Unhandled exception 0x80000003 at address 0x7bc7577c (thread 0009),
starting debugger...
See PART II in attachment.
I could use a bit of help gathering required information to
help resolve the issue.
To avoid too long output in attachment below this was used:
export WINEDEBUG=fixme-all,warn-all,trace-all
Setup:
Ubuntu 12.04, all updates applied.
3.2.0-36-generic #57-Ubuntu SMP Tue Jan 8 21:44:52 UTC 2013 x86_64 x86_64
x86_64 GNU/Linux
wine-1.5.19 build from official source in 32 bit mode
using the chroot approach -- this is to eliminate Ubuntu specific issues
with winepulse.
Other games work fine (same wine setup -- separate bottle)
Game was loaded in new wine bottle, no override were added,
the game install automatically included the (wine provided)
drx9 all as were expected.
Thanks,
rancidthree
--
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=17755
Summary: Command and Conquer Generals networking fails with
timeout
Product: Wine
Version: 1.1.17
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cwadge(a)gmail.com
After using the hack described in bug 17737, I am able to connect to LAN
sessions of C&C Generals. No LAN games appear in the client's game browser.
When a direct connection is established, the client appears in the list of
connected players on the server side. However, the client receives a network
timeout error when connecting and is unable to proceed. Also note that if any
AI players are added to the roster before a client attempts to join, they are
greeted by a "server full" error, regardless of how many slots are open.
--
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=25277
Summary: How to get an USB scanner running under Wine?
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joachim.backes(a)rhrk.uni-kl.de
Created an attachment (id=32104)
--> (http://bugs.winehq.org/attachment.cgi?id=32104)
Script file for a wine run starting vuescan
I'm running Fedora 14 with an installed wine-*-1.3.7.2, especially wine-twain.
My scanner is an USB attached Canon Lide 30, running properly with xsane
in Fedora14.
Now installed the windows version of vuescan (because of curiosity; I
don't need it really) under wine and tried to get it running, but
vuescan says:
----------------------------------------------
No scanner was found attached to your computer. If you have one, close this
tip window, exit VueScan, turn on the scanner and run VueScan again. See the
VueScan Release Notes for more information.
Press 'Close' to start using VueScan.
-----------------------------------------------
Any hint?
--
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=25168
Summary: Radeon 9200SE (RV280): err:d3d:check_fbo_compat >>>>
GL_INVALID_VALUE (0x501)
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: donbex(a)nerdshack.com
Created an attachment (id=31925)
--> (http://bugs.winehq.org/attachment.cgi?id=31925)
glxinfo output, ATI 9200SE
Hi,
While trying to run some games I get a "err:d3d:check_fbo_compat
>>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from Framebuffer format check @
../../../wine/dlls/wined3d/utils.c / 1083" error, which seems to make them
unplayable. Namely these games are:
- Half Life 1: starts, but with messed up textures.
- Guilty Gear XX #Reloaded: crashes.
- OdinRO: crashes.
The last one being a patched Ragnarok Online (you can get it here [1]).
I am using an old ATI 9200SE (RV280) graphics card through the radeon Mesa
driver, with DRI enabled. Attached you will find the glxinfo and wine terminal
output.
Cheers,
Alessandro
[1] http://www.odin-ro.com/?page=#download
(the full download is about 1.8GB)
--
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=18398
Summary: ZubuReader crashes on opening a magazine to read
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maniksmailbox(a)yahoo.com
Created an attachment (id=20977)
--> (http://bugs.winehq.org/attachment.cgi?id=20977)
this is the console output when zubu reader is run and subsequently crashes
ZubuReader worked flawlessly uptil 1.1.15. 1.1.17 onwards, the main library
showing the magazines available open correctly. Only when i try opening a
magazine to read, it crashes and wine shows me the error dialog.
ZubuReader was installed to a clean wineprefix so there is no contamination
whatsoever from other apps. winetricks has also not been used.
--
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=25114
Summary: Lotus Notes 8.5.1 installer crashes
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcastelein(a)rocsoft.com
Created an attachment (id=31850)
--> (http://bugs.winehq.org/attachment.cgi?id=31850)
Backtrace
wine and wine64 choke on the Lotus Notes 8.5.1 installer right after confirming
directories to install to.
--
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=12157
Summary: Game does not go past first two splash screens
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://maplestory.nexon.net
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: life+winebug(a)mapletip.com
Created an attachment (id=11554)
--> (http://bugs.winehq.org/attachment.cgi?id=11554)
Ntoskrnl patch
I am using the version of MapleStory's executable without gameguard, thus
allowing Wine to run it, sort of.
To download the version without gameguard, go here:
http://rapidshare.com/files/100726682/OdinMS.rar.html
I also had to patch ntoskrnl.exe in order for it to pass some missing
unimplemented methods. I have attached my patch. In my next post, is the log
from 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=27994
Summary: Duke Nukem Forever needs d3dx9 native DLLs
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roland(a)mxchange.org
CC: wine-bugs(a)winehq.org
Created an attachment (id=35833)
--> (http://bugs.winehq.org/attachment.cgi?id=35833)
default console log
The game doesn't run (starting it into the menu works, but not launching an
actual game) without native DirectX 9 DLLs. I need the following native DLLs:
d3dx9
d3dx9_36
d3dx9_37
With the native version, the game is starting up but a lot flickers are all
over the scene which renders many maps (including "Lady Killer") hard to play
or nearly unplayable.
With WINE builtin DLLs, (forced with following code), the game crashes at
starting a new campaign or loading an already existing campaign.
[Software\\Wine\\DllOverrides] 1312622391
"d3dcompiler_43"="builtin"
"d3dx9"="builtin"
"d3dx9_36"="builtin"
"d3dx9_37"="builtin"
"dinput8"="native"
"xinput1_3"="native"
Attached is a default console log (no WINEDEBUG specified) with above DLL
overrides.
--
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=31500
Bug #: 31500
Summary: wrong info on download page for CentOS/Fedora/RHEL
binary packages
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damage3025(a)gmail.com
Classification: Unclassified
Obsolete releases are mentioned on WineHQ's download page.
Check the screenshot for details
--
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=29259
Bug #: 29259
Summary: wrong info on download page for Debian binary packages
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: BT.Wine(a)lrz.uni-muenchen.de
Classification: Unclassified
on page http://www.winehq.org/download/ I find for Debian binary packes:
"Download Debian packages - binary .debs for Debian Lenny, Squeeze and Sid"
but on the linked pages (http://www.winehq.org/download/debian and indirectly
http://dev.carbon-project.org/debian/wine-unstable/) and via personal
communication with the maintainer Kai Wassenbäch I learned that there the only
packages available are for Sid, none for Squeeze nor for Lenny.
So, please adjust the entry for Debian binary packages on the main download
page http://www.winehq.org/download/ to reflect the status.
BTW: Debian Squeeze repositoriers provide only vintage Wine 1.0.1-3.1
--
Bernhard
--
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=31273
Bug #: 31273
Summary: page www.winehq.org/wine_features not found
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Szymon.Piszczek(a)gmail.com
Classification: Unclassified
Page http://www.winehq.org/wine_features
linked from http://www.winehq.org/about/
(fourth link in bullet list, "Możliwości Wine" in Polish -- BTW I don't see
possibility to choose the language of the page?!?)
sed:
Ooops... You went to somewhere we did not expect.
404 Not Found
Sorry, that document was not found. Please check your URL and try again.
If you followed a link from a WineHQ.org page and reached this page in error,
please report it to the WineHQ.org Bugzilla.
--
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=17820
Summary: Chromium test_shell_tests fail on Wine
Product: Wine
Version: 1.1.17
Platform: Other
URL: http://chromium.org
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
To run Chromium's test_shell_tests.exe, copy
net/data, skia/data, webkit/data, third_party/py*, and third_party/tlslite
from the source tree. (This is quite a bit of data, so I hesitate
to post a tarball.) Then do
$ wine chrome/Debug/test_shell_tests.exe
The following tests fail on wine but not windows for me:
[ FAILED ] UniscribeTest.TooBig
[ FAILED ] VectorCanvasTest.BasicDrawing
[ FAILED ] VectorCanvasTest.Circles
[ FAILED ] VectorCanvasTest.DiagonalLines
[ FAILED ] VectorCanvasTest.PathEffects
[ FAILED ] VectorCanvasTest.Bitmaps
[ FAILED ] VectorCanvasTest.Matrix
--
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=32911
Bug #: 32911
Summary: Adobe FrameMaker 8 installer aborts with compressed
file extraction error
Product: Wine
Version: 1.5.23
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ridershome(a)gmail.com
Classification: Unclassified
I cannot install Adobe Framemaker 8 on the latest wine. I checked
http://bugs.winehq.org/show_bug.cgi?id=22989, which reports a similar issue.
However, the patch provided in this bug report is still unmodified in 1.5.23
(msi/files.c), so I guess the problem is somewhere else.
Steps to reproduce:
1. Download http://www.adobe.com/support/downloads/detail.jsp?ftpID=4549
2. run it with "wine AdobeFrameMaker80_extract.exe"
The output looks as follows:
err:msi:ACTION_InstallFiles compressed file wasn't installed (L"C:\\Program
Files (x86)\\Common Files\\Adobe\\PDFL\\8.0\\Fonts\\AdobePiStd.otf")
err:msi:ITERATE_Actions Execution halted, action L"InstallFiles" 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=23499
Summary: Opti Drive Control (cdspeed2000) crashes at startup
after "No Drive Found" error message
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://www.optidrivecontrol.com/files/OptiDriveControl
_setup_149.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
It starts with
"fixme:mountmgr:harddisk_ioctl unsupported ioctl 4d014"
then it immediately crashes.
and even though wine shows this message afterwards:
"wine: Unhandled page fault on write access to 0x00000004 at address 0x7ef8fa2b
(thread 0009), starting debugger..."
debugger never actually 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=30935
Bug #: 30935
Summary: Regression: TextPad toolbar icons black
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: reichstempler(a)gmail.com
Classification: Unclassified
Textpad toolbar icons transparency is rendered "black" instead of transparent.
May be related to similar closed bug 25850.
--
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=33212
Bug #: 33212
Summary: [Regression] Menu font no longer changes with DPI
setting
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: sb56637(a)gmail.com
Classification: Unclassified
Hi,
I've been using Wine stable 1.4, but I just upgraded to openSUSE 12.3 and there
is no stable Wine. So I'm running the latest and greatest Wine, but there is a
regression in font rendering. Under Wine 1.4, the text in application menus
changed size according to the DPI setting. Now, it doesn't matter how I change
the DPI setting, certain parts of the UI like main menus and context menus are
stuck at a too-small size. Please see my screenshots.
Thanks for looking into 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=28219
Summary: [Guitar Hero World Tour] msi_dialog_onkillfocus
Invalid path L"_BrowseProperty"
Product: Wine
Version: 1.3.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mistere2002(a)zonnet.nl
I can't install GHWT onto another disk. This is broken for a couple of new
versions of Wine. In the past this worked correctly.
The steps to reproduce:
log:
* start application until "bug01" appears
* press "change"
* see screen "bug02". "Look in" and "folder name" are incorrect, The message
"err:msi:msi_dialog_onkillfocus Invalid path L"_BrowseProperty"" showing up in
the wine log everytime i give/loose focus of the screen
* i press "cancel"
* see screen "bug01" again
* press "change" again. Now i see screen "bug03". I change the "C:" in "D:".
Press "next"
* Now i get screen "bug04"
* "next" and "install"
The installer continue to install but i can't find the files on the disk.
--
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=25346
Summary: Wine 1.02 can't install JASC PSP 8
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: enrico.dini.verdiani(a)gmail.com
I have Ubuntu lucid and trying to install Paint Shop Pro 8 on my system. I do
Applications>Wine>Wine configuration>Add application (psp8 ev in my case). I
choose Windows XP as Windows version and [ok]. Nothing happens.
So I go to the user/.wine dir and I try to install psp by clicking it from
there.
An installer appairs and asks me to remove/repair/modify my previous attempt to
install that damned software. First I try repair, but Wine stops me warning
about a failure in msiexec.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=31616
Bug #: 31616
Summary: Touhou Kaikeidou ~ Marine Benefit returns a black
screen and does not load
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrewsuicune(a)gmail.com
Classification: Unclassified
When opening Touhou Kaikeidou using Wine 1.5.12, a black screen appears, and
nothing loads. The screen cannot be closed either, and to remove the window, it
is necessary to quit X11 or Terminal. Nothing in the game functions.
--
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=27628
Summary: Pride of Nations Demo / builtin d3dx9_36: 'Failed
loading thumbnail game region textures' (purist)
Product: Wine
Version: 1.3.23
Platform: x86
URL: http://www.gamershell.com/download_74618.shtml
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
Only occurs if you remove native D3DX9_37.dll.
Probably related to one of:
fixme:d3dx:ID3DXFontImpl_PreloadCharacters (0x11e7f0)->(0, 256): stub
fixme:d3dx:ID3DXFontImpl_DrawTextA (0x11e7f0)->((nil), a, 1, 0x33f6f4, 1280,
0): stub
fixme:d3dx:D3DXCreateFontIndirectW (0x3c287a8, 0x33f5c4, 0xa864a7c): stub
full output 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=18355
Summary: Evochron Legends doesn't start
Product: Wine
Version: 1.1.20
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nomax(a)arcadebelgium.be
Created an attachment (id=20909)
--> (http://bugs.winehq.org/attachment.cgi?id=20909)
Error messages
Launching Evochron Legends shows a black screen, game custom mouse cursor can
be seen briefly. At this point, escape key is the only way to exit the game.
Some OpenGL, Direct3D and DirectDraw error messages are shown (see attachment).
I'm using an ATI X1600 XT with the Mesa DRI R300 20060815 TCL driver so this
may be the problem. Someone with another graphic card/proprietary divers should
test it (the time limited demo is freely available:
http://www.starwraith.com/evochron_legends.exe).
Game includes a sort of "safe-mode" for low-end graphic cards (create an empty
file named "legacytextures.txt" in game directory to activate). But result is
the same.
According to official website, this game requires DirectX 9.0c to run.
--
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=31009
Bug #: 31009
Summary: MS Paint does not open png and jpeg files any more
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cseba00(a)yahoo.com
Classification: Unclassified
After updating to wine 1.5.7 ms paint stopped opening jpeg and png files, this
feature was working without problems in 1.5.6.
--
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=33338
Bug #: 33338
Summary: Upgrade from 1.5.26 to 1.5.27 causes OED to crash
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: rquint(a)rain.org
Classification: Unclassified
Created attachment 44095
--> http://bugs.winehq.org/attachment.cgi?id=44095
backtrace as recommended on bug reporting page
Upgrade to 1.5.27 from 1.5.26 causes a Program Error: The program winedvm has
encountered a serious 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=19149
Summary: game hangs up after some time in wine-1.1.1.24
Product: Wine
Version: 1.1.24
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dduck(a)rambler.ru
CC: dduck(a)rambler.ru
gta2 hangs up after some time in wine 1.1.1.24
Results of regression test:
89b08bc6e2ced8f26913bfb587e7bd0a576cbaee is first bad commit
commit 89b08bc6e2ced8f26913bfb587e7bd0a576cbaee
Author: Robert Key <hpestilence(a)gmail.com>
Date: Thu Jun 18 15:46:02 2009 -0400
wined3d: Add missing HD 3400 renderer string.
040000 040000 b8bcfcd899589def0b08f3f1aba3b6f3be97f621 c0e9effd5eb7e932f3d
--
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=30019
Bug #: 30019
Summary: The Chosen (Well of Souls) demo - terrible performance
in mid-game
Product: Wine
Version: 1.3.18
Platform: x86
URL: http://www.fileplanet.com/181300/180000/fileinfo/The-C
hosen:-Well-of-Souls-Demo
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 46d879eef60d6c2c6c8a7e9daf12b1448bdec7d5
Created attachment 39087
--> http://bugs.winehq.org/attachment.cgi?id=39087
terminal output
Performance is okay in the menus, but as soon as you start a new game,
performance drops dramatically, making the game unplayable.
The problem appeared in 1.3.18 and is still present in 1.4-rc5.
The result of the regression test:
46d879eef60d6c2c6c8a7e9daf12b1448bdec7d5 is the first bad commit
commit 46d879eef60d6c2c6c8a7e9daf12b1448bdec7d5
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Sun Feb 6 23:28:11 2011 +0100
wined3d: Don't drop VBOs for full buffer reloading without conversion.
:040000 040000 51050f46cee246b078aee2242b13eaa2cd90e496
609b304a5eb5e36ba918d8c917b4d366b5e2376c M dlls
The patch can be reverted cleanly on 1.4-rc5 and that fixed the problem.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33496
Bug #: 33496
Summary: pylotro - LOTRO doesn't shows after successful login
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jorgalfonso(a)hotmail.com
Classification: Unclassified
Created attachment 44342
--> http://bugs.winehq.org/attachment.cgi?id=44342
pylotro log. debug flags used: fixme-all,+x11settings,+ddraw,+process
After updating wine from 1.5.28 to 1.5.29, the game doesn't shows any more,
showing instead a similar screen image to the obtained if used Nouveau drivers
(opposed to the proprietary Nvidia drivers).
If is used a 1.5.28 source compiled wine, then the game starts as usual.
--
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=28078
Summary: 1914 Shells of Fury: text rendering issue
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: stefandoesinger(a)gmx.at
Regression SHA1: 4f594777a28c935d2eac23169012144fba974e40
Created an attachment (id=35949)
--> (http://bugs.winehq.org/attachment.cgi?id=35949)
terminal output
Certain messages in the game don't appear correctly. The upcoming screenshots
will clearly show the problem. Those messageboxes should be transparent,
however, in current Wine, the text is displayed in front of a solid background.
This used to work in Wine-1.1.35 and the result of a regression test pointed
to:
4f594777a28c935d2eac23169012144fba974e40 is the first bad commit
commit 4f594777a28c935d2eac23169012144fba974e40
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Thu Dec 24 16:35:07 2009 +0100
wined3d: Drop the VBO if too many full buffer conversions occur.
:040000 040000 1e34e941631f6bb32ee682d3199db6f02a07e415
4bbefab9106f0a6ec616a67e301f9c00f70a0df5 M dlls
git checkout 4f594777a28c935d2eac23169012144fba974e40 >> text not displayed
correctly
git reset --hard HEAD^ >> text is OK
No demo available.
Native components in use: d3dx9_36
Fedora 15 x86
Nvidia GeForce 250 / driver 280.13
--
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=21238
Summary: Stranded II: Bitmap loading errors
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=10876
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
Some bitmaps in Stranded II are messed up with WINE, but work fine in windows.
For example, the mouse-cursor and title in main-menu are wrapped wrong. The
left part is cut off and added on the right side. Here's an image:
http://appdb.winehq.org/appimage.php?iId=17662
I tried around a bit and found something about that. The mousecursor and title
bitmaps (in mods/s2/sys/gfx/) are messed up ingame and both non-power-of-two
textures. The "shoot"-cursor is 64x64 and looks ok. I resized them to make
their width a power-of-two one. The title looks okay and the menu-cursor did
too.
Then I made the shoot-cursor 63x63 and tested again. It was messed up then.
I will attach the bitmaps I used. You can download the game for free here:
http://stranded.unrealsoftware.de/s2_download.php (I suggest zip-download on
the bottom of the page)
--
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=33210
Bug #: 33210
Summary: Right to left as a mirror !!
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: moceap(a)hotmail.com
Classification: Unclassified
Created attachment 43933
--> http://bugs.winehq.org/attachment.cgi?id=43933
screen shot of the bug
بسم الله الرحمن الرحيم
When using wine in a RTL ( right to left ) desktop , it making all items of
dialogs as mechanism as a mirror .
Also not all arabic words shown !
The screenshot which attached describe 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=28128
Summary: Sacred Underworld 2.28 requires
MouseWarpOverride=false
Product: Wine
Version: 1.3.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roland(a)mxchange.org
The mentioned game requires MouseWarpOverride=false to be set. As far as I
could I cannot remember that I have set this for older versions of WINE. I have
installed the game in a separate WINEPREFIX.
--
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=33467
Bug #: 33467
Summary: Cannot bring Mac application in front of a Wine
application in full screen mode
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ovvldc(a)gmail.com
Classification: Unclassified
In Wine 1.5.27, I could use cmd-tab to switch to another application and it
would pop in front of the application that I am running in Wine in full screen
(e.g. a walkthrough for a game, or a manual for a productivity app).
In Wine 1.5.28, I can switch using cmd-tab, and that will make the dock and
menu bar appear, but I cannot get the window of another application to come up
in front.
Haven't tested 1.5.29 yet, but from the look of the commits, I doubt that this
will have changed (none seem to be about fullscreen or windows in the Mac
driver).
I cannot do regression tests and say which commit is the problem, but several
commits were made by Ken Thomases in the 1.5.28 timeframe that look like they
touch on windows and/or positions.
--
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=19938
Summary: GuitarPro: Prints empty tabs
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ntrrgc(a)gmail.com
GuitarPro: Prints empty tabs
Steps to reproduce
==================
Install GuitarPro5 and try to print the example Demo v5.gp5. Only header es
printed.
Note: If trying to reproduce it you have a problem with gdiplus.dll see this:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=3782&iTestingI…
==================
Exporting to PDF works "fine".
No special fixme's were print in the console. My printer is a HP Deskjet 3745.
--
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=27321
Summary: Advanced Voice Client (AVC) won't work in WINE
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winealsa.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trennor.turcotte95(a)gmail.com
Created an attachment (id=34943)
--> (http://bugs.winehq.org/attachment.cgi?id=34943)
terminal output from running AVC via WINE on PCLINUXOS 2010 & updates.
AVC is a VOIP client used on VATSIM, a virtual flight simulation network. AVC
is critical to the VATSIM experience as it is THE main communication tool. AVC
ceased working in WINE with the introduction of the new stable release. I
loaded and installed WINE 1.3.19, which did not improve the situation. Both
sound reception and transmission are blocked. Help was sought on the Forums for
both VATSIM and WINE, to no avail. Output attached. Sytem is configured with
PulseAudio disabled, ALSA enabled using default sound configuration. Attempts
have been made using suggestions on the forum, and OSS, again to no avail.
--
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=18259
Summary: MPLAB fails to recognize the PICKIT3 Debugger
Product: Wine
Version: 1.1.20
Platform: PC-x86-64
URL: http://microchip.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: simon_waid(a)gmx.net
The PICKIT3 is a Debugging-Hardware for MPLAB. It appears as a HIB-USB-Device
to the system. If you attach it to USB-port it is recognized by the kernel (you
can see it under eg. /dev/hidraw0). However MPLAB does not recognize it.
How to reproduce:
-Plug your PICKIT3 into a USB-Slot
-(Check, wheather it got recognized by the kernel: A new /dev/hidrawX should
appear)
-Start MPLAB
-Click on Debug->Select Tool->PicKit3
-Inside the Output-Window the message "No PICkit 3 Connected" appears
Other:
MPLAB-Version 8.3
Output from Wine:
fixme:win:RegisterDeviceNotificationA (hwnd=0x200bc,
filter=0x32f694,flags=0x00000000),
returns a fake device notification handle!
Best regards,
Simon
--
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=18327
Summary: Minor voice glitches in Call of Cthulhu DCOTE
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: monolitonegro(a)gmail.com
While playing the game, some voices are glitched, as if the game were having
buffer problems. Don't know if this is due to a regression, or some new bug.
How to reproduce: Use GNU/Linux Ubuntu Hardy 8.04, install the game, play the
game and watch as many cutscenes as you can.
Also, configure wine to use ALSA drivers.
--
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=18206
Summary: S180 Life In The Oceans CD exits silently
Product: Wine
Version: 1.1.20
Platform: PC
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=20700)
--> (http://bugs.winehq.org/attachment.cgi?id=20700)
Wine 1.1.20 +relay +seh +tid (6.1MB)
S180 Life In The Oceans is part of a university course material.
The setup window loads, but on clicking OK the app exits silently, nothing in
the console.
System requirements claim to need Flash and IE5.5. Tried "winetricks ie6
flash" but this made no difference.
Sorry, I don't know what I'm looking at in +relay logs.
--
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=18294
Summary: Getting stuck on slopes/elevators in Garrys Mod
Product: Wine
Version: 1.1.5
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)watersideway.plus.com
Created an attachment (id=20823)
--> (http://bugs.winehq.org/attachment.cgi?id=20823)
Contents of terminal
When you walk over a slope or onto an elevator in Garry's Mod. You get stuck,
cannot move at all. I have attached the contents of the servers terminal.
I notice a lot of people with this problem have been marked as a duplicate of
another thread, looking at that other thread, the two are completely different
problems.
--
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=24321
Summary: Installation of FrameMaker 9 crashes
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: meicks(a)novell.com
Created an attachment (id=30647)
--> (http://bugs.winehq.org/attachment.cgi?id=30647)
Log of Framemaker 9 Installation
I've got the following winetricks addons installed:
- msxml3, msxml4, msxml6
- vcrun6, vcrun6sp6. vcrun2005, vcrun2008
The installation of Framemaker 9 works fine until Adobe Air (which is part of
the installation) is installed.
This throws the following error (see line 141 of the attached log):
wine: Unhandled exception 0xc000000d at address 0x49f81e (thread 0009)
It is possible to continue with the installation, but shortly after that the
installation of the Framemaker Linguistics also crashes (see line 144 of the
attached log):
wine: Unhandled exception 0xc000000d at address 0x49f81e (thread 002b)
--
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=17776
Summary: Installing on Fat32 partitions seems to be impossible
nowadays
Product: Wine
Version: 1.1.17
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: een_meel_of_geen_meel(a)hotmail.com
recently (for about 20 or so versions), I haven't been able to install programs
on FAT32 partitions anymore. I still use these on quite a few occasions and
dislike having to install them onto my /home partition or whatever.
Installation starts fine, but bugs out with an error about not being permitted
to write there.
games include but are not limited to: anno 1503, civ4, titan quest
--
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=32557
Bug #: 32557
Summary: Console key in Skyrim broken on Finnish keyboard
layouts
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: turotl(a)gmail.com
Classification: Unclassified
Console key (key to the left of '1', exact symbol varies depending on layout,
'§' on Finnish layouts) doesn't work anymore. Broke between 1.5.5 and 1.5.6,
offending commit is 43984f355a2905e16075a9df3d7fbe463761e853 "winex11: Be more
conservative when matching keys from built-in layout tables."
Still present in latest git, reverting above commit fixes 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=32062
Bug #: 32062
Summary: Guild Wars: Game crashes sometimes on launching
Product: Wine
Version: 1.5.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Sometimes on launching Guild Wars with the command "'/wine/drive_c/Program
Files (x86)/GUILD WARS/Gw.exe'" or even with the -image parameter
"'/wine/drive_c/Program Files (x86)/GUILD WARS/Gw.exe' -image" the game will
crash. I will attach a log of such a crash.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31210
Bug #: 31210
Summary: Any Wine application run from Linux shell in
GnomeTerminal -- corrupts keyboard escape sequence
mapping
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: M8R-f22t2a(a)mailinator.com
Classification: Unclassified
Under Wine-1.4, running any application from the command line in GnomeTerminal
changes the escape sequences generated by the unshifted cursor movement keys;
these are NOT restored correctly when application terminates. For example,
default sequence from Cursor-Up is \e[A (where \e represents ESC). Wine
changes it to \eOA, and leaves it there; a terminal reset is required to
correct. Similarly, Cursor-Down changes from \e[B to \eOB.
This is on LinuxMint-10, after upgrade from Wine-1.2 to Wine-1.4, via synaptic,
from your ubuntu-wine maverick PPA. The problem was not previously apparent in
Wine-1.2, (which originated from, and appears to remain the current offering
from, the LinuxMint-10 repository).
--
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=24232
Summary: Arena chess gui : time stamp function not correct
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stuurdekat(a)gmail.com
Created an attachment (id=30506)
--> (http://bugs.winehq.org/attachment.cgi?id=30506)
wine log
Arena seems to function well in Ubuntu under Wine but when connected to ICS the
timeseal function is not working properly. This results in playing too slow
when there is little time remaining or even halting of Arena.
--
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=31189
Bug #: 31189
Summary: The Sims turns off after run without error messages.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: odziomek91(a)gmail.com
Classification: Unclassified
Created attachment 40955
--> http://bugs.winehq.org/attachment.cgi?id=40955
Clean log from The Sims (with all expansions)
Let's try fix it again. ;)
Sooo... The Sims turns off after run it without error messages. Before this I
had "Unhandled exception" error, but I fixed it with Internet Explorer 7 and
vcrun6. At now the game starts - I see black screen and The Sims turns off.
I sent 2 log files - first with clean WINEDEBUG section (wineprefix_debug.log)
and second with WINEDEBUG=+tid,+relay,+seh (wineprefix_debug_tid_relay_seh.log)
The Sims runs at Wine 1.4.1. but Sims textures in game are white. I can't
select any action with Sims. I sent log from this (+tid +relay +seh).
Thanks a lot for any suggestions! :)
--
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=26358
Summary: Office 2003 installer crashes immediately
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Created an attachment (id=33575)
--> (http://bugs.winehq.org/attachment.cgi?id=33575)
console log
As of wine-1.3.15-76-g76645c5, the Office 2003 installer crashes immediately on
startup. This worked in wine 1.3.1. I will do a regression test shortly.
--
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=24716
Summary: Alfa Ebook Manager crashes with Unhandled Exception
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Salz85(a)gmail.com
Created an attachment (id=31224)
--> (http://bugs.winehq.org/attachment.cgi?id=31224)
Application Console output
Upon Installing dotnet 1.1, 2.0 and 3.5 (albeit with some errors) and mdac 2.8
the application crashes with an Unhandled Exception about
"System.IO.FileNotFoundException: Could not load file or assembly
'System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089' or one of its dependencies."
The following log is the application console output with no DEBUG variables
enabled. I'm adding the dotnet 3.5 installation log in the eventuality that the
problems are in some way interlinked.
the application demo could be found on http://alfaebooks.com/files/aemdemo.zip
--
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=32211
Bug #: 32211
Summary: In Japanese Mono Install with Wine 1.5.17, the word
'Install' doesn't fit on the button
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrewsuicune(a)gmail.com
Classification: Unclassified
When installing Mono on MacOSX with Japanese Locale, the katakana for 'Install'
do not fit on the button. There is no effect other than one of being able to
read what the button says (the text seems to be cut off to the right as well)
--
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=24836
Summary: Continue to get serious problem error
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lucario289(a)yahoo.com
ive tried installing west point brigde builder, a couple emulators and other
games and a serious problem error appears and will not run the games at all,
wine says its installed 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=24905
Summary: Audio Tab in Wine config makes the window close
Product: Wine
Version: 1.0.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bou.gui(a)laposte.net
Hi.
When clicking on the Audio Tab in Wine config, the window of configuration
closes.
Best regards
Guillaume
--
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=24786
Summary: Wine Crashes when finish encoding.
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rodrigomojeda(a)gmail.com
After finish encoding a dvd iso wine sends a splash dialog reporting that the
aplication has some kind of problem an will be close by force.
--
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=23971
Summary: Sega Bass Fishing crashes on startup
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://www.amazon.com/Sega-Bass-Fishing-PC/dp/B000058C
CU/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Sega Bass Fishing (released in 2001) installs ok, but crashes on startup.
The log has the lines
fixme:quartz:AVISplitter_thread_reader Thread 0 terminated with hr 80040209!
...
trace:seh:raise_exception code=c0000094 flags=0 addr=0x7e9be60d ip=7e9be60d
tid=002d
and then goes downhill.
--
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=31012
Bug #: 31012
Summary: Shikigami no Shiro III cannot load
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrewsuicune(a)gmail.com
Classification: Unclassified
Created attachment 40709
--> http://bugs.winehq.org/attachment.cgi?id=40709
Backtrace for Shiki3.exe
The application Shikigami no Shiro III cannot run after 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=26714
Summary: Teamfortress 2 issues with lighting (tf2)
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kelfe(a)gmx.de
Created an attachment (id=34027)
--> (http://bugs.winehq.org/attachment.cgi?id=34027)
I marked the visible lanterns in the screenshot
Hi,
in tf2 there are some lights that are visible through the walls.
--
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=24962
Summary: LayOut.exe must close this must be a software's
problem or a wine problem
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otxando(a)gmail.com
Created an attachment (id=31614)
--> (http://bugs.winehq.org/attachment.cgi?id=31614)
error file
When creating a new project after lunching google's layout.exe, a message says
that the programme doesn't unser. Probleme may come from Wine.
see error 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=25237
Summary: Half Life 2: light visible through walls
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adamklobukowski(a)gmail.com
Created an attachment (id=32037)
--> (http://bugs.winehq.org/attachment.cgi?id=32037)
screenshoot #1
In HalF Life 2 light sources are visible through walls. Screenshot #2 and #3
show the same light from different angles.
--
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=31668
Bug #: 31668
Summary: Broken link
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mike(a)mikemurphy.nl
Classification: Unclassified
searched for help on installing directx9
this link:
https://www.google.com/url?q=http://www.winehq.org/status/directx&sa=U&ei=D…
is the top link from search bar on home page
but throws up a 404
--
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=24964
Summary: Rose Online refuses to uninstall, reinstalls itself
when using Uninstaller, has trojan
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ssjgokux3(a)gmail.com
I installed Rose Online to help with another bug reported on this site. I have
tried to uninstall it countless times and the uninstaller says that it
uninstalled the software but when I looked in the .wine directory on my
hard-disk, the "Gravity" directory, which contains Rose Online, was still
there. So I manually deleted the Gravity (SHIFT+DEL) directory and then
proceeded to go to the "Uninstall Wine Software" app to remove Rose Online. The
Rose Online install was still in the list, as expected, so I proceeded with the
uninstaller again, which takes a long time to start by the way. After the
uninstall completed, I looked back at the list and Rose Online was still there.
I then went back to the .wine folder and the program had actually reinstalled
itself so I had then deleted the directory the same way again. Before deleting
it however, I scanned my laptop with KlamAV and it told me that there was a
Trojan in the Rose Online directory.
Rose Online STILL will not remove itself from my machine. Help would be
appreciated. Any ideas besides completely removing Wine?
Linux Katormix 2.6.35-23-generic #36-Ubuntu SMP Tue Oct 26 17:03:18 UTC 2010
i686 GNU/Linux
Wine Version: 1.3.6
--
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=24727
Summary: Can't compile 1.3.4-git of 12th October 2010 with
Xorg-server 1.9.901
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fdelente(a)mail.cpod.fr
Hello.
When trying to compile wine today, I got this error:
xvidmode.c:60: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before
‘*’ token
xvidmode.c:64: error: ‘XF86VidModeGetAllModeLines’ undeclared here (not in a
function)
xvidmode.c:64: warning: type defaults to ‘int’ in declaration of
‘pXF86VidModeGetAllModeLines’
xvidmode.c:65: error: ‘XF86VidModeGetModeLine’ undeclared here (not in a
function)
It seems xf86vidmodproto has changed since Xorg-server-1.8.2.
--
F. Delente
--
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=33560
Bug #: 33560
Summary: libwine doesn't get installed
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: CFSworks(a)gmail.com
Classification: Unclassified
This is a regression in Wine 1.5.30 where the Makefile doesn't install libwine,
leading to this error:
cfsworks@cfspc:~$ wine --version
wine: error while loading shared libraries: libwine.so.1: cannot open shared
object file: No such file or directory
This bug isn't present in 1.5.29; I'm running the regression test to identify
the bad commit now. Stand by.
Because this bug prevents Wine from launching at all, I have filed this as a
'Critical' 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=17839
Summary: Implement bookmarks in the file dialog
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkyral(a)email.cz
In the file dialog is not possible to store the directory for later (bookmark
it). I'm using it a lot in KDE and miss it in 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=24402
Summary: winegcc does not properly pass cmdline args, e.g.
-Wb,--as-cmd="as --32"
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: armin.kazmi(a)tu-dortmund.de
When trying to build a simple test.c file with winegcc, winegcc fails to
properly pass over commandline arguments to winebuild.
test.c only contains an emtpy main function. In practise this error was
verified with the vst plugin of lmms.
Test cmdline:
winegcc test.c -o test -m32 -Wb,--as-cmd="as --32",--ld-cmd="ld -melf_i386"
Resulting output:
winebuild: as --32 failed with status 1
winegcc: winebuild failed
Another testcase
Cmdline:
winegcc test.c -o test -m32 -Wb,--as-cmd="as ",--ld-cmd="ld "
Output:
winebuild: as failed with status 1
winegcc: winebuild failed
Running the same first cmdline with the -v option reveals the error:
winegcc test.c -o test -m32 -Wb,--as-cmd="as --32",--ld-cmd="ld -melf_i386" -v
-----
gcc -m32 -fshort-wchar -DWINE_UNICODE_NATIVE -D_REENTRANT -fPIC -DWIN32
-D_WIN32 -D__WIN32 -D__WIN32__ -D__WINNT -D__WINNT__
-D__stdcall=__attribute__((__stdcall__)) -D__cdecl=__attribute__((__cdecl__))
-D_stdcall=__attribute__((__stdcall__)) -D_cdecl=__attribute__((__cdecl__))
-D__fastcall=__attribute__((__fastcall__))
-D_fastcall=__attribute__((__fastcall__)) -D__declspec(x)=__declspec_##x
-D__declspec_align(x)=__attribute__((aligned(x)))
-D__declspec_allocate(x)=__attribute__((section(x)))
-D__declspec_deprecated=__attribute__((deprecated))
-D__declspec_dllimport=__attribute__((dllimport))
-D__declspec_dllexport=__attribute__((dllexport))
-D__declspec_naked=__attribute__((naked))
-D__declspec_noinline=__attribute__((noinline))
-D__declspec_noreturn=__attribute__((noreturn))
-D__declspec_nothrow=__attribute__((nothrow))
-D__declspec_novtable=__attribute__(())
-D__declspec_selectany=__attribute__((weak)) -D__declspec_thread=__thread
-D__int8=char -D__int16=short -D__int32=int -D__int64=long long -D__WINE__ -c
-o test-5hFdhw.o -m32 -v test.c -isystem/usr/include/wine/windows
STRIPPED
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/cc1 -fpreprocessed
/home/armin/.ccache/tmp/test.tmp.Armin-Lappy.24225.i -quiet -dumpbase
test.tmp.Armin-Lappy.24225.i -m32 -mtune=generic -march=x86-64 -auxbase-strip
/home/armin/.ccache/8/f/e763402f4ba107ebe0a46887176150-5354.o.tmp.Armin-Lappy.24225
-version -fshort-wchar -fPIC -o /tmp/cc1MonbO.s
STRIPPED
winebuild -v -fno-asynchronous-unwind-tables -m32 -D_REENTRANT -fPIC --exe -o
test.exe-mBoapU.spec.o -F test.exe --subsystem console -L/usr/lib/wine
-L/usr/lib -L/usr/lib -L/usr/local/lib -L/lib --as-cmd=as --32 --ld-cmd=ld
-melf_i386 -- test-5hFdhw.o
as --32 --32 -o test.GRCnmk.o test.QLV4hW.s
winebuild: as --32 failed with status 1
winegcc: winebuild failed
------
The error lies in $WINESRC/tools/winegcc/winegcc.c lines 1360 and following.
Winegcc assumes that the command line arguments remain quoted as shown in the
cmdline above, but instead winegcc receives the following as 4th arg
"--as-cmd=as --32" (as verified with a simple program just outputting the
args), so actually the quotes get lost and need to be manually filled in if
winegcc starts a script running winebuild. Franky, I don't know too much of the
process used here.
Attached is a chatlog between me and A. Hentschel.
--
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=33649
Bug #: 33649
Summary: wine-1.5.30 - "./configure --with-gnutls" fails with
gnutls-3.2.0 - conftest.c:160:15: error:
'gnutls_mac_get_key_size' undeclared
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bkohler(a)gmail.com
Classification: Unclassified
Starting with gnutls-3.2.0, wine's ./configure --with-gnutls fails. This
appears to be due to some header changes from this gnutls commit:
https://gitorious.org/gnutls/gnutls/commit/e0b3dbe3eb60e3a2d59ba0f20560160d…
Relevant config.log lines:
configure:10374: checking for gnutls/gnutls.h
configure:10374: result: yes
configure:10387: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native
conftest.c >&5
conftest.c: In function 'main':
conftest.c:160:15: error: 'gnutls_mac_get_key_size' undeclared (first use in
this function)
conftest.c:160:15: note: each undeclared identifier is reported only once for
each function it appears in
configure:10387: $? = 1
--
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=26853
Summary: CSI: Fatal Conspiracy demo: no splash screen without
native d3dx9
Product: Wine
Version: 1.3.18
Platform: x86
URL: http://www.gamershell.com/download_65372.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
fixme:d3dx:D3DXGetImageInfoFromFileInMemory (0x189f020, 1048704, 0x33cc8c):
partially implemented
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
Native d3dx9 works around it. The missing screen shows some csi info, without
it you get a black screen and then it goes straight to the Ubisoft splash
screen.
For Vincent:
warn:wincodecs:ImagingFactory_CreateDecoderFromStream failed to load from a
stream
warn:wincodecs:ImagingFactory_CreateDecoderFromStream first 4 bytes of
stream=44 44 53 20
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
--
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=21890
Summary: running vc2005: compiler is out of heap space
Product: Wine
Version: 1.1.39
Platform: x86
URL: http://www.ghostscript.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: htl10(a)users.sourceforge.net
with VC2005 express (installed with winestricks), following the build
instruction for ghostscript ("nmake -f psi/msvc32.mak"), VC2005 aborts after
compiling about 50 files with:
c1 : fatal error C1060: compiler is out of heap space
NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio
8\VC\bin\cl.EXE"' : return code '0x2'
Stop.
typing "nmake -f psi/msvc32.mak" again compiles another file and then again the
same message.
Using VC2008 (win7 sdk) under wine goes a lot further until encounting bug
21394
(which I filed a bit earlier but can be worked around); Obviously vc2005 works
under real windows to build ghostscript, because this is actually what the dev
team uses (VC2008 is not).
So this looks to be a bad interaction between VC2005 and wine.
I ain't going to look much further since building ghostscript with VC2008
works, but I hope somebody looks into the heap problem with building with
VC2005 and maybe it would benefit wine in general.
--
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=21774
Summary: Perfect World International: sometimes audio is
missing
Product: Wine
Version: 1.1.38
Platform: x86
URL: http://pwi.perfectworld.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pq(a)iki.fi
Created an attachment (id=26330)
--> (http://bugs.winehq.org/attachment.cgi?id=26330)
debug output when sound fails
Perfect World International client.
The game is started by running the launcher. A window is shown, where the game
checks the client version and updates it if needed. Then click "start", at
which point I always hear the clicking sound just fine. The actual game loads
and presents a dialog of game information. Click "Confirm" and you should hear
another clicking sound. Sometimes I hear nothing, and the whole game will be
completely silent.
It seems fairly random, if I get sound or not. If sound is missing, it is
unlikely that restarting the game fixes it. A reboot seems to have a better
chance to get it working. I am guessing this a race between the patcher and the
game, and disk caches affect it. Dropping disk caches improves the probability
to get sound.
I've attached a debug log of a case where sound is missing: pwi-debug.txt. The
command was:
LC_ALL="C"
WINEDEBUG="+alsa,+dsalsa,+ds,+dsa,+dsound,+sound,+dsound3d,+dswave,+exec,+winmm"
wine 'C:\pelit\pwi\launcher\Launcher.exe' &> pwi-debug.txt
The relevant part seems to be:
ALSA lib pcm_dmix.c:1008:(snd_pcm_dmix_open) unable to open slave
fixme:dsalsa:IDsDriverImpl_Open Failed to open device: Device or resource busy
warn:dsalsa:IDsDriverImpl_Open --> 80004005
warn:dsound:DirectSoundDevice_Initialize DSOUND_ReopenDevice failed: 80004005
When that happens, there will be no sound in the game. Note, that the launcher
(patcher?) always succeeds in playing the click sound just fine. I have no
other audio applications running. I have not used winetricks.
More of my PWI experiences are in AppDB:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=9923 written by
Pekka Paalanen.
This bug has been present from at least 1.1.34.
--
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=26598
Summary: Iconoclasts does not start
Product: Wine
Version: 1.3.16
Platform: x86
URL: http://www.konjak.org/index.php?entry=48
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Iconoclasts does not start and spits out a runtime error message box.
--Terminal output--
fixme:win:EnumDisplayDevicesW ((null),0,0x32d694,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d63c,0x00000000), stub!
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
fixme:d3dx:ID3DXLineImpl_SetAntialias (0x1e5818)->(1): stub
fixme:d3dx:D3DXCreateEffectEx (0x131008, 0x107543c, 1112, (nil), (nil), (nil),
0, (nil), 0x9294930, 0x32dab8): semi-stub
fixme:d3dx:skip_dword_unknown Skipping 2 unknown DWORDs:
fixme:d3dx:skip_dword_unknown 0x00000003
fixme:d3dx:skip_dword_unknown 0x00000004
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x4dad001
with d3dx9_36.dll it 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=18152
Summary: lseek* without effect on file stream
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugtrack(a)roumenpetrov.info
Created an attachment (id=20613)
--> (http://bugs.winehq.org/attachment.cgi?id=20613)
test case
The attached test case output:
--------------------
sizeof l=17
fread res=16, buf=0123456789___000
fflush ret=0 errno=0
lseek off=0 errno=0
fread res=16, buf=0123456789___001
fseek ret=0 errno=0
fread res=16, buf=0123456789___000
--------------------
is program is run under wine.
The second read on same program run on w2k output:
...
fread res=16, buf=0123456789___000
...
--
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=15493
Summary: Clamwin doesn't clear status window (dogfood)
Product: Wine
Version: 1.1.5
Platform: PC
URL: http://sourceforge.net/project/downloading.php?groupname
=clamwin&filename=clamwin-0.94-
setup.exe&use_mirror=superb-east
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
When running a scan with Clamwin, the current file is displayed that is being
scanned. On Windows, after the file is scanned, it is removed, and the next
file is displayed (usually pretty quickly), along with the percent completed.
On Wine, the list is never cleared, so you get a long list 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=32872
Bug #: 32872
Summary: Compilation broken if clang is installed, but not used
for compilation.
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iive(a)yahoo.com
Classification: Unclassified
When compiling I got the following error:
--
make[1]: Entering directory
`/dev/shm/fikus/wine-1.5.23/wine-1.5.23_GIT20130201_0618/dlls/avifile.dll16'
../../tools/winegcc/winegcc -B../../tools/winebuild --sysroot=../..
-fasynchronous-unwind-tables -shared ./avifile.dll16.spec -m16
-Wb,--main-module,avifil32.dll -o avifile.dll16.so -lavifil32
../../libs/port/libwine_port.a
avifile.b0xGhP.s:443:2: error: invalid operand for instruction
lretw
^
avifile.b0xGhP.s:580:2: error: invalid operand for instruction
lretw
^
--
I did git-bisect between 1.5.22 and 1.5.23 and got:
--
c14bdaf1ddb7d0e5587f63f1216b61c9ecb7a8c3 is the first bad commit
commit c14bdaf1ddb7d0e5587f63f1216b61c9ecb7a8c3
Author: Charles Davis <cdavis5x(a)gmail.com>
Date: Mon Jan 28 13:42:12 2013 -0700
winebuild: Use Clang to assemble if found.
:040000 040000 6d74670c5b85af40c0294786d2fe62b6cf69e950
ce57d3edff2b26c81e9d4e15be97beead7bbd5a9 M tools
bisect run success
--
Looking at the patch it is clear that if `clang` is found on the system it
would be used unconditionally. Since I have an old version (LLVM-3.0), that I
need for compiling the last stable Mesa3D v9.0 release (it is used for
shaders).
The configure script doesn't check for clang support or version. There are no
conditional option that would force gnu `as`, nor there is any code that would
prefer `as` when `gcc` is used.
FYI. I'm on Slackware 14. GCC-4.7.2 (latest release atm).
LLVM-3.0 fails.
LLVM-3.2 seems to work fine.
I expect the bug to be fixed by checking for minimum clang version.
If that is not feasible then there must be an configure option to select the
toolchain and it should be documented in `configure -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=33227
Bug #: 33227
Summary: Icebreakers demo: launcher doesn't appear correctly
Product: Wine
Version: 1.5.24
Platform: x86
URL: http://www.gamershell.com/download_73664.shtml
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: trivial
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: julliard(a)winehq.org
Classification: Unclassified
Regression SHA1: ca5746ad1a99fde06a7309cc47031cc898c6ee69
Created attachment 43951
--> http://bugs.winehq.org/attachment.cgi?id=43951
screenshot (comparison)
This is the game from bug #26784. The launcher for the game doesn't appear
correctly as certain parts of the launcher are filled with black rectangles. If
you grab and move the window across the screen, as soon as it reaches the edges
of the screen, the whole window turns black.
Terminal output isn't too long:
>fixme:wincodecs:JpegDecoder_Frame_CopyPalette (0x13d1e4,0x13d8a8): stub
Looks like a regression from Wine 1.5.24:
ca5746ad1a99fde06a7309cc47031cc898c6ee69 is the first bad commit
commit ca5746ad1a99fde06a7309cc47031cc898c6ee69
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Feb 11 15:41:20 2013 +0100
server: Also exclude the top-level client rectangle for windows that have a
pixel format.
:040000 040000 1992950d2d3012bdf7f8a288d646382f633b9acf
84423e0808057f858a37f296cccaddeb1c02da89 M dlls
:040000 040000 b667ebdf2334962c0a91955647076f97177c86ed
c2e998bac84ef9fdc4b6d7bbbc58412e92d19230 M server
Steps to reproduce the problem with the demo:
1. after installation start the application with ../System/icelauncher.exe
Fedora 18
X.Org X Server 1.13.3
XFCE 4.10
--
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=25176
Summary: CSI: Fatal Conspiracy Demo crashes on startup
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Downloaded from http://www.gamershell.com/download_65372.shtml
Installed ok, but crashes on startup with
Unhandled exception: page fault on write access to 0x0000003c in 32-bit code
(0x00ecef1d).
Backtrace:
=>0 0x00ecef1d in fmodex (+0x8ef1d) (0x0032f7ec)
1 0x00ecefc9 in fmodex (+0x8efc8) (0x0032f808)
2 0x00e645ee in fmodex (+0x245ed) (0x0032f818)
3 0x004c9a0d in csi6demo (+0xc9a0c) (0x016c8d98)
--
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=30681
Bug #: 30681
Summary: Microsoft SQL Server Management Studio Express 2008
installer fails
Product: Wine
Version: 1.5.4
Platform: x86
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=7593
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
Created attachment 40173
--> http://bugs.winehq.org/attachment.cgi?id=40173
log of SQLManagementStudio_x86_ENU.exe - steps as described.
Installation fails with message:
SQL Server Setup has encountered the following error:
Method not found: 'Void
System.Xml.Xsl.Xslt.Compiler..ctor(System.Xml.Xsl.XsltSettings, Boolean,
System.String)'..
Prerequisites:
a version of winetricks that supports dotnet35sp1 is required (currently only
svn)
winetricks dotnet35sp1 mspatcha
To reproduce:
wine SQLManagementStudio_x86_ENU.exe
go to Installation, then New SQL Server stand-alone installation. After a while
the above message is displayed and the installation is interrupted.
--
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=32661
Bug #: 32661
Summary: Word 2003: formulas are invisible
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
This is a regression:
91a3e5fc10b7fb0faae5498ae8bfb0d83478514b is the first bad commit
commit 91a3e5fc10b7fb0faae5498ae8bfb0d83478514b
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Wed Oct 31 15:37:16 2012 -0500
gdiplus: Reimplement GdipCreateMetafileFromEmf without using IPicture.
:040000 040000 9b3675c9925ba8671662736b067888c6fb9f4703
a7e1e6831b78d729d39deb3295bee9706309e5f7 M dlls
You can use this test doc file to reproduce:
http://bugs.winehq.org/attachment.cgi?id=36810
--
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=23896
Summary: SQLyog ignores checkboxes.
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)scotthinton.com
When using SQLyog, checkboxes do not work correctly. For instance, when
exporting data as a sql dump, the user is presented with a checkbox list of all
tables/views/procedures/etc. It makes no difference whether you select 1,10 or
all. All tables are exported.
This problem is the same for any action that uses checkboxes in this program.
--
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=24935
Summary: Capella 7: Virtual keyboard not shown correctly
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anhaupt(a)gmx.ch
The virtual keyboard of capella 7 is not shown correctly: Only parts of the
content are shown, which makes it unuseable.
With a previous version of capella (capella 2004) the virtual keyboard works
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=17588
Summary: Strong Bad's Cool Game only shows black screen
Product: Wine
Version: 1.1.16
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: VincentBeers(a)gmail.com
I haven't played the game Strong Bad's Cool Game for Attractive People in a few
months, but last time I tried playing it the game worked (after getting a
native d3dx9_36.dll). Since then this specific DLL has been implemented into
Wine itself, apparently.
In 1.1.16 I tried rerunning the game and now two new problems (regressions)
appeared (I'm making two bug entries).
The first problem is this: when running the game, NO graphics show, I only see
a completely black screen. Wine continuously prints out messages like this in
the terminal:
fixme:d3d_draw:drawStridedFast >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502)
from glDrawElements @ drawprim.c / 276
To prove that the game DOES actually run: I'm hearing sound and music.
I use an integrated Intel chipset (Eee PC) and run XUbuntu Intrepid.
--
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=12174
Summary: Medieval II: Total War crashes on run
Product: Wine
Version: 0.9.58.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)chrobis.com
Created an attachment (id=11566)
--> (http://bugs.winehq.org/attachment.cgi?id=11566)
Log of console output before installing d3dx9_36.dll
When trying to run Medieval 2: Total War, the screen goes black, I get a
garbled cursor for a split-second, and then a message:
"Medieval 2: Total War has encountered an unspecified error and will now
close".
When I first ran this, I got a load of stuff on the command-line which amongst
other things complained about a lack of d3dx9_36.dll. After adding this into
the system32/ directory, I get similar set of complaints on the command-line
(minus a complaint about d3dx9_36.dll), but the game still comes up with the
same error. This game has worked *relatively* recently on Wine (I'm thinking
maybe 0.9.51 or earlier) but I'm uncertain when.
Attached are the logs for both pre-d3dx9_36.dll installation (medieval-1), and
after (medieval-2).
Many 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=26606
Summary: No sound or music is played in Iconoclasts
Product: Wine
Version: 1.3.16
Platform: x86
URL: http://www.konjak.org/index.php?entry=48
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
After getting past bug #26598 there is no sound or music but with xaudio2_2.dll
it plays.
--
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=23981
Summary: Sudden Strike 2 crashes when exiting main menu
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: devurandom(a)gmx.net
Created an attachment (id=30113)
--> (http://bugs.winehq.org/attachment.cgi?id=30113)
Console log
I started Sudden Strike 2 v2.2 and then exited it again, which resulted in a
crash.
Hardware:
AMD Athlon 64 X2
GeForce 7900 GS
Software:
nvidia-drivers-195.36.31
Sudden Strike 2 v2.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=16721
Summary: Magic the Gathering hangs often during duel at 100% CPU
Product: Wine
Version: 1.1.11
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=15046
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sick_soul(a)yahoo.it
While playing duels in Magic the Gathering (Microprose) with all expansion
packs and manalink 2.0, the duel often hangs at 100% CPU and needs to be
killed.
This happens so often that the gauntlet is not playable at all.
--
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=12650
Summary: Flash 8: Fonts rendering very slow and no input buffer
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: buzzilo(a)gmail.com
When trying to insert text with many symbols it round turn into hurt cause i
have to wait ~3 sec after input every symbol. Another problem when i typing a
alot of symbols then appear only first. It seems to be there is no input buffer
like in windoze.
In windoze this is also resource eager (100% busy at the same situation), but
more comfortable and responsible.
To solve this we need to use device fonts for static text or turn on outline
preview mode.
--
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=32873
Bug #: 32873
Summary: Wine unable to install
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d3553(a)hotmail.com
Classification: Unclassified
Wine is unfortunately almost impossible to use.
I first installed wine 1.2.2 from the repository. Then tried to use it to
install MSOffice2003. Didn't work.
Then I uninstalled that wine version and tried installing a newer one.
Impossible. there is a link on your site to wine 1.4. When using the link to
install wine, I get a cryptic message that it is "virtual".
When using the link to 1.5, I get a message that it is not found.
I've now tried to locate it somewhere else on your site. Lot's of referrals,
nothing useful; going in circles or to dead ends.
2 things would improve things a lot:
1: clearly state what version(s) can be used.
2: make those versions available and installable.
--
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=20591
Summary: FIFA 08: crashes when starting a match
Product: Wine
Version: 1.1.31
Platform: PC
URL: http://largedownloads.ea.com/pub/demos/Fifa/08/FIFA08_
PC_Demo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b.brachaczek(a)gmail.com
CC: stefandoesinger(a)gmx.at
FIFA 08 (also demo version, link in URL) crashes when starting a match (you see
some frames, and when the game is going to show players, it crashes) in Wine
1.1.31 and later (also in current git). This was introduced in this commit:
wined3d: Don't reserve clipping constants needlessly.
author Stefan Dösinger <stefan(a)codeweavers.com>
Tue, 6 Oct 2009 18:59:44 +0000 (20:59 +0200)
commit 8a68f418dbea0967003818e5bbac10e5ffc22512
I added the following code right before the new if..else clause in
dlls/wined3d/arb_program_shader.c in current git:
FIXME("clip_limit: gl_info->limits.clipplanes = %u\n",
gl_info->limits.clipplanes);
FIXME("clip_limit: ctx->target_version = %u (ARB = %d)\n", ctx->target_version,
ARB);
FIXME("clip_limit: use_nv_clip(gl_info) = %d, ctx->target_version >= NV2 =
%d\n", use_nv_clip(gl_info), ctx->target_version >= NV2);
unsigned int __mask = ctx->cur_vs_args->boolclip.clipplane_mask;
FIXME("clip_limit: mask = %u\n", __mask);
FIXME("clip_limit: count_bits(mask) = %u\n", count_bits(__mask));
And got those messages right before the crash:
fixme:d3d_shader:shader_generate_arb_declarations clip_limit:
gl_info->limits.clipplanes = 6
fixme:d3d_shader:shader_generate_arb_declarations clip_limit:
ctx->target_version = 0 (ARB = 0)
fixme:d3d_shader:shader_generate_arb_declarations clip_limit:
use_nv_clip(gl_info) = 0, ctx->target_version >= NV2 = 0
fixme:d3d_shader:shader_generate_arb_declarations clip_limit: mask = 0
fixme:d3d_shader:shader_generate_arb_declarations clip_limit: count_bits(mask)
= 0
And by the way I've also tried adding the following code in place of this
if..else clause in the current git:
clip_limit = gl_info->limits.clipplanes;
if(ctx->target_version == ARB) clip_limit = min(clip_limit, 4);
And FIFA doesn't crash then, but I guess it's not the proper way to fix 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=32535
Bug #: 32535
Summary: Microsoft SQL Server Management Studio Express 2008
installer fails due to unimplemented function
msi.dll.MsiQueryFeatureStateExW
Product: Wine
Version: 1.5.20
Platform: x86
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=7593
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
Title says it all; to reproduce:
winetricks dotnet35sp1
Work around bug 30681: extract System.Data.SqlXml.dll from dotnet20sp2
installer, overwrite the existing ones in Microsoft.NET/Framework/v2.0.50727
and assembly/GAC_MSIL
Work around bug 15804: apply patches from the bug report, recompile wine
Run installer, select Installation, select New SQL Server stand-alone(...),
keep pressing Next until you see the 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=15424
Summary: Magic: The Gathering fails to start - 'Exception frame
is not in stack limits'
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Created an attachment (id=16290)
--> (http://bugs.winehq.org/attachment.cgi?id=16290)
warn+all log
The +warn=all log is 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=24719
Summary: [Regression] Tray icon stopped working
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: denisgolovan(a)yandex.ru
Hi
Recently (within last 2 months) something changed in tray icon functionality.
I am testing latest git version under kde3.
Linux distribution is Gentoo. Ebuild used is the standard portage wine-9999.
The problem shows like empty (invisible) application icon in tray.
Mouse cursor does change to "standard" Windows pointer when I put "X Window"
cursor to tray.
But no mouse clicks (both left and right) are handled by application.
--
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=16929
Summary: Shogun Total War (demo and warlord ed.): mouse left-
click problem
Product: Wine
Version: 1.1.12
Platform: PC
URL: http://www.gamershell.com/download_4385.shtml
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daol_p(a)gmx.de
In battle mode, "clicking on terrain" does not work, i.e. left-clicks work for
menus (grouping, formation etc) as well as attacking (left-clicking on enemy
troops), but left-clicks do not work when it comes to giving directions and
rearranging armies (making the game unplayable).
This may or may not be related to Bug 10708 (animated mouse cursors), since in
the demo the icon of the cursor sometimes gets "stuck" with the army symbol
(which may be an animation issue). However this icon issue is not present in
the full game, yet the bug is.
--
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=23632
Summary: Starcraft II quits
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: armageddon_96(a)mail.ru
Starcraft II sometimes quits without crash window on map loading.
--
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=31126
Bug #: 31126
Summary: Multicore machines should be configured for the Wine
testbot
Product: WineHQ.org
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Classification: Unclassified
Multicore machines should be configured for the Wine testbot.
I suggest one multicore VM for every Windows version since Win XP.
MfG
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=33394
Bug #: 33394
Summary: tokoku12345 is a SPAMMER
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Please, delete all his comments.
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7133#Comment-8…
--
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=30335
Bug #: 30335
Summary: PAF5 help viewer (Gecko) print produces blank page(s).
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmriches(a)ieee.org
Classification: Unclassified
Symptom is a regression between 1.4 and 1.5.0. Application is downloadable,
AppDB page here: http://appdb.winehq.org/appview.php?iVersionId=1706
To install application, check the box to install the "International Unicode
Font". You can uncheck the 'View Getting Started Document Now' box to avoid an
error dialog that the installer can't find WORDPAD.
To run the application, the first time or two, click on 'New' to create a new
file, give the new file any name you wish, and then click on 'cancel' on the
next two dialogs. Once past creating a new file, click on the yellow question
mark in the menu bar on the top. When the help viewer window comes up, click
on 'Print'. Click on the 'Print' or 'Go' button when the print confirmation
dialog comes up.
With 1.4, I get a page that shows the help content. With 1.5.0 and 1.5.1, I
get a blank sheet of paper. I did a git bisect run. I had to skip a few
commits due to "Application has encountered ... needs to close." Here is the
final bisect results:
There are only 'skip'ped commits left to test.
The first bad commit could be any of:
41fb856961449fdb303ec9c1ffa7d6073ff86254
1726427113b141535c2bb9e93879e409b7d00c37
84ed86c4311dcf00b839ccef2b3a613a2b7ecc5c
23c6fddea3251a870e5bdfc2af174f39a3b00493
We cannot bisect more!
--
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=33250
Bug #: 33250
Summary: unimplemented function
atl80.dll.AtlIPersistPropertyBag_Load (QQ
International 1.6 crashes)
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. download from http://dl_dir.qq.com/qqfile/qq/QQ2012/QQIntl1.6.exe
1.
compile wine with -O0 for Bug 24768
winetricks ie7 for Bug 29638
winetricks riche20 for Bug 29636
2. login, and open a chat box
3. click on "Message History", and QQ crashed.
log :
--snip--
wine: Call from 0x7b83d153 to unimplemented function
atl80.dll.AtlIPersistPropertyBag_Load, aborting
--snip
--
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=33635
Bug #: 33635
Summary: wine cmd executes text inside comments as commands.
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loentar(a)gmail.com
Classification: Unclassified
Created attachment 44521
--> http://bugs.winehq.org/attachment.cgi?id=44521
script to reproduce bug
When command script has "::" style comments and symbol "|" appear inside that
comment wine cmd executes that text as commands (think it recognizes it as
generic commands with pipe redirection).
For example if you create command script like that and start it you will see
empty file "cmd_output", error "can't find another test" and started notepad:
:: some text that is ignored | dir >cmd_output | another test | notepad
Note when I replace "::" to rem, this error goes out.
--
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=33253
Bug #: 33253
Summary: Command line: Incorrect behavior of "for" command
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: guy.roussin(a)teledetection.fr
Classification: Unclassified
Hi,
with wine 1.5.26 :
C:\OSGeo4W>for %f in (etc/ini/*.bat) do echo %f
gdal.bat
C:\OSGeo4W>for %f in (etc/ini/gdal.bat) do echo %f
etc/ini/gdal.bat
with windows XP :
C:\OSGeo4W>for %f in (etc\ini\*.bat) do echo %f
C:\OSGeo4W>echo etc\ini\gdal.bat
etc\ini\gdal.bat
C:\OSGeo4W>for %f in (etc\ini\gdal.bat) do echo %f
C:\OSGeo4W>echo etc\ini\gdal.bat
etc\ini\gdal.bat
Thank you,
Guy
--
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=22026
Summary: Symantec LiveUpdate 3.1 refuses to install in NT mode
Product: Wine
Version: 1.1.40
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=26783)
--> (http://bugs.winehq.org/attachment.cgi?id=26783)
Wine 1.1.40 console output
Symantec LiveUpdate 3.1 refuses to install in NT mode reporting "User is
missing adequate access rights to the Window's registry."
Works fine in Win98 mode.
This specific version does not appear to be available for download but the
license does allow distribution, so I can upload it if needed. May affect
other versions but I haven't got that far yet.
--
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=21761
Summary: Braid demo installer fails to launch Explorer on the
start menu directory it created
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
When you install the demo version of Braid
( http://www.braid-game.com/ points to
http://www.playgreenhouse.com/game/NNONE-000001-01/
which has a free download link,
http://www.playgreenhouse.com/php/public/tracking/downloads.php?sku=NNONE-0…
The sha1sum is
7ea08ddbf5f2fb2f38057d930389b5af7d737e2c braid_windows_r3.exe )
the installer works, but at the end, pops up an error
dialog saying that ShellExecuteEx failed. On Windows, at that point,
Explorer opens to the Start Menu directory holding the shortcuts for
the 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=19268
Summary: using Radmin: wine stalls if movements/animations in
remote screen
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: noragen(a)gmx.net
using Radmin: wine stalls if movements/animations in remote screen
wine stalls, if there are any animations like movie or gif-animations or sth.
like that on remote screen in full screen control mode.
--
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=33548
Bug #: 33548
Summary: Civilization IV crashes while starting
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Classification: Unclassified
Created attachment 44404
--> http://bugs.winehq.org/attachment.cgi?id=44404
+msxml log
This is with Civilization IV Steam version and wine-1.5.29-147-g2d89a14. Using
winetricks msxml3 worksaround the crash. I'm attaching a +msxml log of the
crash.
Using Ubuntu 13.04 64 bits.
--
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=31669
Bug #: 31669
Summary: Not open internal editor of MPLAB 8.40.00.00
Product: Wine
Version: 1.5.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nestorm_des(a)hotmail.com
Classification: Unclassified
I'm a testing gentoo user.
I downgrade to 1.5.11 and MPLAB 8.84.00.00 again functional.
What you do not walk the MPLAB is the internal editor, giving this message:
Unable to create the display plug-in 5VEditor.DisassemblyWnd.1
# nano -w /etc/portage/package.mask
=app-emulation/wine-1.5.12
# emerge -av wine
These are the packages that would be merged, in order:
Calculating dependencies... done!
[ebuild UD ] app-emulation/wine-1.5.11 [1.5.12] USE="X alsa cups fontconfig
gecko gnutls gphoto2 jpeg lcms mp3 ncurses nls opengl oss perl png scanner ssl
threads truetype v4l win32 win64 xinerama xml -capi -custom-cflags -gsm
(-gstreamer) -hardened -ldap -mono -odbc -openal -opencl -osmesa -pulseaudio
-samba (-selinux) -test -udisks -xcomposite" 20,168 kB
Total: 1 package (1 downgrade), Size of downloads: 20,168 kB
Would you like to merge these packages? [Yes/No] y
--
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=33654
Bug #: 33654
Summary: MSYS bash.exe redirection fails for ctest.exe (one of
the CMake executables). Regression of recent wine-git
from 1.5.25
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: irwin(a)beluga.phys.uvic.ca
Classification: Unclassified
Created attachment 44546
--> http://bugs.winehq.org/attachment.cgi?id=44546
Source code for "DoNotInheritStdPipes" redirection test
Under MSYS bash.exe, redirection of the ctest.exe command produces an empty
file for wine-1.5.31 but not for wine-1.5.19 (very heavily tested for my build
needs) or wine-1.5.25 (lightly tested for this specific problem). For example,
in 1.5.31, but not 1.5.25 (or 1.5.19),
ctest.exe --version
gives the correct result ("ctest version 2.8.10.2") to the console created by
wineconsole, but
ctest.exe --version > ctest_version.out
produces an empty file.
"git bisect" shows the first wine commit to cause the problem was the first one
after 1.5.25 (f565e4a3157d38b50a25fc3b90014474b59fceba, msvcrt: Don't duplicate
standard handles during initialization.) Subsequently there was a style change
(8e5bebe26253f2725141a35f23b6f2e10fc7694d, msvcrt: Rename msvcrt_alloc_fd_from
to msvcrt_set_fd.) to the affected file, dlls/msvcrt/file.c. Both these
commits were by Piotr Caban <piotr(a)codeweavers.com>. If I revert
8e5bebe26253f2725141a35f23b6f2e10fc7694d and
f565e4a3157d38b50a25fc3b90014474b59fceba for wine-1.5.31 (note the reversed
patches apply cleanly), this fixes the issue.
To save wine developers having to dig around in the ctest code source from
CMake to figure out what Windows calls are being used to trigger this wine
regression, I attach standalone code for a simple test case which follows what
is done in ctest to handle stdout. When this code is compiled with MinGW it
demonstrates the same redirection issue you get with ctest. The only
difference from a standard C++ "Hello World" programme in this test code is the
call to DoNotInheritStdPipes which I just copied from the ctest source code. I
don't understand DoNotInheritStdPipes, but one of the commit messages
associated with it when it was implemented in 2007 by the CMake developers had
the title "BUG: fix problem with stdout and stderr not showing up in ms dos
shells". Anyhow, since 2007 DoNotInheritStdPipes has apparently been used for
executing ctest.exe on Microsoft Windows with no redirection issues on that
platform and that implies commit f565e4... causes a run-time difference between
the Wine and Microsoft versions of Windows. But I have no access to Microsoft
Windows myself so that implication should be confirmed by compiling the
attached source code on Microsoft Windows and showing that redirection works
fine with it under MSYS bash.exe for that platform but not for wine-1.5.31
unless the two above patches (one just a style one) are reverted.
--
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=23391
Summary: Restore after minimize button does not work
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peter.talken(a)telia.com
If I use the "minimize button" the application disappears from screen and task
bar. I can see it with Alt-Tab, but get back to it.
If I reintroduce the patch
http://bugs.winehq.org/attachment.cgi?id=28259
It works again. However, I have to click twice on the task bar twice to see the
application. Otherwise the buttons up to the right (minimize, adjust, maximize)
seems to work OK.
When I double click on the task bar the application does not come back to the
previous maximal size, but to a reduced, but still usable, 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=33613
Bug #: 33613
Summary: VB6 Application CMDcenter fails with "Run-time error
'23': Type mismatch"
Product: Wine
Version: 1.5.30
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tonybcrawford(a)gmail.com
Classification: Unclassified
After upgrading from Wine 1.5.29 to Wine 1.5.30 my VB6 CMDcenter application
fails with: "Run-time error '23': Type mismatch"
This is related to an xml portion of code and after adding some debug output it
appears as though the ElementNode.childNodes.Length is being incorrectly
determined!
NB: This code worked correctly in previous versions of Wine and is only a
problem with the release I installed today.
--
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=20175
Summary: ICSD NIST database demo crashes with multiple oleaut32
errors
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.fiz-karlsruhe.de/icsd_products.html?&L=pzzx
fsodpt
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: acheron(a)front.ru
Created an attachment (id=23781)
--> (http://bugs.winehq.org/attachment.cgi?id=23781)
Terminal output
ICSD NIST database demo (ftp://ftp.fiz-karlsruhe.de/pub/csd/demo/icsd_demo.zip)
installs fine, but crashes with unhandled page fault, when it tries to display
the splash screen. Replacing WINE oleaut32.dll with the one from the program
distribution (file date 26-Jul-2002) solves those problems.
--
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=22079
Summary: Right click menu doesn't appear in one section of
ImgBurn's disc layout editor
Product: Wine
Version: 1.1.41
Platform: x86-64
URL: http://www.imgburn.com/index.php?act=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=26907)
--> (http://bugs.winehq.org/attachment.cgi?id=26907)
Terminal output
In ImgBurn's disc layout editor window, right-clicking an item should bring up
a menu with rename, properties, and other options. However, nothing happens
when doing this in the main disc layout view, on the bottom-right (at least
until you try to move the cursor - then you'll run into another bug).
Using winetricks comctl32 makes the menu appear as it should. My log is from
ImgBurn 2.5.0.0, but 2.5.1.0 behaves the same way.
--
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=25170
Summary: application bdgest crash
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gurvan.quenet(a)gmail.com
Created an attachment (id=31930)
--> (http://bugs.winehq.org/attachment.cgi?id=31930)
Crash log
I run an windev application name bdgest. This application crash with an error
in gdi32/dib.c
See the attachment.
Thank's for help me to solve this 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=21975
Summary: QuarkXPress Passport 7.0r0 - Regression: didn't show
any content
Product: Wine
Version: 1.1.37
Platform: x86
URL: http://www.quark.com (Version 8)
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: newsletter(a)Schiermeier-Software.de
Created an attachment (id=26683)
--> (http://bugs.winehq.org/attachment.cgi?id=26683)
Testdatafile QuarkXPress Passport 7.0r0
Regression since wine-v1.1.38 up to now (v1.1.40) - in wine-v1.1.37 was
working:
result of my regression test:
---
aa6c4d4e92cdb944e53a0c36819621a6875f1e61 is the first bad commit
commit aa6c4d4e92cdb944e53a0c36819621a6875f1e61
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Sat Jan 23 14:15:43 2010 +0100
configure: Add specific creation macros for the various types of makefiles.
:100644 100644 ce3941e561ec8f3cde50ca78bf170eb1babb05e6
b30e41e0b5c3af75186553099a0053025ca95f9a M aclocal.m4
:100644 100644 01cf3a78f71cf0d4762dae97e30efa57d9068ea0
7d5a29a821c2d5a4d9855274718df77ed12085f1 M configure.ac
:040000 040000 d1bd1e023c24afddd345582dd59cb421b57397da
795ce110d7a0c2500740bb09508ee2f5c4f0fb02 M tools
---
(I don't trust realy in this result - so I include some screenshots and some
testdatas.)
Check attachment: this file was working with all features of Quark in v1.1.37.
--
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=27720
Summary: World of Goo demo rendering problems with builtin
d3dx9_38
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Now that bug 22236 is fixed, wog runs great with just native msvcp80...
except that without native d3dx9_38, there are two problems
right after you enter your name and click the first level start button
(with mouseover text "The goo-filled hills"):
first, the word 'Summer' should appear on a totally black screen.
but on Wine it appears on top of the previous screen.
second, the next screen (with a button whose mouseover text is 'Going Up'),
should have a light blue background with black letters "Chapter 1: The Goo
Filled Hills", but on Wine, the background 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=30174
Bug #: 30174
Summary: winUAE crashes when trying to create emulation window
Product: Wine
Version: 1.4-rc6
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kurtjaeke(a)gmx.de
Classification: Unclassified
Created attachment 39377
--> http://bugs.winehq.org/attachment.cgi?id=39377
Snippet of WINEDEBUG=+all log.
When using winUAE, launching a game does not work, because it crashes when
opening the "emulation" window.
See attached log snippet from WINEDEBUG=+all for more information.
winUAE used to work a year ago (in the devel branch).
--
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=17571
Summary: Williams Pinball Classic crashes on launch
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: motleyjester13(a)yahoo.com
I've finally figured out how to shoehorn Williams Pinball Classics into Wine,
getting by an annoying Ikernel.exe install issue. Now that it's installed and
I have acquired the only patch (a replacement executable) available for the
game (which fixes it's demand for a 1280x1024x8 video mode which this laptop
can't use), it consistently crashes upon launch.
I've attached the basic output from the crash, if further information is
needed, just lemme know. I'm willing to follow whatever steps are necessary to
get this excellent pinball simulator working with 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=23450
Summary: LTSPICE/SWCAD3 Regression: Input boxes don't take any
input
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bon(a)elektron.ikp.physik.tu-darmstadt.de
Install the program, start it,
File->New Schematic
Add Resistor, place it in the schematic.
Right click on part, set value in the input box, close input box
Right click on part again, try to set different value, the value doesn't
change, and the input box doesn't have focus (color change on window fram)
Change to window outside wine, the change back to the input box, now input box
gets focus and value can be changes 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=19917
Summary: ABBYY Lingvo x3 English Edition: crash when installing
the application
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ihar.hrachyshka(a)gmail.com
Created an attachment (id=23384)
--> (http://bugs.winehq.org/attachment.cgi?id=23384)
General wine console output with no WINEDEBUG specified
Installation crashes right after installer shows 'Installing new services'.
Then the window with the following message is shown:
The program msiexec.exe has encountered a serious problem and needs to close.
We are sorry for the inconvenience.
This can be caused by a problem in the program or a deficiency in Wine. You may
want to check http://appdb.winehq.org for tips about running this application.
If this problem is not present under Windows and has not been reported yet, you
can report it at http://bugs.winehq.org.
When I click "Close" button in the message window then hanged installer window
is closed, and I'm returned to general welcome screen of ABBYY installation
interface.
You can download 15-day demo version of the program from:
http://www.abbyy.com/DLCenter/downloadcentermanager.aspx?file=/lingvox3/ABB…
My Wine is build with Gentoo wine-1.1.28 ebuild copied to wine-1.1.29.ebuild
location, with the following USE flags: X alsa gecko jpeg ncurses opengl png
ssl -cups (-dbus) -esd (-gnutls) (-hal) -jack -lcms (-ldap) (-nas) -oss -samba
(-scanner) -test -win64 -xcomposite -xinerama -xml
I don't use any Windows files for Wine.
My system is: Gentoo Linux 2008.0, Linux 2.6.30 (gentoo-sources), amd64 (stable
branch).
booxter@localhost ~ $ wine --version
wine-1.1.29
booxter@localhost ~ $ gcc -v
Using built-in specs.
Target: x86_64-pc-linux-gnu
Configured with:
/var/tmp/portage/sys-devel/gcc-4.3.2-r3/work/gcc-4.3.2/configure --prefix=/usr
--bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/4.3.2
--includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.2/include
--datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.3.2
--mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.3.2/man
--infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.3.2/info
--with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.2/include/g++-v4
--host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --disable-altivec
--disable-fixed-point --enable-nls --without-included-gettext
--with-system-zlib --disable-checking --disable-werror --enable-secureplt
--enable-multilib --enable-libmudflap --disable-libssp --enable-libgomp
--disable-libgcj --enable-languages=c,c++,treelang,fortran --enable-shared
--enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
--with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo 4.3.2-r3 p1.6,
pie-10.1.5'
Thread model: posix
gcc version 4.3.2 (Gentoo 4.3.2-r3 p1.6, pie-10.1.5)
--
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=33638
Bug #: 33638
Summary: wine cmd wrong extracting of command line arguments
while using "%~1"
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loentar(a)gmail.com
Classification: Unclassified
1. wine cmd extracts "%~1" as is when no argument passed to command file, but
must extract as empty string.
2. "%~1" must remove any quotation marks from arguments, but wine cmd leave it
unchanged.
example: test.cmd
----
echo "%~1"
----
start under winxp:
----
>test.cmd 1
"1"
>test.cmd "1"
"1"
>test.cmd
""
----
start under wine cmd:
----
>test.cmd 1
"1"
>test.cmd "1"
""1""
>test.cmd
"%~1"
----
for reference see this topic:
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en…
--
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=12090
Summary: A good gnutella client based on limewire and
acquisitionx
Product: Wine
Version: 0.9.4.
Platform: PC-x86-64
URL: http://sourceforge.jp/projects/cabos/files/
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rao.murlidhar(a)yahoo.com
Created an attachment (id=11468)
--> (http://bugs.winehq.org/attachment.cgi?id=11468)
error log.
When the application is started , an error comes up saying that java cannot be
loaded.
--
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=23521
Summary: 4D Server 6.5.4 crash :
err:service:service_control_dispatcher
Product: Wine
Version: 1.2-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastien.ramage(a)gmail.com
4D server 6.5.4 just crash after few seconds saying:
err:service:service_control_dispatcher failed to create control pipe error =
676
4D Server can be download here for test :
http://www.janin-tools.com/download/wine/4d_server_6.5.4.tar.gz
--
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=33639
Bug #: 33639
Summary: wine cmd wrong assignment while using set "var=value"
and have spaces after
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loentar(a)gmail.com
Classification: Unclassified
Wine cmd wrongly assign space chars into variable name when using `set
"var=value"` form. Spaces after `value"` must not appear in `var`.
This is important thing, because when variable will be inserted into
conditional expression it may failed (I keep ^M char to see spaces). For
example this lines is failed under wine cmd but works under winxp:
----
set "var=value" ^M
if "x%var%"=="xvalue" (echo ok) else (echo fail)^M
----
some test (I keep ^M char to see spaces):
-- start of test.cmd: --
@echo off^M
set var=value ^M
:: space symbol must appear in `var`^M
echo "%var%"^M
^M
set "var=value" ^M
:: space symbol must NOT appear in `var`^M
echo "%var%"^M
^M
-- end of test.cmd: --
start under winxp:
----
>test.cmd
"value "
"value"
----
start under wine cmd:
----
>test.cmd
"value "
"value "
----
--
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=32312
Bug #: 32312
Summary: SNES9x crashes when non-48kHz DirectSound audio output
is selected
Product: Wine
Version: 1.5.18
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: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
Regression SHA1: 605cd62c7dc84ef86cbd260139c6875cd0ed8d60
Created attachment 42650
--> http://bugs.winehq.org/attachment.cgi?id=42650
dsound-related crash backtrace
I'm testing with SNES9x 1.53, Wine 1.5.18, Lubuntu 11.10 x86-64, Nvidia driver
304.64.
I get a crash on changing the sound driver setting. To reproduce:
- Download and unzip the snes9x archive.
- Run snes9x.exe. You'll get a dialog saying "Unable to initialize XAudio2"
since Wine doesn't support that. Click OK.
- Select Sound->Settings..., change Sound Driver to Snes9x DirectSound and
click OK. The program crashes. Since it saved the DirectSound setting to
snes9x.conf, you get an immediate crash if you run snes9x.exe again without
deleting or editing snes9x.conf.
The crash seems to be related to the sample rate. The default playback rate is
32 KHz. For me, if I change Sound Driver to DirectSound and Playback Rate to 48
KHz, there is no crash. I can load a SNES ROM and play it with (albeit crackly)
sound. The crash happens when selecting any other playback rate.
(There is no graphical output in the default Direct3D mode which I'll hopefully
file another bug for. You can select Video->Display Configuration... and change
Output Method to DirectDraw to work around that.)
This looks like a regression. A regression test gave this:
605cd62c7dc84ef86cbd260139c6875cd0ed8d60 is the first bad commit
commit 605cd62c7dc84ef86cbd260139c6875cd0ed8d60
Author: Maarten Lankhorst <maarten.lankhorst(a)canonical.com>
Date: Fri Nov 16 20:35:51 2012 +0100
dsound: Create a primary_pwfx separately from pwfx.
:040000 040000 d3b302ce4433475153fde9b9e86f656e64487ea8
d33035cd0a9fc793a629ae425621ee6daff67d63 M 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=19872
Summary: Dragon NaturallySpeaking 10 Standard - Dictation Box
causes program freeze
Product: Wine
Version: 1.1.28
Platform: PC
URL: http://nuance.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
This is probably a bug similar to bug 15534, which has been fixed.
So I suspect a GDI handle leak or some type of virtual memory problem. (Thanks
Alexander.)
To reproduce:
I use Dragon NaturallySpeaking heavily, opening the DictationBox, dictating
text, pasting into Notepad.
All is well for quite a while.
Suddenly the program slows down. When I try to paste text from DictationBox
using the "transfer" command, the text grays out to show it is being selected,
but the text does not drop and DictationBox does not close, as it should.
I can paste the text using CTL-V, but the DictationBox stays open with the text
in it, and the program has frozen.
Problem -- since the program does not actually crash, does anyone have any
suggestions on a winedbg command?
Will try first:
WINEDEBUG=warn+gdi+relay
--
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=33685
Bug #: 33685
Summary: Wine doesn't detect Mobility Radeon HD 4200 Series
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kyl416(a)aol.com
Classification: Unclassified
Wine doesn't detect my Mobility Radeon HD 4200 series graphics card. It has the
side effect on some games like CounterStrike Global Offensive which has a
specific list of cards.
I attached a patch of what I beleive will fix it.
I'm not too familiar with the code so the definitions of the card under
select_card_amd_binary and select_card_amd_mesa might belong in another
section.
--
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=33669
Bug #: 33669
Summary: Citavi 3.4 installer fails on startup
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
Created attachment 44569
--> http://bugs.winehq.org/attachment.cgi?id=44569
+msi trace
The Citavi 3.4 installer fails on startup with what seems to be an msi error:
$ ./wine Citavi3Setup.exe
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:storage:create_storagefile Storage share mode not implemented.
err:msi:ITERATE_Actions Execution halted, action L"InstallExecute" returned
1627
--
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=21371
Summary: No text can be entered in HTML-Kit's visual mode
(Prototype Pad)
Product: Wine
Version: 1.1.36
Platform: x86-64
URL: http://www.chami.com/html-kit/download/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=25734)
--> (http://bugs.winehq.org/attachment.cgi?id=25734)
Terminal output
HTML-Kit build 292 includes a simple WYSIWYG editor, called graphical/visual
mode or Prototype Pad. This consists of a toolbar with various text tools, and
a text area for typing. In Wine, this mode *looks* normal, but no text can be
entered in the text field.
Component may be mshtml. The about button in the editing window says "the
Prototype Pad is a tool based on the MSHTML component found on your
computer"...
winetricks ie6 fixes the issue.
Terminal output is from starting the program and entering graphical/visual
mode. (Winetricks was used to install wine-gecko.)
--
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=21524
Summary: Mouse cursor is visible when Geiss goes fullscreen,
but should be invisible
Product: Wine
Version: 1.1.37
Platform: x86-64
URL: http://www.geisswerks.com/geiss/
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandru.balut(a)gmail.com
1. Install foobar2000: http://www.foobar2000.org/
2. Install Geiss, a visualisation plugin for Winamp:
http://www.geisswerks.com/geiss/
3. Install Shpeck, a plugin for foobar2000 which allows it to use with Winamp's
visualisation plugins: http://www.foobar2000.org/components/view/foo_vis_shpeck
I'm using:
foobar2000 1.0
Geiss 4.29
Shpeck 0.3.7
In foobar2000, Preferences / General / Keyboard Shortcuts, I set up
Ctrl-Shift-K with the action: View / Visualizations / Shpeck - Start 'Geiss for
Winamp / Geiss for Winamp'. Next, I start an mp3 file, move the mouse cursor to
the top-left corner of the screen and press Ctrl-Shift-K. The Geiss plugin
starts successfully. The problem is that the mouse cursor remains visible, even
though Geiss is trying to draw on the whole screen. Moving the mouse has no
effect on the cursor at this point, it remains in the same position. The mouse
cursor should become invisible when the plugin is started.
Details: My normal screen resolution is X/Y. I set Geiss to use a lower screen
resolution, (X/2)/(Y/2). If I start Geiss when the mouse cursor is outside the
top-left quarter of the screen, the mouse cursor does not show up in Geiss.
The same happens when starting Geiss from Winamp.
--
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=22571
Summary: Softimage XSI Mod Tool fails to install
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://dw.com.com/redir?edId=3&siteId=4&oId=3001-18541
_4-10343972&ontId=18541_4&spi=9237653991b059b82dfac9db
128753d7&lop=txt&tag=idl2&pid=10357185&mfgId=6254383&m
erId=6254383&pguid=SkY19goPjAUAAEblLPEAAABZ&destUrl=ht
tp%3A%2F%2Fsoftware-files-l.cnet.com%2Fs%2Fsoftware%2F
10%2F35%2F71%2F85%2Fsetup_xsidemo_4.2_mswin32.exe%3Fe%
3D1272943778%26h%3D92e1c4470120d2dc710902f568cd5599%26
lop%3Dlink%26ptype%3D1901%26ontid%3D18541%26siteId%3D4
%26edId%3D3%26spi%3D9237653991b059b82dfac9db128753d7%2
6pid%3D10357185%26psid%3D10343972%26fileName%3Dsetup_x
sidemo_4.2_mswin32.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=27695)
--> (http://bugs.winehq.org/attachment.cgi?id=27695)
Terminal log from install
Large download (~200MB)
Installer fails, fresh wineprefix etc.
Terminal 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=20491
Summary: VarDateFromStr() can`t parse "26.10.2009 09:31"
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sk_news(a)mail.ru
Created an attachment (id=24393)
--> (http://bugs.winehq.org/attachment.cgi?id=24393)
Demo application (+ src, Delphi 2010)
Wine: VAR_TYPEMISMATCH == VarDateFromStr("26.10.2009 09:31",
VAR_LOCALE_USER_DEFAULT, 0, Result)
Wine+WineTricks/DCOM98: VAR_OK == VarDateFromStr("26.10.2009 09:31",
VAR_LOCALE_USER_DEFAULT, 0, Result)
--
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=25959
Summary: The Next Big Thing (demo): game mostly black without
native d3dx9_36
Product: Wine
Version: 1.3.12
Platform: x86
URL: http://www.gamershell.com/download_68788.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Install as normal, decline directx9 installation. Start the game, choose '80'
on the menu. Most of the screen is black. Goes away with native d3x9_36.
fixme:d3dx:D3DXCreateFontIndirectW (0x219be0, 0x32bf5c8, 0x1ae1e89): stub
fixme:d3dx:D3DXGetImageInfoFromFileInMemory (0x7a7fe020, 1828101, 0x32bf6b8):
partially implemented
warn:wincodecs:ImagingFactory_CreateDecoderFromStream failed to load from a
stream
warn:wincodecs:ImagingFactory_CreateDecoderFromStream first 4 bytes of
stream=ff d8 ff e1
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
warn:wincodecs:ImagingFactory_CreateDecoderFromStream failed to load from a
stream
warn:wincodecs:ImagingFactory_CreateDecoderFromStream first 4 bytes of
stream=44 44 53 20
fixme:d3dx:D3DXGetImageInfoFromFileInMemory Invalid or unsupported image file
--
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=33680
Bug #: 33680
Summary: Unhandled exception: page fault on read access to
0xfffffff0 in 32-bit code (0x00404ec0).
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roosterdsuite(a)gmail.com
Classification: Unclassified
Created attachment 44585
--> http://bugs.winehq.org/attachment.cgi?id=44585
Serious Error encountered MSsetupEX.exe
When i am trying to install Samsung Kies through Wine, MSsetupEX.exe has
encoundered severe problem message is showing.
--
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=25271
Summary: RootsMagic4: Error logging to New.FamilySearch.Org
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: belhmar(a)videotron.ca
Created an attachment (id=32098)
--> (http://bugs.winehq.org/attachment.cgi?id=32098)
Error when login to New.FamilySearch.org
The program by itself seems to work fine.
One of the features of RootsMagic (4.0) it to be able to exchange data with
New.FamilySearch.org (an LDS world wide database). The first time a small icon
(gray tree) is selected, a login window appears asking for Name/Password.
Then the search and results of the search is displayed.
With Wine (1.2 and 1.3beta) it brings up a message saying: 'The Local Security
Authority cannot be contacted'. (see 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=29535
Bug #: 29535
Summary: winhelp: Horizontal scrollbar appears when it
shouldn't
Product: Wine
Version: 1.3.36
Platform: x86-64
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
When you open a help file in Wine winhlp32, the window initially has a
horizontal scrollbar at the bottom. That shouldn't be there, since text is
wrapped if it would extend past the right edge.
The scrollbar remains if you resize the window, but vanishes when you click on
a link or one of the scrollbar buttons.
--
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=33189
Bug #: 33189
Summary: wineconsole can't launch batch filenames with
parenthesis
Product: Wine
Version: 1.5.24
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeromepoulin(a)gmail.com
Classification: Unclassified
If you launch a batch file which has a parenthesis in its filename, you get an
infinite loop.
I'm currently using ArchLinux.
=== How to reproduce ===
mkdir -p "$HOME/a"
echo -n -e "@echo off\r\nnotepad.exe\r\n" > "$HOME/a/test(123).bat"
wineconsole "$HOME/a/test(123).bat"
I'm also using Ubuntu with wine 1.4.1 which does not have this behaviour, they
may have fixed it as I had it before Ubuntu Raring, on Precise, maybe they have
a patch already.
--
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=13903
Summary: Realplayer 11: Can't accept license terms
Product: Wine
Version: 1.0-rc4
Platform: PC
URL: http://germany.real.com/player/win/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nowic(a)wenner.ch
When installing Realplayer 11 I can't accept the license terms. Neither by
clicking, tabbing+enter or pressing the hotkey.
The output consists of the following line over and over again:
fixme:shdocvw:InPlaceActiveObject_TranslateAccelerator (0x132788)->(0x33fe00)
Wine version: 1.0-rc5 (was not yet available in bugzilla)
--
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=23268
Summary: Cabelas Big Game Hunter 3 Installer - graphics
corruption
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: ead1234(a)hotmail.com
Created an attachment (id=28988)
--> (http://bugs.winehq.org/attachment.cgi?id=28988)
graphics corruption
Sometime between version 1.0 and 1.2-rc4 Cabelas Big Game Hunter III installer
has developed graphics corruption with the text duplicated.
I will need to do a regression test to determine where this manifested itself.
--
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=20031
Summary: XARA XTREME 5 PRO crashs when selecting the <TEXT
TOOL>
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.xara.com/us/downloads/xtreme/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cooksail(a)gmail.com
Application concerned: XARA EXTREM 5 PRO,
crash of the application when selecting the <TEXT 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=23963
Summary: Nullsoft Install System v2.37 renders byte order mark
in EULA screen
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kitmaxter(a)gmail.com
Created an attachment (id=30091)
--> (http://bugs.winehq.org/attachment.cgi?id=30091)
Screenshot from wine
NSIS v2.37, which is used in re-pack of Artificial Girl 3, which can be
downloaded from http://www.hongfire.com/forum/showthread.php?t=86353 (AppDB
info) renders BOM in EULA 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=30295
Bug #: 30295
Summary: iexplore fails to play intro video for Firefox
personas
Product: Wine
Version: 1.5.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: jscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
CC: jacek(a)codeweavers.com
Classification: Unclassified
Created attachment 39591
--> http://bugs.winehq.org/attachment.cgi?id=39591
Standard terminal output
wine iexplore http://www.getpersonas.com
Clicking "watch our intro video" used to result in an HTML5 video player
popping up, but now it just makes the page jump down a bit. Reverting
6c6744f80066f0aa46939a2d4c0af9c34f932e8b (
mshtml: Use jscript.dll for JavaScript for all zones except untrusted) makes it
work 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=25160
Summary: Windowcontent disapears if in background
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Manuel.Bihl(a)gmx.de
Black Prophecy
(http://appdb.winehq.org/objectManager.php?sClass=application&iId=12361) window
content stops beeing rendered on the screen when some other window is on top of
it.
The content is still clickable and operates as it should, you just see nothing
rendered.
The fragments of the other window (which you brought in foreground) remain on
the screen. My mouse-pointer does not leave those fragments.
It doesn't happen on other applications which I have tested.
I've tryed following "programs" to produce the error:
guake (console)
switching the desktop
openbox-alt-rightclick-menu on the application
The first two nearly always triggered this behaviour, the right-click-menu
needed a few draws (either opened multiple time, or multiple-submenues opened)
before it happens.
Minimizing the game worked! But I can't guarantee it not beeing a coincidence.
If I minimize and switch desktop, it still crashes. Doing anything on my
secound screen, while the game is on screen 1 doesn't have any effect.
The issue happens on fullscreen-game inside a desktop-wine, in fullscreen-wine
(no desktop) and both with windowed game as well. Graphic-effects ingame don't
matter neither.
When the game is openbeta I can possibly give you the client (since you don't
need to have a account for the issue) but currently I've signed an agreement I
won't share anything (because it's still a: closed beta).
--
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=23629
Summary: FIFA Online 3 Beta: Stuttering framerate during normal
gameplay
Product: Wine
Version: unspecified
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
Initially I thought the game was rendering properly when playing through the
tutorial and in comparing it to performance in Windows; however, after playing
through a full single-player match, redrawing of the screen seems very choppy.
When a player is running down the field very quickly, the redraw rate does not
seem to be adequate.
This is an open beta which you can play using your free EA Online account. The
game is downloadable from:
http://fifa-online.easports.com/web/beta/welcome
--
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=33511
Bug #: 33511
Summary: Performance regression in Trackmania Nations on
Geforce 7 GPUs
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan(a)codeweavers.com
Classification: Unclassified
Between Wine 1.5.28 and Wine-1.5.28-gb93e61a, Trackmania Nations slowed down
from ~56 to ~32 fps. The regression has been spotted by my automated
performance tests:
http://openbenchmarking.org/result/1305025-UT-WINE1529609&track_view=40 .
This bug is mostly a reminder for myself or any other volunteer to bisect this
problem.
A smaller drop can also be seen in World in Conflict on the same machine. The
r300g and r600g test boxes are unaffected.
--
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=16668
Summary: Commandos 3: sniper scope incorrectly rendered
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://games.softpedia.com/get/Games-Demo/Commandos-
Destination-Berlin-final-demo.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pawel.nadolski(a)gmail.com
Created an attachment (id=18292)
--> (http://bugs.winehq.org/attachment.cgi?id=18292)
screenshot of sniper scope issues
Sniper scope in Commandos 3 is incorrectly rendered (see attached screenshot).
This can be reproduced on all versions of wine, both in full version of the
game and the demo (training mission).
Example of correct rendering:
http://www.gamershell.com/static/screenshots/2760/43392_full.jpg
--
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=33280
Bug #: 33280
Summary: wine-1.5.26 and Skype 6
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wul(a)inbox.lv
Classification: Unclassified
elen@home:~/.wine/drive_c/Program Files/Skype/Phone$ wine ./Skype.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation 0x110000 1 (nil) 0
fixme:ole:CoInitializeSecurity (0x464e10,-1,(nil),(nil),6,2,(nil),12352,(nil))
- stub!
fixme:advapi:RegisterEventSourceW ((null),L"SkypeUpdate"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0004,0x0001,0x00000064,(nil),0x0000,0x00000000,(nil),(nil)): stub
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
fixme:ole:CoResumeClassObjects stub
err:ole:TLB_ReadTypeLib Loading of typelib L"uc.tlb" failed with error 2
And open windows: Error Runtime error 217 at 00543A01
Please help. What's 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=30859
Bug #: 30859
Summary: After upgrade Wine is now inoperable. Cannot be
reinstalled.
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mr2131(a)cebridge.net
Classification: Unclassified
With the latest beta Wine 1.5, my wine program loader is now inoperable. I have
been unable to reinstall the last stable version of wine successfully. None of
my programs that ran on Wine will now open and the program loader keeps telling
me that it is waiting to install. When I try to launch Steam, I get a little
window that says there is an internal 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=23046
Summary: Quicken 2009 help / support page garbled
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mgc0424(a)shaw.ca
Created an attachment (id=28594)
--> (http://bugs.winehq.org/attachment.cgi?id=28594)
Quicken help / support pop-up page with garbled info
Running Ubuntu v10.04, Wine 1.2-rc2, Quicken 2009 r2.
When running Quicken 2009 and clicking on Help-Product and Customer
Support, the pop-up window is all garbled.
--
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=20409
Summary: WOW updater crashes
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aparkes(a)gmail.com
Created an attachment (id=24219)
--> (http://bugs.winehq.org/attachment.cgi?id=24219)
This is the error that I get
I run the WOW updater and it crashes, I have read through the bugs listed and
no one as listed a way to fix it that I have found. Please someone 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=19288
Summary: Albumplayer errors on manual search for albums on All
Music guide
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://www.albumplayer.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hello.adri(a)gmail.com
Created an attachment (id=22331)
--> (http://bugs.winehq.org/attachment.cgi?id=22331)
Error on manual search album on AMG site
When you edit an album (right click on an album for submenu, edit album..)
one can choose to manual search the All Music site.
If you find and apply the database will be filled with cover and additional
info like genres etc.
But an error message comes up with "invalid floating point", if you try again
an "acces violation in module js3250.dll"
--
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=14736
Summary: Medmont automated perimeter test software crashes
Product: Wine
Version: 1.1.2
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austin.lund(a)gmail.com
Created an attachment (id=15228)
--> (http://bugs.winehq.org/attachment.cgi?id=15228)
Backtrace of crash on loading
I have some old software which drives a simple glaucoma tester which is driven
by the serial port. The software isn't really supported any more, but the
people who make it still operate: http://www.medmont.com.au/
I cannot even get the software to load. There is an unhandled page fault on
loading.
Attached is the backtrace, but it seems mighty unhelpful.
--
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.