http://bugs.winehq.org/show_bug.cgi?id=17388
Summary: Chessmaster 10th edition crashes after game analyze
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=19445)
--> (http://bugs.winehq.org/attachment.cgi?id=19445)
Crash log
After playign a game i wanted to test analyze function, after finishing it
chessmaster crashed. 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=13013
Summary: ProntoEdit NG 2.1.8 tree control shows all labels as ZZZ
Product: Wine
Version: 0.9.61.
Platform: Other
URL: http://www.remotecentral.com/cgi-
bin/files/rcfiles.cgi?area=prontong&db=other&br=programs
&dv=philipsprontong&md=philipsprontoproeditng&kw=&st=&ar
=&dt=&so=&pg=1&file=prontong/programs/ProntoProEditNG_v2
.1.8.zip
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In http://winehq.org/pipermail/wine-users/2008-May/033707.html
a user noted that he had to use winetricks to update common controls
before ProntoEdit NG's tree control would work.
The app needs mfc42, and refuses to even start unless you do
sh winetricks vcrun6
To see the tree problem, do File / New Configuration and click OK.
The labels on the tree control to the left will be all ZZZZZZ.
After
sh winetricks cc580
they appear correct.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17383
Summary: Chessmaster 10th edition fails to install
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=19435)
--> (http://bugs.winehq.org/attachment.cgi?id=19435)
Wine log when i tried to run setup.exe
When trying to install chessmaster 10th edition, it fails around 1/3rd of
installation with an 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=15804
Summary: .NET 2.0 application "Culture name 'ga-ie' is not
supported."
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: slach(a)74mail.ru
Created an attachment (id=16930)
--> (http://bugs.winehq.org/attachment.cgi?id=16930)
ListCulture.cs listing all available culture lists
in ticket #10467
http://bugs.winehq.org/show_bug.cgi?id=10467#c66
i have .NET 2.0 exception for 'esperanto' CultureInfo retrieving
atfer some discussion in abbdb with Anastasius Focht
and see patch
http://www.winehq.org/pipermail/wine-cvs/2008-June/044429.html
i upgdate my wine to 1.1.5
but have same Exception with another culture name 'ga-ie' (Irish)
Unhandled Exception: System.ArgumentException: Culture name 'ga-ie' is not
supported.
at System.Globalization.CultureTableRecord.GetCultureTableRecord(String
name, Boolean useUserOverride)
see backtrace and testing .NET 2.0 application ListingCulture.cs in attachments
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17393
Summary: MansionPoker: Closing an open poker table makes the
application crash with a runtime error
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emilio.moretti(a)gmail.com
Created an attachment (id=19456)
--> (http://bugs.winehq.org/attachment.cgi?id=19456)
Console output after crash
Exiting the program or closing a poker table closes the whole program with a
runtime error.
See attachment 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=17003
Summary: fseek with whence=SEEK_END after fread is ignored
Product: Wine
Version: 1.1.13
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
Created an attachment (id=18793)
--> (http://bugs.winehq.org/attachment.cgi?id=18793)
test lseek SEEK_END being ignored after fread
best expressed in python:
filelen = 200
f = open("tst", "wb")
for i in range(filelen):
f.write(chr(i%256))
f.close()
f = open("tst", "rb")
f.seek(filelen-22)
x = f.read(20)
f.seek(-98, 2)
print (filelen-98), f.tell()
but c version is attached.
from what i can best tell, the lseek(-9, SEEK_END) is just simply... being
ignored! :)
if you comment out the fread, the lseek is successful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17422
Summary: PC_met's Toptherm does not work
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=15669
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
PC_met's glider pilots part ("TopTherm") does not work. The app heavily uses
ole32. Everything else I checked so far worked perfectly.
Here's the shortlog: http://pastebin.com/f570e3356 (After the MessageBox() it
hangs, then crashes)
If you need one, I will create another, bigger log for you.
I checked with dcom98 too, same crash.
Sorry, but the demo does not allow you to check these products afaik.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10701
Summary: Renegade 64 RAM viewer fonts are too small.
Product: Wine
Version: 0.9.50.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Created an attachment (id=9535)
--> (http://bugs.winehq.org/attachment.cgi?id=9535)
Renegade 64's RAM viewer.
Renegade 64 has this nice RAM viewer that views the RAM of whatever emulator
R64 happens to be attached to.
Thing is, that the font used to render the addresses and their data are a tad
too small. The application seems to be programmed with one font size in mind,
and has no tolerance for fonts being a size their not supposed to.
Since the separators separating the RAM addresses are fixed, the characters
display over the separators rendering them useless. This also makes it display
too much information before a line break. I've included a picture with the
problem.
There is one fixme that also seems somewhat important:
fixme:font:WineEngCreateFontInstance Untranslated charset 255
--
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=15342
Summary: Black & White does not exit well - crashes
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
Created an attachment (id=16165)
--> (http://bugs.winehq.org/attachment.cgi?id=16165)
Crash log eine 1.1.5, exiting b&w
Crash log of exiting Black & White 1.3 on Wine 1.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=9397
Summary: focus problems in list view with editors
Product: Wine
Version: 0.9.43.
Platform: Other
URL: ftp.ldscatalog.com/PAF5AllLangs.exe
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cjstimpson(a)utwire.net
If I have a list view with editors, clicking on other items in the list view
doesn't remove the editing windows. Meaning, I have a richedit editing an
item, and I click on another list view item, the first richedit doesn't go
away.
Using keys to navigate instead works fine.
I'm seeing this problem in Personal Ancestral File 5.2.
I commented out the SetFocus() done in LISTVIEW_LButtonDown(), and the problem
went away. Though I'm not sure that's the right fix.
--
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=14096
Summary: Trackmania Nations Forever: Motion Blur does not work
Product: Wine
Version: 1.0.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: edwin.smulders(a)gmail.com
Created an attachment (id=14316)
--> (http://bugs.winehq.org/attachment.cgi?id=14316)
wine TmForeverLauncher.exe &> motionblurlog
I dont know what causes this or what kind of d3d features it needs, i only know
i enable "Force Motion Blur" and nothing changes.
I've attached a log just in 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=16657
Summary: VeZA Route planner 2005: Crashes after a while of use
with assertation failed
Product: Wine
Version: 1.1.11
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine-bugs(a)mohag.net
Created an attachment (id=18271)
--> (http://bugs.winehq.org/attachment.cgi?id=18271)
Normal crash log. Program becomes unresponsive before crashing
After a bit of use, VeZA route planner 2005 crashes with an assertation failed
error.
I'm unable to give a reliable method of reproducing the crash.
Wine: 1.1.10
OS: Gentoo x86 - kernel 2.6.25
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9786
Summary: gpuViewer fails to start, trying to change HDC
Product: Wine
Version: 0.9.45.
Platform: PC
URL: http://www.gpuviewer.com/index.php/download/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
gpuViewer Tech Preview does not start. Wine displays errors about the app
doing an invalid operation on the root window, then one about changing the
device context which OpenGL does not allow. An X error follows.
fixme:win:EnumDisplayDevicesW ((null),0,0x34bde0,0x00000000), stub!
fixme:d3d:IWineD3DDeviceImpl_GetAvailableTextureMem (0x135c18) : stub,
simulating 64MB for now, returning 64MB left
err:wgl:X11DRV_SetPixelFormat Invalid operation on root_window
err:d3d:CreateContext HDC=0x320 is already set to iPixelFormat=1 and OpenGL
doesn't allow changes!
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 143 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 473
Current serial number in output stream: 473
--
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=16632
Summary: Lula: The Sexy Empire: Crash to desktop on start
Product: Wine
Version: 1.1.10
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: etni3s(a)gmail.com
Created an attachment (id=18196)
--> (http://bugs.winehq.org/attachment.cgi?id=18196)
Debugger dump
When I try to start Lula: The Sexy Empire version 1.69 F it crashes to desktop
with the error message:
"Couldn't get Back Surface_1!
Unknown Errorcode!!:0
End Program??
[OK] [Cancel]"
Ok exits the application. Cancel makes it crash to desktop.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12044
Summary: Garry's mod crashes upon player death caused by prop.
Product: Wine
Version: 0.9.57.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blacksash(a)badako.nl
Created an attachment (id=11395)
--> (http://bugs.winehq.org/attachment.cgi?id=11395)
Crashlog from garry's mod
In the game garry's mod (available for $10 on Steam), the game crashes when the
player is killed by crushing or ramming with any kind of prop. Any collision
that would normally kill a player will crash the game with an unhandled
exception.
Death by guns or falling works normally, as do things like killing a player
inside a pod.
Attached is a +trace log made by running steam and calling Gmod as it's startup
app.
The lines:
1970: fixme:d3d:handleStreams Tweening is only valid with vertex shaders
1971: fixme:d3d:handleStreams Tangent and binormal bump mapping is only valid
with vertex shaders
Are caused by me spawning a car to test the crushing crash (I held it over my
head and let it go.)
The lines:
2121: fixme:dbghelp_dwarf:dwarf2_parse_variable Unsupported form for const
value srgb_cmp (a)
And similar are displayed at the exact moment the crash occurs.
Since, upon death, the FOV is supposed to turn red, and this doesn't happen,
perhaps there is some rendering bug causing the game to crash because it cannot
change the colour?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16516
Summary: Space Giraffe: Unhandled page fault on read access to
0x00000000
Product: Wine
Version: 1.1.9
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tethys(a)gmail.com
Created an attachment (id=17955)
--> (http://bugs.winehq.org/attachment.cgi?id=17955)
Backtrace
I'm trying to run Jeff Minter's Space Giraffe demo (which is available at
http://www.llamasoft.co.uk/downloads/SpaceGiraffe.exe at time of writing)
The install seemed to go OK. I had to add d3dx9_38.dll to my system32
directory, and an override for opengl in winecfg in order to get the
game to start at all. After selecting my language, I get an error
dialog (from the game, not Wine, I think) saying:
Some unsupported/different feature been detected
This may lead to some incompatibility and/or performance penalty
or worse not to work at all.
Then I get another dialog:
Can't initialise XACT engine !
and then the game crashes with an unhandled page fault error. Whether
Wine is at fault, or just buggy error handling code in the game is
another matter, of course. Either way, the game isn't playable under
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=16752
Summary: winhlp32/hlp_file.c: comparison is always false due to
limited range of data type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -Wall -pipe
-fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings
-Wtype-limits -Wpointer-arith -g -O2 -o hlpfile.o hlpfile.c
hlpfile.c: In function ‘HLPFILE_RtfAddText’:
hlpfile.c:646: warning: comparison is always false due to limited range of data
type
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12518
Summary: StarAlliance TravelDesk - GUI acts 'frozen'
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://st.flightlookup.com/StarDownload/pc.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=12073)
--> (http://bugs.winehq.org/attachment.cgi?id=12073)
+relay in git, tail -n 100000, bzip2'ed
http://forum.winehq.org/viewtopic.php?t=518
"The StarAlliance airline network used to have a Windows 3.x-ish timetable
program that worked very well under Wine. Now they replaced it by something
more fancy and Wine (0.9.59) cannot handle it. The application installs fine,
starts up, but then it's frozen. You cannot enter any text in the search boxes
and you cannot move the scrollbars."
Someone got it going a bit, with a crapton of native DLLs:
"hi , i gave this thing a try and the search buttom worked for me using various
windows dllls. I copied the following dlls over from my xp partition:
shdocvw.dll
shlwapi.dll
urlmon.dll
mshtml.dll
mshtmled.dll
mshtml.tlb
jscript.dll
MSLS31.DLL
mlang.dll
Set shlwapi,mshtml,shdocvw,urlmon,mlang to native.
Do 'regsvr32 mshtmled.dll'
I was able to search for flights from one place to another, but i guess a lot
needs to be investigated more."
I'll attach a +relay trace. Not sure what component to file this under,
considering how many DLLs are affected, though it may only need one or two of
them. Setting to shdocvw for now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16520
Summary: EssentialPIM: Showing anti-debug message that never
appears in windows
Product: Wine
Version: 1.1.10
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: saverio.pub(a)inbox.com
Decriptions of bug found using EssentialPIM
(http://www.essentialpim.com/?r=download)
System:
* EssentialPIM Pro 2.81 (most probably the same bug applies to the Free
version), installed
* Ubuntu Hardy
Some times when launching the main executable, (BUG) a message "essentialpim
won't run in debug mode for security reasons" appears and EPIM exits.
This message never appears in windows, and has an occurrence of about 1/15
on wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16749
Summary: kernel32/tests: wrong char type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../../include -I../../../include -D_REENTRANT -fPIC -Wall
-pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings
-Wtype-limits -Wpointer-arith -g -O2 -o codepage.o codepage.c
codepage.c: In function ‘test_string_conversion’:
codepage.c:228: warning: comparison is always false due to limited range of
data type
codepage.c:244: warning: comparison is always false due to limited range of
data type
changing mbc to be a signed char rather than char seems the obvious solution,
but that breaks things further:
codepage.c:226: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
codepage.c:233: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
codepage.c:242: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
codepage.c:251: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
codepage.c:262: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
codepage.c:328: warning: pointer targets in passing argument 5 of
‘WideCharToMultiByte’ differ in signedness
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13362
Summary: Vim display error dialog on exit [dogfood]
Product: Wine
Version: CVS/GIT
Platform: PC
URL: ftp://ftp.vim.org/pub/vim/pc/gvim71.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juan_lang(a)yahoo.com
Created an attachment (id=13256)
--> (http://bugs.winehq.org/attachment.cgi?id=13256)
Error dialog
When closing vim, it display an error complaining about an unknown font (fixed
sys something or other). See attached screenshot. Running 'winetricks
corefonts' doesn't affect 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=15893
Summary: Football Manager 2009 demo installer shows a blank
screen
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://www.newsoftheworld.co.uk/entertainment/games/5776
4/GET-A-FREE-DOWNLOAD-OF-FOOTBALL-MANAGER-2009-
Exclusive-first-demo-of-new-computer-game.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=17053)
--> (http://bugs.winehq.org/attachment.cgi?id=17053)
Football Manager 2009 demo installer traces
With today's Git (wine-1.1.7-169-g4707548), when starting the Football Manager
2009 demo, the installer performs extraction, but when it shows what should be
the installation window, a blank window is displayed instead. Traces and
screenshots are 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=15990
Summary: Rhapsody 4 crashes when trying to play a local .mp3 file
Product: Wine
Version: 1.1.7
Platform: Other
URL: http://service.real.com/rhapsody/download/version4/
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user in
http://real.lithium.com/real/board/message?board.id=InstallingRhapsody&mess…
asked about Rhapsody, so I did a little QA on it.
The installer/upgrade crash in bug 15981 doesn't seem
to keep the app from working. It can scan your music
directories just fine. But when I tried using it to
play an .mp3, it failed. Here's one crash error I saw
with the latest git and warn+heap (since I saw some heap
errors in wine from a few days ago):
fixme:msimtf:ActiveIMMApp_OnDefWindowProc Stub (0x100ca 1c 0 0)
fixme:shdocvw:navigate_bsc Navigation canceled
Unhandled exception: page fault on read access to 0x2d28a631 in 32-bit code
Backtrace:
=>1 DocHost_Release+0x22(This=0x51691e4) [dlls/shdocvw/dochost.c:534] in
shdocvw
2 WebBrowser_Release+0x5c(iface=<?>) [dlls/shdocvw/webbrowser.c:155] in
shdocvw
3 HlinkFrame_Release+0x15(iface=0x5169174) [dlls/shdocvw/navigate.c:803] in
shdocvw
4 nsChannel_AsyncOpen+0x481(iface=0x5178658, aListener=0x52922e8,
aContext=(nil)) [dlls/mshtml/nsio.c:154] in mshtml
...
12 in docshell (+0x241f)
13 in xpcom_core (+0x30812)
DocHost_Release+0x22 [dlls/shdocvw/dochost.c:534] in shdocvw: call
*0x8(%eax)
534 IDispatch_Release(This->client_disp);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12449
Summary: Adobe Photoshop CS2: window parts hidden when opening
multiple images
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: descentspb(a)ya.ru
Created an attachment (id=11990)
--> (http://bugs.winehq.org/attachment.cgi?id=11990)
Screenshot of the bug
When opening a large amount of images in Adobe Photoshop CS2, from some point
all the images opened are not fully visible, and you cannot do anything to 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=12706
Summary: winealsa.drv: "No master control found" on usb
microphone devices
Product: Wine
Version: 0.9.60
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nephyrin(a)nephyrin.net
"fixme:mixer:ALSA_MixerInit No master control found on AK5370, disabling mixer"
Is produced on wine startup, disabling my usb microphone. In
dlls/winealsa.drv/mixer.c it disables mixers that have no 'Master' control,
making controllers like this that have only the one "Microphone" capture
control unusable.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.