http://bugs.winehq.org/show_bug.cgi?id=9785
Summary: Windows of new apps dont get focus
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
Before the patch, every app which is created is in the foreground of the
desktop. Which is imo correct, especially for fullscreen apps...
Now, if you start an app, its in the background even kicker is in front of it.
ac98e0c07535af4a373c0af343498903e2ff42a6 is first bad commit
commit ac98e0c07535af4a373c0af343498903e2ff42a6
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Aug 20 22:06:33 2007 +0200
winex11: Switch windows to managed mode in SetWindowPos instead of at
creation time.
:040000 040000 eb47052dcec150c2dab8d995fde568ad854ed636
cfa8e50db21ca60ab5dda940a132d17e8c0fb421 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=9768
Summary: Performance Regression in 3Dmark03
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
In current wine there is a loss of about 1500points.
Looking at the detailed results, most tests are on the same speed. Except
Trolls Lair and Battle for Proxycon. And in the additional tests the Ragtroll
bench.
Caused by:
commit ad3fe8562b1b4e71b18d0c69a77caad8189c3d28
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Fri Sep 14 12:00:46 2007 +0200
wined3d: Enable the stencil test if two sided stencil is used.
I verified the correctness of the regression test by reverting it in the source
code.
Im running on nvidia drivers 100.14.19 and a Geforce 8600GT
--
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=9732
Summary: Flash Player 8/9 ActiveX Control: animations flicker
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emiller(a)imvu.com
CC: emiller(a)imvu.com
When running Flash Player as an ActiveX control inside another program,
flickering appears as regions are redrawn. This behavior appears in at least
two programs:
* Internet Explorer 6 (through the ies4linux project)
* IMVU (http://appdb.winehq.org/appview.php?iVersionId=3927&iTestingId=2551)
I know that ies4linux is unsupported by the WINE team, but since identical
behavior appears in another executable that embeds Flash, I think it's a
problem with WINE.
I am using the current GIT version of WINE (wine-0.9.45-g8d1a859).
Things I have discovered:
* The Flash plugin for Firefox works fine
* Using the latest nvidia and nv drivers does nothing to improve the situation
** Hardware: 01:00.0 VGA compatible controller: nVidia Corporation NV44 [Quadro
NVS 285] (rev a1)
** Nvidia driver: 100.14.19
* I have tried multiple versions of the Flash ActiveX control, including:
** Flash9e.ocx (prerelease, see
http://labs.adobe.com/downloads/flashplayer9.html)
** Flash9c.ocx
** Flash8d.ocx
* The Flash 8 control flickers in a different but equally unacceptable way
To reproduce the problem in IE, download the Flash ActiveX control from Adobe
and then go to a site with Flash (e.g. www.youtube.com). To reproduce the
problem in IMVU, check Settings -> Use Text Chat and then click "My Room". The
text chat box is a flash widget and flickers quite noticeably.
You can obtain different versions of the ActiveX control from Adobe here:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266
Please let me know if I can provide more information.
--
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=9626
Summary: unhandled msi action L"SetBBInstallEXE"
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dan(a)danny.cz
I am trying to install 3ds max 5 and can't get after the installation wizard's
page for selection destination folders. I get the following error when pressing
the "Next" button.
fixme:msi:ACTION_PerformAction unhandled msi action L"SetBBInstallEXE"
--
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=9538
Summary: java: Component#getLocationOnScreen returning incorrect
coords
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smckay(a)google.com
CC: dank(a)kegel.com
Here's a short java program that behaves correctly on linux and windows, but
not under wine. The program exercises a small part of the java awt toolkit.
1. Create a file with the following contents:
import java.awt.Component;
import java.awt.Container;
import java.awt.Frame;
import java.awt.Point;
public class Bug {
public static void main(String[] args) {
Frame f = new Frame();
Container cont = new Container();
Component comp = new Component(){};
f.add(cont);
cont.add(comp);
f.setSize(100, 100);
f.setVisible(true);
cont.setBounds(10, 10, 80, 80);
comp.setBounds(10, 10, 60, 60);
Point frameLoc = f.getLocationOnScreen();
Point compLoc = comp.getLocationOnScreen();
// The component now should have
// (frameLoc.x + 20 + i.left, frameLoc.y + 20 + i.top).
System.out.printf("a.x=%d, a.y=%d / b.x=%d, b.y=%d\n",
compLoc.x, compLoc.y, frameLoc.x, frameLoc.y);
f.dispose();
}
}
2. Compile it:
javac Bug.java
3. Download a JDK from java.sun.com and install it in Wine
4. Use it to run Bug.class, e.g.
cd '.wine/drive_c/Program Files/Java/jre1.6.0_01'
cp ~/Bug.class .
wine bin/java.exe Bug
5. Returns inconsistent results under wine. Under linux and windows it
consistently returns "a.x=20, a.y=20 / b.x=0, b.y=0". Occasionally wine returns
correct results, but repeated invocations of the application should produce
inconsistent results (e.g. "a.x=16, a.y=-3 / b.x=-4, b.y=-23").
--
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=9386
Summary: WoW 2.2 fails to initialise audio
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq-bugzilla(a)six-by-nine.com.au
As requested by Vitamin, I've now built Wine from GIT and set audio to
OSS/Emulated. WoW 2.2 continues to appear to hang on startup. If one waits long
enough one receives a crash that looks mightily similar to random crashes seen
under Vista.
I've attached a WINEDEBUG=+dsound trace, along with the crash report eventually
generated by WoW itself.
I set VERSION here to CVS, as I presume that's suitable for git - no one in
#winehq could confirm whether I should do this or not.
--
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=9290
Summary: SimCity 3000 Unlimited crashes whe cursor points to menu
item
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zms90(a)comcast.net
Created an attachment (id=7557)
--> (http://bugs.winehq.org/attachment.cgi?id=7557)
Wine console output running SC3U
When I run SimCity 3000 Unlimited, It gets to the main menu, and then I point
to an icon and wine gives me a c0000005 (Access Violation) in GZResourceD.dll.
I trimmed the excessive fixme:d3d:IWineD3DDeviceImpl_CreateSurface Trying to
create a render target that isn't in the default pool FIXME's to save space,
but otherwise it's the full output
--
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=14512
Summary: Warcraft 3 Frozen Throne battle.net chat is invisible
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wc3che(a)yahoo.com
Newer versions of Wine (at least 0.9.60+) have a bug that makes random players'
chat invisible during the game. I have regressed to version 0.9.45, and the
chat works, but now I have performance issues, zombie processes etc.
Other then this, Warcraft 3 works well on Battle.net.
This bug is completely reproducible by playing a 5v5 game of Dota on
battle.net.
I'm running Ubuntu 8.04.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12824
Summary: simtel download helper puts up gui, but won't download
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.simtel.net/product.download.mirrors.php?id=18
258
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Simtel, bless their reincarnated soul, has switched to an awful
mandatory download helper scheme which doesn't work with wine.
It seems to need javascript / mshtml integration.
Found while looking into bug 10087.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15207
Summary: Minor regression with "The Journal"
Product: Wine
Version: 1.1.4
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jbysmith(a)yahoo.com
A minor regression has been introduced with Wine 1.1.4 and "The Journal", from
http://www.davidrm.com.
The software behaves as expected until you minimize it. When you minimize it,
a new title bar is created, and the window reappears detached from the
titlebar. I did not see this behavior under Wine 1.0. This was experienced on
Ubuntu 8.04.1 under Gnome.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.