http://bugs.winehq.org/show_bug.cgi?id=11115
Summary: "Please do not PASTE logs and back traces" message is
ignored too often
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: bugzilla-unknown
AssignedTo: jnewman(a)codeweavers.com
ReportedBy: jeffzaroyko(a)gmail.com
It could be that the way the Enter Bug page is designed, this message is not
prominent enough for everyone to perceive its importance.
maybe it could be larger to place more emphasis on the message or alternatively
feature a stop sign graphic next to it saying something like "STOP, read this."
--
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=11748
Summary: Adobe Dreamweaver 8 trouble with document root on
external drive?
Product: Wine
Version: 0.9.30.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://www.stos.org/1/2007/02/07/dreamweaver-on-linux-with-wine/
said there was some problem with setting the document
root to be an external drive (maybe a permissions problem).
Recording here even though I haven't tried it myself 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=12739
Summary: Improper drawing of radio buttons
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sistemas(a)upcnba.org
Radio buttons in Visual FoxPro are shown inside a black box.
To see this bug you can download a demo application Sistematic at
http://www.sistematicperu.com/descarga_demo.htm.
>From menu "Caja -> Imprimir Hoja de Movimientos" you can view a dialog with the
radio buttons.
I have seen this bug in several versiones of Wine in Ubuntu including latest
version 0.9.60.
Attached there are one pict of the dialog as views in Windows XP, and other of
Wine running in Ubuntu 7.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=12212
Summary: DeusEx: regression - running at big resolutions result
in screen shift&crop
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anton(a)korzh.ru
CC: julliard(a)winehq.org
Running DeusEx since 0.9.56 in resolution different to 640x480, results in
incorrect fullscreen positioning and picture cropping to upper-left quarter of
screen in first main menu view. In 0.9.55 is everything ok.
git bisect helped to find a commit which have introduced the regression:
0.9.55-409
winex11: Re-introduce a separate X11 window for the client area of top-level
windows
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11430
Summary: Applications based on CodeJock Software ToolkitPro fail
with division by zero
Product: Wine
Version: 0.9.54.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: developers(a)tefnet.pl
ToolkitPro from CodeJock software fails during initial UI drawing with:
wine: Unhandled division by zero at address 0x423325 (thread 0009), starting
debugger...
Sample application can be downloaded from:
http://www.codejock.com/public/download/win32/TabbedViewPro.zip
This makes applications like DIALux
(http://www.dial.de/CMS/English/Articles/DIAL/DIAL.html?ID=1) widely used in
lighting industry not usable.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13248
Summary: Incomedia Website X5: crashes when install
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://www.websitex5.com/en/index.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: antonino(a)arcidiaco.com
I have an original copy of this program, but it doesn't install
the error is:
C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX
-???-
Error: 3
after that, crashes...
I attach the terminal log...
hi 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=11170
Summary: LoadLibrary behaviour is different from the windows one
Product: Wine
Version: 0.9.52.
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hules(a)free.fr
Under wine (version 0.9.52), attempts to open an .exe file with LoadLibrary
fails (with error ERROR_INVALID_ADDRESS), while it succeeds on windows (all
versions):
The following example shows that different behaviour:
(I compiled it with i386-mingw32-gcc ./test.c && cp a.exe b.exe )
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main() {
const char *fname = "b.exe";
HMODULE hmod = LoadLibrary(fname);
//HMODULE hmod = LoadLibraryEx(fname_, NULL, LOAD_LIBRARY_AS_DATAFILE);
if (hmod) {
fprintf(stderr, "loaded at %p\n", (void*)hmod);
} else {
fprintf(stderr, "error %x\n", (int)GetLastError());
}
return 0;
}
--
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=11133
Summary: Shade: Wrath of Angels Demo - no graphics drawn in game
Product: Wine
Version: 0.9.52.
Platform: PC
URL: ftp://ftp.gameaholic.com/pub/demos/shade_demo_101.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
wine-0.9.52, Ubuntu 7.10, nVidia FX5200
intro movie plays, menus work, but
Upon starting the first level, there are no visuals, just a black screen, the
game appears to play but nothing but black is on screen.
If you hit ESC, a status bar is drawn, or if you scroll the mouse a small
movement speed graphic is drawn, but nothing else. Attaching +d3d log.
--
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=13156
Summary: ETO_OPAQUE and clear style are not transparent on a
bitmap
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heiko_tietze(a)web.de
I paint some text on a bitmap using
Canvas.TextFlags:=ETO_OPAQUE;
Canvas.Brush.Style:=bsClear;
TextOut(...
resulting in a black background around the intended transparent text.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12300
Summary: World of warcraft graphical corruption preventing play
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: russell.h(a)blueyonder.co.uk
Created an attachment (id=11747)
--> (http://bugs.winehq.org/attachment.cgi?id=11747)
wine command line output
I have been unable to play with wine since the patch. I can start the game and
login, the login screen looks fine. When I get to the character screen this is
what I see img167.imageshack.us/my.php?image=24errornj5.png (screenshot).
Black text and missing graphics.
This is my view in game. No interface and graphics are rendered incorrectly.
img413.imageshack.us/my.php?image=orgrimmarlsdah9.png (screenshot)
I am running Ubuntu 7.10, wine 0.9.58 and catalyst 8.3 drivers. Everything ran
flawlessly before wow patch 2.4. I have tried adding and removing all the
registry and config tweaks I had added. If I run the game without the SET gxApi
"opengl" line it runs successfully and graphics are rendered correctly but only
runs at 10fps.
I have attached a copy of my wine output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.