http://bugs.winehq.org/show_bug.cgi?id=10239
Summary: Internet Explorer bar is broken after the rewrite of the
rebar layout code
Product: Wine
Version: 0.9.48.
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: Wine-Rebar
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmitry(a)codeweavers.com
CC: mikolaj.zalewski(a)gmail.com
Internet Explorer 6.0 is no more able to correctly display/repaint any of its
side bars, Search (Ctrl+E) is one of them.
This regression is caused by
f0a7a74666e2cf9aa1213ea638c4d899f86f19e2 is first bad commit
commit f0a7a74666e2cf9aa1213ea638c4d899f86f19e2
Author: Mikołaj Zalewski <mikolaj(a)zalewski.pl>
Date: Mon Feb 19 13:56:51 2007 +0100
comctl32: rebar: Rewrite the layout code.
:040000 040000 59bad04cfbbf08b1ccc9870617437ac288330f62
bcd4e073b71f9b0ddcddea85e3c2ad0539f1cb8f M dlls
--
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=10045
Summary: Battlefield 2 screen is displaced downwards
Product: Wine
Version: 0.9.47.
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ben(a)atomnet.co.uk
Created an attachment (id=8588)
--> (http://bugs.winehq.org/attachment.cgi?id=8588)
Screenshot showing the displacement
As shown in the screenshot, the screen is about 80 pixels lower than it should
be, it also makes it very hard to click the buttons that should be on the
bottom of the screen when in the menu.
--
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=9450
Summary: Wrong rebar height calculation for hidden bands
Product: Wine
Version: 0.9.42.
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Wine-Rebar
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
Created an attachment (id=7780)
--> (http://bugs.winehq.org/attachment.cgi?id=7780)
Proposed patch
Currently our builtin rebar code does not calculate 0 as the height of the
control if no bands are visible, while native does.
Tracing through our rebar code I found this suspicious code:
for (i = iBeginBand; i < iEndBand; i = next_band(infoPtr, i))
{
lpBand = &infoPtr->bands[i];
yMaxHeight = max(yMaxHeight, lpBand->lcy);
}
while further down the height of the control is returned as
return yPos + yMaxHeight;
It does not make sense to include the hight of a hidden band, and my fix
for (i = iBeginBand; i < iEndBand; i = next_band(infoPtr, i))
{
lpBand = &infoPtr->bands[i];
if(!HIDDENBAND(lpBand))
yMaxHeight = max(yMaxHeight, lpBand->lcy);
}
corrects the problem.
But this will need a test case, right?
--
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=10400
Summary: Horible performance with OffscreenRenderingMode=fbo in
Counter Strike source "Video stess test"
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=3731
OS/Version: Linux
Status: NEW
Severity: major
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vitaliy(a)kievinfo.com
With OffscreenRenderingMode set to "fbo" I'm getting less then 1 fps in Counter
Strike Source Video stress test. Disabling monitors with "cl_drawmonitors 0"
makes it much faster (30+ FPS).
Major because it affects lots of other games. Also since development goes
towards making FBO a default instead of back buffer.
--
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=10566
Summary: Wine regression error in Corel 11
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: draklor_draconid(a)yahoo.ie
Support for Corel Photo-Paint from Corel Graphics Suite 11 has been broken
since the 0.9.45 release. The program still loads, but after trying to do 1 or
2 things, such as drawing lines or the flood-fill, the program freezes. It does
not appear to be a time-based problem. I have not yet tested the other programs
from Corel Graphics Suite, or other versions.
--
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=9339
Summary: sounds makes Pro evolution soccer 5 crashes
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.fileshack.com/file.x/7664/Pro+Evolution+Socce
r+5+Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Enabling the sound in winecfg makes the demo of PES 5 crashes. I attached the
console output.
Joaopa
--
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=10798
Summary: Armageddon crashes on startup
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gosam(a)menara.ma
CC: stefan(a)codeweavers.com
Created an attachment (id=9661)
--> (http://bugs.winehq.org/attachment.cgi?id=9661)
wine's log for the crash
This is a regression bug, I've performed tests and here's bisect's info on the
faulty commit :
fb0dde7b274fb3a4b2f0f911c9114ce8a832b98e is first bad commit
commit fb0dde7b274fb3a4b2f0f911c9114ce8a832b98e
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Wed Nov 7 19:57:49 2007 +0100
wined3d: Relative addressing offsets are limited to [-64; 63] in arb.
:040000 040000 be00dac22cbbc77533c05b736c4cb18ea62a2233
e58ac3323b9e3be664118c975252229973307384 M dlls
:040000 040000 6831231b75d891aa1e69b85d08af18a60e0fa5bc
d9f7c5138e104661dbd0cd0bacf0a89e1862b92f M include
--
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=9549
Summary: Mouse recentres several times a second for Mystery of
the Mummy
Product: Wine
Version: 0.9.44.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stuart(a)houseofanime.org
Game install smoothly and starts as expected. However, at the main menu, the
mouse displays unusual behaviour. The icon clearly reacts to mouse movement,
but it is re-centered several times a second and appears to move in the
opposite direction to the mouse's movement. Buttons still work correctly (can
exit if you can move the icon far enough to the 'exit' button and click it
before it's re-centered) - it seems only the motion is affected.
--
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=10983
Summary: SPSS 15 cannot find dlls
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmvianna(a)usp.br
Created an attachment (id=9937)
--> (http://bugs.winehq.org/attachment.cgi?id=9937)
wine log
When SPSS 15 is run from its directory after a successful installation
(~/.wine/drive_c/progra~1/SPSS15/spssswin.exe), it complains about not finding
many dlls (present in the same directory), and then fails. Log attached.
--
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=10370
Summary: broken package preventing installation- libaudio2
Product: Wine
Version: 0.9.48.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trogdoor17(a)yahoo.com
I am encountering a bug making installation impossible. The file specified by
my OS ubuntu (linux) is libaudio2. this is making installation impossible and i
have tried to download and install the file many times.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.