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=19159
Summary: Command & Conquer 3: Tiberium Wars hangs at splash
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: andrejx(a)gmail.com
Command & Conquer 3: Tiberium Wars hangs at splash screen. The CPU usage is at
100% and there appears to be no hard disk utilization.
Tested with Wine versions: 1.1.24, 1.1.23, 1.1.20, 1.1.18, 1.1.10, 1.1.8
Same results on all of them.
Tested using "Windows XP" and "Vista" options. Nothing works. It was suggested
to disable all audio modules in winecfg, but that did not help either.
--
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=14769
Summary: Firefox 3 window size isn't restored after returning
from fullscreen (dogfood)
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andre.wisplinghoff(a)gmail.com
How to reproduce:
Start Fx3, press F11 two times (go fullscreen and back).
The window should have the same size as it had before, but it seems it just
remains being full sized (eg. it becomes an odinary window but still has
1280x800 on my system)
On KDE4 this leads to the title bar being hidden (window has negative top). On
KDE3, the window is positioned at (0,0), but because it's to large it continues
behind the taskbar. After going fullscreen and back again, there's the same
effect as on KDE4.
--
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=21981
Summary: Igor Pro: Drop-down menu only works when arrow key is
pressed
Product: Wine
Version: 1.1.40
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m_may(a)web.de
In Igor Pro 6.12A, drop-down menus don't work properly, they can only be
activated when you click on them, holding pressing an arrow key.
For example, go to the menu 'Analysis' -> 'Packages' -> 'Multipeak Fitting' ->
'Multipeak Fitting 2'. A window called 'Start Multi-peak Fit' should appear.
Try to click on the drop-down menu 'Panel Position'. This doesn't work. It only
opens, when you click on the menu and then press an arrow key, but even for
that, you sometimes need several tries.
A free Trial of Igor can be found under
http://wavemetrics.com/support/demos.htm
--
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=22414
Summary: Grand Theft Auto: Vice City - Unhandled exception on
startup unless virtual desktop is used
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
The game will change your resolution, but won't start, and give an unhandled
exception window (which you can't see, it's all black).
Running it in a virtual desktop, however, almost works. In a virtual desktop,
you'll only see the blue screen until you click inside, at which point the
splash screen appears. Seems fine after that (haven't tested too much).
--
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=22216
Summary: Problem with freopen("CONOUT$", "w", stdout);
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: terra(a)gnome.org
I am having trouble with code that reads...
has_console = FALSE;
{
typedef BOOL (CALLBACK* LPFNATTACHCONSOLE)(DWORD);
LPFNATTACHCONSOLE MyAttachConsole;
HMODULE hmod;
if ((hmod = GetModuleHandle("kernel32.dll"))) {
MyAttachConsole = (LPFNATTACHCONSOLE) GetProcAddress(hmod,
"AttachConsole");
if (MyAttachConsole && MyAttachConsole(ATTACH_PARENT_PROCESS)) {
freopen("CONOUT$", "w", stdout);
freopen("CONOUT$", "w", stderr);
dup2(fileno(stdout), 1);
dup2(fileno(stderr), 2);
has_console = TRUE;
}
}
}
The freopen calls should cause stderr and stdout to be redirected
to the console. Under wine they are not.
The failure occurs in dlls/kernel32/console.c function OpenConsoleW
when it checks creation != OPEN_EXISTING. creation at that point is
CREATE_ALWAYS.
Changing the check to allow CREATE_ALWAYS fixes my problem, but
may not be right.
(The code is from Gnumeric, btw.)
--
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=17723
Summary: Audiosurf: unable to fill textfields
Product: Wine
Version: 1.1.17
Platform: PC-x86-64
URL: http://store.steampowered.com/news/2220/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pitel(a)nomi.cz
Created an attachment (id=19927)
--> (http://bugs.winehq.org/attachment.cgi?id=19927)
This is entered after taping "a" key
When I try to fill any textfield in the game (Audiosruf login, Scrobbler
login), it enters strange characters after every keypress.
--
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=21019
Summary: Igor pro "Help brower" has no window decorations
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mycae(a)yahoo.com
The program "Igor Pro" has missing decorations on its help browser.
To reproduce, download the IGOR demo.
http://www.wavemetrics.net/Downloads/Win/setupIgor6.exe
Install, then run wine '/home/USER/.wine/drive_c/Program Files/WaveMetrics/Igor
Pro Folder/Igor.exe'
Now select Help->Help browser
The window normally has decorations, which allow for the window to be hidden
moved or otherwise controlled. These are missing.
Wine was installed on debian testing
$ aptitude show wine
Package: wine
State: installed
Automatically installed: no
Version: 1.0.1-2
Priority: optional
Section: otherosfs
Maintainer: Debian Wine Party <pkg-wine-party(a)lists.alioth.debian.org>
Uncompressed Size: 65.5k
Depends: wine-bin (= 1.0.1-2), wine-utils (= 1.0.1-2), libwine-alsa (= 1.0.1-2)
| libwine-oss (= 1.0.1-2) | libwine-esd (= 1.0.1-2) | libwine-jack (=
1.0.1-2) | libwine-nas (= 1.0.1-2), libwine-gl (= 1.0.1-2),
libwine-print (= 1.0.1-2), libwine-sane (= 1.0.1-2), libwine-cms (=
1.0.1-2), libwine-gphoto2 (= 1.0.1-2), libwine-ldap (= 1.0.1-2)
Recommends: ttf-liberation
Suggests: wine-doc, binfmt-support, ttf-mscorefonts-installer, winbind, avscan
|
klamav | clamav
--
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=22359
Summary: Wolfenstein water displays strange rays
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: infernux(a)web.de
Created an attachment (id=27359)
--> (http://bugs.winehq.org/attachment.cgi?id=27359)
Screenshot
Wine displays strange "rays" in some places. It is easy to reproduces in the
sewers (right at the beginning) where water splashes from the ceiling: the rays
are displayed in addition to the water effect.
The attached screenshot was made later into the game but shows the same thing.
Running on NVidia Geforce 7950 with drivers 195.36.15
--
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=13792
Summary: Abomination:The Nemesis Project Crashes at startup
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: realheadcrusher(a)hotmail.com
Created an attachment (id=13829)
--> (http://bugs.winehq.org/attachment.cgi?id=13829)
Crash dump
Abomination game installs fine but Abomb.exe, the game itself, crashes at
startup.
--
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=22703
Summary: Running Galcon Fusion demo gives error message
Product: Wine
Version: unspecified
Platform: x86
URL: http://www.galcon.com/fusion/files/GalconFusion_Setup.
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=27975)
--> (http://bugs.winehq.org/attachment.cgi?id=27975)
terminal log
At the end of the installer a message comes up:
'Microsoft Visual C++ Runtime Library
Runtime error!
...
R6034
An application has made an attempt to load the C runtime library incorrectly'
Works fine with vcrun2008 installed via winetricks
--
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=21984
Summary: Glumbuster crashes on load
Product: Wine
Version: 1.1.40
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=26698)
--> (http://bugs.winehq.org/attachment.cgi?id=26698)
terminal output + crash
Wine 1.1.40, Ubuntu 8.10, nvidia 195.30 8800GTS.
Glumbuster crashes on start, backtrace 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=19106
Summary: (Touhou Fuujinroku ~ Mountain of Faith) Stage
backgrounds aren't always rendered properly
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erappleman(a)gmail.com
Occasionally, the game will render the stage background incorrectly.
For example, on stage 4, the background is supposed to be a raging waterfall
with falling maple leaves, however, sometimes this will be rendered as maple
leaves falling against a plain, crimson red background.
Other levels suffer from this bug in a similar manner except for the color of
the matte background.
The error message associated with this bug is to the best of my knowledge as
follows:
fixme:d3d:buffer_UnLoad >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502) from
glDeleteBuffersARB @ buffer.c / 628
--
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=18569
Summary: TeamViewer: App doesn't start, probably heap
corruption
Product: Wine
Version: 1.1.21
Platform: PC
URL: http://www.teamviewer.com/download/TeamViewer_Setup.ex
e
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scpan(a)live.fr
Created an attachment (id=21230)
--> (http://bugs.winehq.org/attachment.cgi?id=21230)
Result of WINEDEBUG=+relay,+seh,+tid wine TeamViewer.exe &>/tmp/relay.txt
I installed TeamViewer with the default options. At the end the cursor blinks
forever so I ctrl-c it.
I moved to the working directory and tried to launch TeamViewer with: wine
TeamViewer.exe
The app doesn't start and I get an error in terminal (check attach)
I went to #winehq irc to find help, I did steps below :
I removed my .wine directory and re-installed TeamViewer: same error
I did a trace log with WINEDEBUG=+relay,+seh,+tid wine TeamViewer.exe
&>/tmp/relay.txt and lzma -9 /tmp/relay.txt
You can find the trace log in attachment
Focht thinks it's because of a heap corruption, I did
WINEDEBUG=+relay,+seh,+tid,+heap wine TeamViewer.exe &>/tmp/relay.txt and
TeamViewer launches succesfully but it doesn't lauch with WINEDEBUG=warn+heap
wine ./TeamViewer.exe
So I now use WINEDEBUG=+seh,+tid,+heap wine TeamViewer.exe &>/tmp/relay.txt for
a workaround but still looking for a fix.
--
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=21745
Summary: Magic Workstation: icons and some text appear
upside-down
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: addiebk(a)hotmail.com
Icons representing cards on the playing field are rendered upside-down, as well
as any lists of text including card names in sideboard, library, graveyard, and
'exiled' cards. Most text and 'enlarged' cards display properly.
--
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=17564
Summary: 7-zip file manager interface selection problem
Product: Wine
Version: 1.1.15
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
In the 7-Zip File manager if you try to select objects with shift + arrows or
mouse the objects count is not updated!
Another (minor) problem is that with ctrl + arrows should only mantain the
currently highlighted items and change the selected item (without choosing it)
7-zip 4.64
Wine 1.1.5 - 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=22558
Summary: Harbinger (demo) graphical issue: green artefacts
around objects
Product: Wine
Version: 1.1.43
Platform: x86
URL: http://www.gamershell.com/download_1499.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: thunderbird2k(a)gmail.com
Created an attachment (id=27669)
--> (http://bugs.winehq.org/attachment.cgi?id=27669)
screenshot showing the issue
In Harbinger (at least the demo is showing the issue) objects are surrounded by
green squares in Wine-1.1.43. This was not the case prior to 1.1.43.
Regression testing resulted the following commit:
9fec1a02b9e13969f929a3eed249e67773286033 is the first bad commit
commit 9fec1a02b9e13969f929a3eed249e67773286033
Author: Roderick Colenbrander <thunderbird2k(a)gmail.com>
Date: Mon Apr 5 20:05:15 2010 +0200
wined3d: Disable paletted texture support. It was only offered on a few
cards, so can be missed.
:040000 040000 b11ffa7bd20131ea4a3416c5b5b07e0263847c66
71fb12b39fd165362923aa34f5e5283568e688e9 M dlls
Reverting the patch on top of wine-1.1.43-408-g3317fc3 was successful and fixed
the issue.
Author of the patch added to CC.
Fedora 12 x86
Nvidia 7xxx series card with driver 195.36.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=23184
Summary: Mass Effect 2: can't authenticate disc
Product: Wine
Version: 1.2-rc3
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Installing Mass Effect 2 works mostly fine (aside from bug 22919). However,
attempting to run it fails, since it can't verify its disc.
Terminal output is short:
austin@midna:~/.wine/drive_c/Program Files/Mass Effect 2$
err:ole:CoGetClassObject class {9a5ea990-3034-4d6f-9128-01f3c61022bc} not
registered
err:ole:CoGetClassObject no class object {9a5ea990-3034-4d6f-9128-01f3c61022bc}
could be created for context 0x1
fixme:win:EnumDisplayDevicesW ((null),0,0x18fd048,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x18fcf4c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x18fe518,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x18fe41c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x18fe1ec,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x149e50,0x149dc0): stub
--
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=21781
Summary: wine 1.1.38 onwards caused controls to be placed at
the wrong places on FM2010 Demo Installer
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sagikliwon(a)gmail.com
Created an attachment (id=26334)
--> (http://bugs.winehq.org/attachment.cgi?id=26334)
Installer Screenshot
This is a regression.
>From wine 1.1.38 onwards I am unable to install FM2010 Demo as the controls are
placed at the wrong location over during installation and I am unable to select
the next button.
This doesn't happen on 1.1.37 and before.
--
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=15604
Summary: Adobe Download Manager (getplus) flaky, hangs (dogfood)
Product: Wine
Version: 1.1.6
Platform: Other
URL: http://adobe.com/reader
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In Firefox3, downloading Adobe Reader 9 for Windows
is done via a plugin, Adobe Download Manager.
This installs and runs, but gets very confused,
cycling back and forth between "downloading" and
"downloading interrupted". After a few cycles
it hangs. Sometimes in the log there is evidence
of memory corruption (though warn+heap scares it off,
it also makes the app crash faster).
The log shows the URL of the actual thing being downloaded,
and wget can download it without trouble.
--
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=17353
Summary: Qt and tdm mingw bug
Product: Wine
Version: 1.1.14
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alpha.super-one(a)laposte.net
Created an attachment (id=19393)
--> (http://bugs.winehq.org/attachment.cgi?id=19393)
Stdout console text
When you use tdm mingw (updated mingw) at the configure for Qt source compiler
it failed but work under windows. Problem of file not 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=15392
Summary: err:dc:CreateDCW no driver found for L"DIRDIB" with
Secret of the Loxor game
Product: Wine
Version: 1.1.5
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aallard78(a)hotmail.com
I get this error when I try to start the French version of the game (Secret of
the Loxor).
Developer: Mojave
See log 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=23804
Summary: AutoCAD 2010 Failed Installation aborted, Result=120
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: winehq.crackjack(a)spamgourmet.com
Created an attachment (id=29849)
--> (http://bugs.winehq.org/attachment.cgi?id=29849)
Can't select the features to install
The installation of AutoCAD 2010 fails
The log file gives "AutoCAD 2010 Failed Installation aborted, Result=120"
Autodesk Design Review 2010 also fails with the same error
Also there is no possibility to select the features to install
Adding the wine log, acad2010 setup log and the screenshot of the missing
features
using Wine version 1.2
If more testing is necessary please let me know
--
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=23471
Summary: Menubar collapses giving no chance to enter menus
Product: Wine
Version: 1.2-rc5
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=2819
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
In Microsoft Flight Simulator 2004 you can normally open up the windows menubar
(on the top, e.g. this "File" - " Edit" thing) by pressing [alt]-key. If you do
so in wine, the menu is shortly visible, but you cannot use it and it
disappears right after it pops up.
This makes the menu system unusable.
On the console, these message is printed everytime I hit [alt]-key:
fixme:d3d:IWineD3DDeviceImpl_SetDialogBoxMode Dialogs cannot be disabled yet.
A quick google search didn't reveal anything obvious. Do you have an idea on
how to fix or circumvent 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=20202
Summary: Everquest 1 (eqgame.exe) crashes right before
character enters world
Product: Wine
Version: 1.1.30
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: varsamop(a)hotmail.com
eqgame crashes right before entering the world. This is after the character
selection screen, after the progress bar completes and disappears at the splash
screen and right before the graphics of the world show.
Problem occurs consistently after updating to the latest wine beta (1.1.30).
How to reproduce:
run "wine eqgame.exe patchme" and use a valid Everquest account to enter the
world with a character.
--
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=21293
Summary: Comanche 3 freezes after a mission
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: c_korn(a)gmx.de
Created an attachment (id=25621)
--> (http://bugs.winehq.org/attachment.cgi?id=25621)
The game freezes when pressing 1, 2 or 3
Comanche 3 finally runs in wine-1.1.36.
But after a mission when you see the helicopter flying and can select 1, 2 or 3
and when pressing any of those numbers the game freezes.
--
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=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=16557
Summary: print preview broken
Product: Wine
Version: 1.1.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: simonetregnago(a)grivaonline.com
CC: dmitry(a)codeweavers.com
Created an attachment (id=18047)
--> (http://bugs.winehq.org/attachment.cgi?id=18047)
good preview
The print preview of my ERP is broken by the following patch:
df76fe6f0cdd55568ba67489cc725813804061fd is first bad commit
commit df76fe6f0cdd55568ba67489cc725813804061fd
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Tue Jun 24 16:11:40 2008 +0900
gdi32: Perform the world transform separately from font scaling.
:040000 040000 7e4c02c7f5cb4715c20194183dafaacd61654202
414c51959fb6c23ff9ffe29a2dec0289bba6670e M dlls
Characters seems to be stretched.
Please also note that in the latest wine version (1.1.10) the situation changed
again, and characters seems to be totally inverted.
I attach 3 screenshots:
- 1.png show the preview before the patch
- 2.png show the preview after the patch
- 3.png show the preview in 1.1.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=15397
Summary: gdi32: path.c fails to build with gcc 4.2, -Werror -O3
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: source
Severity: enhancement
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
ccache /usr/bin/gcc-4.2 -O3 -c -I. -I. -I../../include -I../../include
-I/usr/include/freetype2 -D__WINESRC__ -D_GDI32_ -D_REENTRANT -fPIC -Wall
-pipe -fno-strength-reduce -fno-strict-aliasing -Wdeclaration-after-statement
-Wwrite-strings -Wpointer-arith -Werror -o path.o path.c
cc1: warnings being treated as errors
path.c: In function ‘PATH_PolyPolygon’:
path.c:1079: warning: ‘startpt.y’ may be used uninitialized in this
function
path.c:1079: warning: ‘startpt.x’ may be used uninitialized in this
function
make: *** [path.o] Error 1
Relevant code:
BOOL PATH_PolyPolygon( DC *dc, const POINT* pts, const INT* counts,
UINT polygons )
{
GdiPath *pPath = &dc->path;
POINT pt, startpt;
UINT poly, i;
INT point;
/* Check that path is open */
if(pPath->state!=PATH_Open)
return FALSE;
for(i = 0, poly = 0; poly < polygons; poly++) {
for(point = 0; point < counts[poly]; point++, i++) {
pt = pts[i];
if(!LPtoDP(dc->hSelf, &pt, 1))
return FALSE;
if(point == 0) startpt = pt;
PATH_AddEntry(pPath, &pt, (point == 0) ? PT_MOVETO : PT_LINETO);
}
/* win98 adds an extra line to close the figure for some reason */
PATH_AddEntry(pPath, &startpt, PT_LINETO | PT_CLOSEFIGURE);
}
return TRUE;
}
--
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=22838
Summary: Corel Draw 11 not loading
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fernandocarvalho1987(a)hotmail.com
Corel Draw 11 doesn't load properly.
I tested it on wine-1.2-rc1
--
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=14075
Summary: Beyond Divinity: screen corruption
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iborco(a)gmail.com
Background is not drawn correctly in BeyondDivinity.
--
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=20783
Summary: DotNet Issues
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.sharekhan.com/tradetiger/setupnew.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toffan(a)live.in
Hello,
I want to run a DotNet 2.0 application in ubuntu 9.10. I have installed WINE
1.2 and WINETRICKS. But still it did not works. After installation this apps,
it does not show the login window correctly. You can download the DotNet 2.0
application at:
http://www.sharekhan.com/tradetiger/setupnew.html .
Please do this needful.
Thanks in advance!
Toffan
toffan(a)live.in
+91-9040898994
--
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=22187
Summary: Alice 2.2 fails with "can't create Java VM"
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://alicedownloads.org/currentRelease/Alice2.2.zip
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27071)
--> (http://bugs.winehq.org/attachment.cgi?id=27071)
Alice 2.2 +relay,+virtual log (lzma compressed)
With wine-1.1.41-211-g719d904, launching Alice.exe yields a dialog box stating
"can't create Java VM" and the following output:
Error occurred during initialization of VM
Could not reserve enough space for object heap
Since Alice launched in wine-1.0, a regression test was performed, which
indicated:
09712593c8496be5e952b7316099f9eed5043203 is the 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
While bug 21630 reports the same commit, I suspect the problem in that bug is
different. I have attached a +relay,+virtual log as was requested in bug 21630.
--
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=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=21577
Summary: Using WINE for MYOB accounting package & problems with
altering template invoices to include graphics
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)trademarkservices.com.au
WINE wouldn't allow to adjust templates to create invoices with our
logo/graphics included - can incorporate text.
So loaded with VISTA and changed template to include logo/graphics, then
switched back to Linux (ubuntu) but to my surprise, PDFing the invoice through
WINE just "leaves out" the image as if its not there at all....
Please help as we don't want to have to load VISTA each time to print off
proper invoices...
--
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=17201
Summary: No add-ins loadable in Office 2003 PowerPoint
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Frank(a)eyermann-online.de
Created an attachment (id=19105)
--> (http://bugs.winehq.org/attachment.cgi?id=19105)
Powerpoint plugin
In the Add-Ins Dialog in PowerPoint (Tools->Add-Ins) the List box is only if
view pixels high. Adding of Add-Ins is not possible:
When clicking on Add new a file dialog appears
PowerPoint add-in (.ppa file) is chosen
OK
File dialog closes, but nothing happens. Buttons of the dialog box are not
activited, no entry in the list, no entry is added in the respective registry
hive.
OS is OpenSuse 10.3
Wine-Version 1.1.13
I did a typical installation of Office 2003
Add-in I try to load is attached
Hope somebody can help me,
best regards,
Frank
--
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=22269
Summary: Cry of the Infected demo fails with "runtime error
7018"
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.gamershell.com/download_24622.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27201)
--> (http://bugs.winehq.org/attachment.cgi?id=27201)
Cry of the Infected +d3dxof trace
After installing the Cry of the Infected demo and d3dx9 from winetricks to work
around a startup failure, starting a new game leads to some loading, and then a
error message box stating:
"Runtime Error 7018 - Could not load 3D object at line 16058"
I suspect the problem is related to d3dxof, which seems to be confirmed by
installing native d3dxof from winetricks, which makes the game progress further
until erroring with a slightly different error message.
--
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=21953
Summary: Autodesk 3D Studio Max 2010 trial installer fails
because it can't install Backburner
Product: Wine
Version: 1.1.40
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
I did
$ rm -rf .wine
$ wine Autodesk_3ds_Max_2010_English_WIN_32_Trial.exe
(whereupon I hit bug 21951, and continued like this:)
$ sh winetricks gdiplus
$ cd .wine/drive_c/Autodesk/Autodesk_3dsmax_2010_English_Trial
$ wine setup
This failed. Here's c:/users/dank/Temp/3ds\ Max\ 2010\ Setup.log:
...
2010/3/6:16:35:50 dank slave3 Install Microsoft Visual C++ 2005
Redistributable (x86) Succeeded
2010/3/6:16:35:53 dank slave3 Install Microsoft Visual C++ 2008 SP1
Redistributable (x86) Succeeded
2010/3/6:16:39:23 dank slave3 Install .NET Framework Runtime 3.5 SP1
(This may take several minutes) Failed Failure is ignored, Result=1603^M
2010/3/6:16:39:28 dank slave3 Install DirectX® Runtime Update
Succeeded
2010/3/6:16:39:30 dank slave3 Install MSXML 6.0 Parser
Succeeded
2010/3/6:16:39:30 dank slave3 Install Autodesk Backburner 2008.1
Failed Installation aborted, Result=120
Hmm. So I tried installing Backburner by itself:
$ cd
~/.wine/drive_c/Autodesk/Autodesk_3dsmax_2010_English_Trial/support/backburner/
$ wine backburner.exe
...
err:msi:call_script Could not find CLSID for Windows Script
but it seemed to succeed. I then reran the main inner installer:
$ cd .wine/drive_c/Autodesk/Autodesk_3dsmax_2010_English_Trial
$ wine setup
This now thinks Backburner is installed, so that was a good workaround.
Perhaps 'winetricks wsh56' would have worked around it, too; I haven't checked.
The next problem is bug 20211.
--
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=21645
Summary: Winecfg shows up at (0, 0), request to be
screen-centered instead.
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
I think it's better to have it centered on screen, instead of showing at left
corner.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=11826
Summary: World of Warcraft: White Minimap in OpenGL Mode
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zak.mayer(a)gmail.com
Since version 0.9.48 to current 0.9.56 if you use the switch from command line
-opengl OR set the World of Warcraft (WoW) Config.wtf SET gxApi "opengl" the in
game minimap turns white.
With these commands off (assumed D3D) the minimap is fine, however the game
runs 15-50 fps less.
With it on you get the white minimap and 15-50fps more.
ATI 8.1 and 8.2 Catalyst driver w/ 9600XT on Ubuntu 7.10
Another bug report mentions: http://bugs.winehq.org/show_bug.cgi?id=6255
But the Text issue mentioned in that post has not applied since version 0.9.53.
--
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=13535
Summary: WarCraft 3 crashes when attempting to run in a window
Product: Wine
Version: 1.0-rc2
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Rincebrain(a)gmail.com
I attempted to run WarCraft 3 in a window, with and without the OpenGL flag.
Attached is the log.
This is a regression, and I will run git bisect on it later, if nobody beats me
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=14621
Summary: World of Warcraft 2.4.x: text glitches when a GM writes
something
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elegos(a)fastwebnet.it
Created an attachment (id=15022)
--> (http://bugs.winehq.org/attachment.cgi?id=15022)
WINE 1.1.1 World of Warcraft log
When I play at World of Warcraft the chat is all ok but when a GM (with GM
turned on) speaks. The glitches affect only the line(s) the GM writes, and they
are something like unalignment of the font. In the attachment: an image where
the GM 'Loka' writes 'questa è una lunga prova' (I can add the log of WINE if
you want it). Note: the chat addon does not influence the glitch (it happens
also with plain game with no addons).
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=11882
Summary: Visual J++ 1.1 installer hangs during "Installing DAO
components"
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Don't ask me why, but I decided to test a dusty old copy
of Visual J++ 1.1. To install, you have to do
winetricks fakeie6
to get App Paths/iexplore set, else it tries to install IE3,
and then fails saying "Can't install IE3 on systems which have IE4".
The install hangs with the message "Installing DAO components".
The subinstallers work fine by themselves.
(The main installer seems to create an invalid
c:/windows/uninst.exe that crashes the dao installer,
but that's not this problem.)
The log seems to show a windows message being sent by
a win16 executable, followed by a win32 executable
waiting forever for a windows message. Plumbing problem?
0017:Call USER.111: SENDMESSAGE(ffff,c03e,0000,00000000) ret=11ef:06a5 ds=11f7
0014:Ret user32.PeekMessageA() retval=00000000 ret=0041f1f9
0014:Call KERNEL32.WaitForSingleObject(00000048,000003e8) ret=0041c1d2
0009:Ret user32.GetMessageA() retval=00000001 ret=0040109f
0009:Call user32.TranslateMessage(0033fe64) ret=0040108b
0009:Ret user32.TranslateMessage() retval=00000000 ret=0040108b
0009:Call user32.DispatchMessageA(0033fe64) ret=00401092
0009:Call window proc 0x401210
(hwnd=0x10024,msg=WM_TIMER,wp=00000000,lp=00000000)
0009:Call KERNEL32.WaitForSingleObject(00000044,00000000) ret=00401384
0009:Ret KERNEL32.WaitForSingleObject() retval=00000102 ret=00401384
0009:Ret window proc 0x401210
(hwnd=0x10024,msg=WM_TIMER,wp=00000000,lp=00000000) retval=00000001
0009:Ret user32.DispatchMessageA() retval=00000001 ret=00401092
0009:Call user32.GetMessageA(0033fe64,00000000,00000000,00000000) ret=0040109f
0009:Ret user32.GetMessageA() retval=00000001 ret=0040109f
...
--
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=11750
Summary: Legacy of Kain - Defiance: Only left half of the screen
with Anti-Aliasing activated
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: HMWiesinger(a)gmx.at
When I activate Anti-Aliasing in the graphics settings of the game and then
apply it, I only see the left half of the screen. The right half is black. This
does not affect anything else, as I can still
turn it off again, or even play the game. But it is quite senseless with only
half the 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=13053
Summary: Hoyle Casino 2008 autorun fails to invoke installer
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=12811)
--> (http://bugs.winehq.org/attachment.cgi?id=12811)
Hoyle Casino 2008 autorun error
When running the Hoyle Casino 2008 autorun program with today's Git
(wine-0.9.61-141-gb574c11), pressing the "Install Hoyle Casino Games" button
fails with two message boxes, one with "1011", and the other a complaint about
no application being associated with given file extension. Attached is a
screenshot of the second dialog and relevant process traces.
--
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=13149
Summary: Acrobat Pro 7 installer fails to detect other Acrobat
Pro installations
Product: Wine
Version: 1.0-rc1
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
In wine it is possible to install multiple versions of Acrobat Pro without
complaint. Specifically, I have been able to install both Acrobat Pro 6 and the
tryout version of Acrobat Pro 7.
However, when I tried to do the same in Windows, that is when I tried to
install Acrobat Pro 7 (Tryout Version) when Acrobat Pro 6 was already
installed, I received the following error message:
Setup has detected that you already have a more functional product installed.
Setup will now terminate.
Question: is it the wine team's desire to implement Windows completely, both
good and bad? Or merely to implement the good bits and leave the bad?
--
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=14619
Summary: Civilization III: Polygons got Y-axis inverted
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cja(a)gmx.net
Created an attachment (id=15020)
--> (http://bugs.winehq.org/attachment.cgi?id=15020)
Civ3: Wrongly placed boxes.
All boxes and polygones have their Y-axis inverted. It looks like the Y center
is in the middle of the screen, and posstive Y becomes negative and the other
way around.
Please have a look at the screenshot. The black boxes that seems to be
flying should be a frame around each "City information Box".
The same happens when you move around with a settler and is about to
build a new town. The polygon that shows the possible new borders has
also its Y axis inverted.
--
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=13673
Summary: Screen mess up with 2D and 3D views
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mathieu.peyrega(a)orange.fr
While trying to run the Alcyone module of the Pléïade+Comfie software
available here :
http://www.izuba.fr/telechargement.htm (password izuba2001) (will run only in
demonstration mode without registration key)
the application screen mess-up as soon as I enter the 3D or 2D tabs... which
let me think it is related to some Gdi or OpenGL/DirectX 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=16793
Summary: Majesty fails to start
Product: Wine
Version: 1.1.12
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jcollins(a)asgardsrealm.net
With wine v1.1.10 under Ubuntu 8.04, Majesty functions fine. However, with the
same version of wine under Ubuntu 8.10 it fails to start at all. Instead
failing with the attached output. Older wine versions back through 1.1.6
(first packaged for 8.10) and newer versions through 1.1.12 (latest packaged
for 8.10) fail with similar 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.
http://bugs.winehq.org/show_bug.cgi?id=19727
Summary: Actio multimedial by Klett gives exception on startup
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Frieder.Ferlemann(a)web.de
Created an attachment (id=23063)
--> (http://bugs.winehq.org/attachment.cgi?id=23063)
console output
Installation seems fine but on startup the application fails with:
"Exception EExternalException in Modul ntdll.dll bei 0002c478. Externe
Exception C0000025."
"Actio multimedial" is a (german) educational software by Ernst Klett Verlag
GmbH.
ISBN 978-3-12-623140-4
The backside of the cover of the CD has a Logo "MADE WITH macromedia".
Backtrace:
=>0 0x7bc3c478 raise_status+0x38() in ntdll (0x0032f5f8)
(console output attached)
There was a similar report in this newsgroup last November:
http://thread.gmane.org/gmane.comp.emulators.wine.user/35906/focus=36011
but it didn't seem to have resulted in a bug report here.
Greetings (and thanks for wine!)
Frieder
--
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=20488
Summary: msiexec.exe crashes upon software installation
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tomm(a)sbox.tugraz.at
Created an attachment (id=24389)
--> (http://bugs.winehq.org/attachment.cgi?id=24389)
This is the output of wine to the console including traceback
msiexec.exe crashes while installing a program (Symyx Draw). The last message
in the installer window reads: Publishing qualified components. Output of wine
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=20882
Summary: Slow rendering of graphics in PowerPoint 2003
Product: Wine
Version: 1.1.33
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikko.ronkko(a)iki.fi
The graphics rendering in PowerPoint 2003 is very slow. It takes almost ten
seconds to render a slide with just a couple of objects.
This screen recording shows the problem:
http://www.youtube.com/watch?v=_nCHBBxaCM4
Similar rendering issues are also present in other programs. In my case I have
noticed this issue also with Polar ProTrainer 5.
I tested this with Mac OS X 10.6.2 and Ubuntu 9.10 both with the wine version
1.1.33 On both systems many other even more graphics intensive software run
without any problems or slowdowns.
--
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=14137
Summary: Entropia Universe 6.5.1 won't start
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://downloads.zdnet.co.uk/0,1000000375,39188457s,00.h
tm
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://www.entropiaforum.com/forums/off-topic/117707-entropia-universe-linu…
said Entropia Universe didn't start under Wine, so I grabbed
the first download for it I could find,
http://downloads.zdnet.co.uk/0,1000000375,39188457s,00.htm
I looked at the Appdb
http://appdb.winehq.org/objectManager.php?sClass=application&iId=2655
and guessed at the following recipe to install prerequisites:
sh winetricks gecko directx9 vcrun2005 vcrun2005sp1 wmp10
The app installed, but when it tried to start, it failed quickly.
You can reproduce after installation with
cd ~/".wine/drive_c/Program Files/MindArk/Entropia Universe"
wine Entropia.exe
The console shows, among others, the error
err:module:import_dll Library MSVCP80.dll (which is needed by L"C:\\Program
Files\\MindArk\\Entropia Universe\\stlport.5.1.dll") not found
Er, looks like I never updated winetricks to fix
http://www.winehq.org/pipermail/wine-users/2008-May/033957.html
OK, done, winetricks now sets win2k when installing vcrun2005.
But Entropia still fails to load; the console shows
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT"
err:module:attach_process_dlls "MSVCR80.dll" failed to initialize, aborting
and a dialog says
"Runtime Error!
Program: C:\\Program Files\\MindArk\\Entropia Universe\\Entropia.exe
R6034
An application has made an attempt to load the C runtime library incorrectly"
So the app is finding msvcr80 the wrong way, but why?
--
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=17952
Summary: Autodesk Inventor 11 fails to start
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=20297)
--> (http://bugs.winehq.org/attachment.cgi?id=20297)
Inventor.exe Wine 1.1.18
I'm using Wine 1.1.18 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386. I installed gecko, dotnet11, dotnet20,
directx, mdac27, msxml3, wmp9 through winetricks.
I installed Autodesk Inventor 11 (installer reported it was almost successful)
and tried to run it but with no success. In output there was:
Unhandled exception: unimplemented function ntoskrnl.exe.KeInitializeMutex
called in 32-bit code (0x7b84203b).
In Bug#17212 Vitaliy Margolen has said that crash was caused by cdr4_2k.sys
--
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=10660
Summary: title bar buttons incorrectly drawed
Product: Wine
Version: 0.9.50.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mizvekov(a)gmail.com
Created an attachment (id=9476)
--> (http://bugs.winehq.org/attachment.cgi?id=9476)
screenshot demonstrating the problem
All titlebar buttons are beeing drawn as an X, and they are all misaligned too.
--
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=12606
Summary: Use ~/.Trash when available
Product: Wine
Version: 0.9.59.
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teloiv(a)gmail.com
Some platforms Wine runs on - Ubuntu/Debian, Mac OSX, and Gentoo at the very
least - use ~/.Trash for garbage files instead of ~/.local/share/Trash. Wine
should use ~/.Trash when available instead of creating ~/.local/share/Trash -
which the user may not realize exists and confuse them as to where their space
is going.
The user can avoid this by symlinking ~/.Trash to ~/.local/share/Trash but it
isn't something that the user should have to do to make things work properly.
--
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=16135
Summary: msvcrt.dll._wtmpnam not implemented
Product: Wine
Version: 1.1.8
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: holy(a)wustl.edu
Created an attachment (id=17376)
--> (http://bugs.winehq.org/attachment.cgi?id=17376)
A small head start on implementing wtmpnam
In running an old program, I received the following error:
wine: Call from 0x7b845450 to unimplemented function msvcrt.dll._wtmpnam,
aborting
I downloaded the source code for 1.1.8 and took a stab at implementing it. A
diff (relative to wine-1.1.8/dlls/msvcrt/file.c) is attached.
Note: I don't really know Wine, and I did not even get as far as building it to
test it (if MSVCRT_tmpname gets initialized, where is that?)---so please don't
take this as anything other than an attempt at a start.
--
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=13058
Summary: BYOND Suite: Browser windows do not function.
Product: Wine
Version: 0.9.61.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris062689(a)gmail.com
In BYOND.exe the browser element simply does not appear.
(May be due to ole32.dll override to allow login?)
In DreamSeeker.exe and DreamMaker.exe we believe is causing a majority of
crashes with the client.
--
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=12770
Summary: Build breaks
Product: Wine
Version: 0.9.60
Platform: All
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: contactmayankjain(a)gmail.com
Created an attachment (id=12429)
--> (http://bugs.winehq.org/attachment.cgi?id=12429)
configure log file
I have downloaded the wine-0.9.60.tar.bz2 file untar this on my freebsd 6.3
system and run configure then make depend && make but I am getting following
error.
`makedep' is up to date.
fontforge -script ../fonts/genttf.ff .sfd.ttf
Copyright (c) 2000-2008 by George Williams.
Executable based on sources from 20:25 GMT 3-Feb-2008.
Library based on sources from 03:08 GMT 3-Feb-2008.
The requested file, .sfd.ttf, does not exist
Open: Failed to open: .sfd.ttf
Called from...
../fonts/genttf.ff: line 2
*** Error code 1
Stop in /usr/home/mayank/Desktop/tm/wine-0.9.60/libs.
*** Error code 1
I am attaching the log file with this mail. Please find the attachment.
Regards
Mayank Jain
--
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=14836
Summary: Autocad 2005 : visual lisp ide problems/crashes
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max(a)veneto.com
Opening Visual Lisp Ide from inside autocad don't allow to switch back to
autocad again without closing it. Well, you can select Autocad window, but it's
irresponsive, visual lisp ide seems in modal mode.
Upon closing ide, autocad becomes responsive again.
More, if you open visual lisp ide, then help system from it, then close visual
lisp ide, if you try to close help system autocad crashes. That don't happens
if you close help BEFORE closing visual lisp ide.
Max
--
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=12292
Summary: Michelin Rally Masters: Application crashes when PAL_8
Texture and Mipmapping options are enabled
Product: WineHQ Apps Database
Version: unspecified
Platform: All
URL: http://appdb.winehq.org/objectManager.php?sClass=applica
tion&iId=6861
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Salz85(a)gmail.com
Created an attachment (id=11738)
--> (http://bugs.winehq.org/attachment.cgi?id=11738)
Output Log, with "=+trace" enabled.
When the application is started with both options active, it crashes wine.Using
them in separate occasions does not recreate the crash, although Enabling the
"Mipmap" Option create serious black artifacts all over the distants polygons
(see screenshot from appdb).
In the following attachment were removed all the instances of
"fixme:d3d_draw:drawPrimitive Using software emulation because manual fog
coordinates are provided"
which were printed until the exit from the application, basically making the
whole Log bigger than 10MB.
--
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=13579
Summary: Adobe Acrobat Standard 7 -- using menus on first startup
causes X to freeze
Product: Wine
Version: 1.0-rc2
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
The first time you start up Adobe Acrobat Standard 7, it presents you with a
large dialog box asking you if you want to register the product.
If you attempt to open a menu in the split second between program startup and
the appearance of this dialog box, the application, wine, and the gnome session
freezes, forcing you to kill X.
Acrobat Standard is a slimmed down version of Acrobat Pro. For a more detailed
version of the difference between the two products, see:
http://www.adobe.com/products/acrobat/matrix.html
--
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=12971
Summary: Bitware Bitfax can not detect modems during setup
Product: Wine
Version: 0.9.61.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: k.king177(a)ntlworld.com
Bitware Bitfax v3.30.20 bundled with many datafax analog modems (some time ago)
tries to detect modem during install. normally it looks for COM1 to COM12.
Under all recent versions of wine up to 0.9.61 it issues a msgbox headed
"Modem Detection Error"
with text
Modem detection found a com port currently used by other application. Do you
want to continue the detection anyway ?
It issues this message for each of the 12 Com ports it's trying to find.
In the console the text similar to below appears for each COM port it checks.
err:int21:INT21_FileDateTime int21: unknown/not implemented parameters:
int21: AX 5769, BX 0007, CX 0000, DX 11f7, SI 0000, DI 0000, DS 1247, ES 1437
I only have a COM1 port which I have linked and set in registry as per various
help resources. The AX, CX, SI, DI are static. The BX register changes by hex
of 1 per port. The other registers vary slightly but I have not got logged
(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=13061
Summary: DreamSeeker: Map Element causes slowdown.
Product: Wine
Version: 0.9.61.
Platform: All
URL: http://byond.com/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris062689(a)gmail.com
When a map is displayed on the skin, it causes general slow downs due to the
DirectX rendering, when OpenGL rendering is used the application increases FPS
quite a bit, but with the loss of various alpha blending, map stretching, etc.
--
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=12566
Summary: version 9.59 breaks shift-click and ctrl-click in World
of Warcraft
Product: Wine
Version: 0.9.59.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: polpak(a)yahoo.com
This was reported on AppDB already, but I didn't see a bug for it in bugzilla,
so I'm reporting it here.
Recently upgraded to 0.9.59 and the shift-click and ctrl-click is not working
properly in the game. It reacts as though it were a normal click. Downgrading
to 0.9.58 solves 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=12791
Summary: Microsoft Office XP dont install the Spelling and
grammar not installed
Product: Wine
Version: 0.9.60
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: obelich(a)gmail.com
In the instalation Office 2003 or XP the spelling and grammar check is not
installed and the macross in excel is not working
--
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=15130
Summary: Wine notepad: Extension behaviour differ from Windows
Product: Wine
Version: 1.1.2
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine-bugs(a)mohag.net
Running Wine notepad with an non-existant file as a parameter results in
notepad appending .txt to the filename. This makes it impossible for a program
to use notepad to create a non-txt file.
Expected behavour:
notepad fakefile.test
"Cannot find the fakefile.test file. Do you want to create a new file?" (From
Windows 2003. Even with a fakefile.test.txt existing in the same directory)
Current wine (1.1.3) behaviour:
notepad fakefile.test
File "fakefile.test.txt" does not exist. Do you want to create a new file?
With fakefile.test.txt in existance:
notepad fakefile.test
notepad opens fakefile.test.txt rather than giving the expected error message.
--
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=9260
Summary: the font the winecfg id sustitute by chess figures
Product: Wine
Version: 0.9.42.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agustin.romero(a)gmail.com
Created an attachment (id=7513)
--> (http://bugs.winehq.org/attachment.cgi?id=7513)
winecfg window
I install kchess-elite, but i had a problem with the fonts. later, I invoke
winecfg and the font are lost. I unistall wine this:
apt-get remove --purge wine
and reinstall it, but the problem is the same. I send a pgn file.
--
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=13628
Summary: Clicking on form may cause deadlock
Product: Wine
Version: 1.0-rc3
Platform: All
URL: http://www.apeh.hu/bevallasok/nyomtatvany
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kamihir(a)freemail.hu
Clicking on form may cause deadloc in very rare case. I do not know what is it
but the console oputput shows this:
fixme:system:SystemParametersInfoW Unimplemented action: 8192
(SPI_GETFOREGROUNDLOCKTIMEOUT)
fixme:system:SystemParametersInfoW Unimplemented action: 8193
(SPI_SETFOREGROUNDLOCKTIMEOUT)
When I hit CTRL+c in console, I can continue the work, hoewer the application
notify about CTRL+C was pressed.
Downloadable application:
http://www.apeh.hu/data/cms7266/Abev2006telep.exehttp://www.apeh.hu/data/cms14315/06082m.exe
Note I do not have exact way to reproduce it. Just click on elements.
--
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=12726
Summary: wineprefixcreate fails to add fonts
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam(a)thenerdshow.com
wineprefixcreate fails to add fonts on new system
$ wineprefixcreate --prefix foo
cp: target `/home/hellork/foo/dosdevices/c:/windows/fonts/' is not a directory
Reason: fonts dir is created as Fonts instead of fonts. Note incorrect case. cp
is case-sensitive and so fails to copy the fonts.
--
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=15331
Summary: Warhammer Patch Bug!
Product: Wine
Version: 1.1.4
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zirous(a)gmail.com
Depending on the Distro determines if the patcher will load or not. For example
I can run the game fine under Gentoo X86_64. The Warhammer Patcher is known to
get stuck on Ubuntu. This is the error the Ubuntu system cannot get past -->
fixme:shdocvw:PersistStorage_InitNew (0x134d68)->(0x7c0da0)
--
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=9985
Summary: Formz: Menus are viewable but do not work when selected
Product: Wine
Version: 0.9.46.
Platform: All
URL: http://www.formz.com/downloads/demo_log_in.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tehquickness(a)gmail.com
The user can view the menu but when they select an item, the menu simply closes
and nothing happens.
When viewing menus, the following error is given:
fixme:menu:SetMenuInfo MNS_NOTIFYBYPOS partially implemented
And after selecting a menu item, the following error is given:
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
This severely limits the usability of this otherwise great working program.
This is one of two bugs present in FormZ.
--
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=10263
Summary: ie6 doesn't display non-https embedded pictures
Product: Wine
Version: 0.9.47.
Platform: All
URL: https://uncensored.citadel.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: w.goesgens(a)outgesourced.org
I've installed IES4l, and had this problem. Upgraded to latest wine debs from
wine.org, the problem still is here.
Log into https://uncensored.citadel.org with ie6 in wine.
(create your account for that)
Click on rooms, you will get a list of rooms.
Click on 'Capture this', a warning message about unencrypted embedded content
arises, whether or not one clicks on continue a second message box pops up with
some application warning, and the page is empty.
--
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=13305
Summary: OpenGL DirectDrawRenderer renders black screen only
Product: Wine
Version: 1.0-rc1
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: megatog615(a)gmail.com
Running some games, such as C&C: Tiberian Sun with "DirectDrawRenderer opengl"
causes only a black screen to be rendered when the game starts. The rest of the
game functions correctly, such as the menu, so you can still exit the game
normally.
This happens on several different GPUs(so far, only NVIDIA is confirmed) so I
don't think it is driver or chipset related.
--
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=13630
Summary: Crash when clearing ie6 cache - needs FreeUrlCacheSpaceA
Product: Wine
Version: 1.0-rc3
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jon_p_griffiths(a)yahoo.com
CC: eddie(a)lania.nl
See log in http://bugs.winehq.org/attachment.cgi?id=13579
--
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=12540
Summary: Favourites menu doesn't work as expected
Product: Wine
Version: 0.9.46.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maciej.trebacz(a)gmail.com
In Watchtower Library 2007 the "Favourites" menu doesn't work as expected.
First, some set up:
1. Open some article
2. Use "Favourites" menu to "Add to favourites"
3. Repeat 1 and 2 one or more times.
Now, when trying to open a favourite here's the correct behaviour:
1. Open "Favourites" menu
2. Click on the first added article
3. The article displays in the viewer
4. Open menu again
5. Click on the second or any other than first article
6. It displays correctly.
However, something diffrent happens:
1. Open "Favourites" menu
2. Click on the first added article
3. The article displays in the viewer
4. Open menu again
5. Click on the second or any other than first article
6. Program displays FIRST added article, not the one selected.
This behaviour renders Favourites menu useless. It works correctly under
Windows XP. It's worth noting that favourites are executed by an external
program that comes with Watchtower Library 2007 - WTFavLauncher.exe and the
favourites are files located in windows/profile directory with *.wtfav
extension. It seems that regardless of which item in menu user clicks,
WTFavLancher picks always first added file. I have no idea whether the WTLib
doesn't pass the parameter correctly or the WTFavLauncher program can't locate
the file.
It's also worth noting that executing WtFavLauncher.exe manually with filename
of some favourite item as a parameter it works correctly - displays given
article in Watchtower Library program.
What logs can I attach to help to solve this issue?
--
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=14357
Summary: undefined edge padding in bitmaps annoys valgrind
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14655)
--> (http://bugs.winehq.org/attachment.cgi?id=14655)
clear edge padding on X11 bitmap
When storage for a X11 bitmap has padding for alignment at the ends of each
scan line, then the undefined padding bytes annoy valgrind(memcheck). Patch
against wine-1.0 is attached below, and also will be sent to
wine-patches(a)winehq.org.
--
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=12938
Summary: Description parsing code isn't working correctly
Product: WineHQ Apps Database
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pablo.romeroquinteros(a)gmail.com
It looks like our description parsing code isn't working correctly in
this case. Can you file a bug at http://bugs.winehq.org against the
application database for this issue?
Chris
It looks like our description parsing code isn't working correctly in
this case. Can you file a bug at http://bugs.winehq.org against the
application database for this issue?
Chris
On Sat, May 3, 2008 at 9:17 AM, Pablo A. ROMERO QUINTEROS
<pablo.romeroquinteros(a)gmail.com> wrote:
> Hi,
>
> Please update the description for 'PL7 Pro v3.4'.
>
> I've re-updated that, but the changes doesn't show on the browse page
> (http://appdb.winehq.org/appbrowse.php?catId=8)
>
> Thank!
>
> Regards...
>
> -----
> Pablo A. ROMERO QUINTEROS
--
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=14835
Summary: Autocad OLE automation HUGE cpu usage
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max(a)veneto.com
Upon using some command that invokes OLE automation, CPU usage for autocad
(and wineserver) rises to about 50% for each of them (total about 98%). I've
got a 2 core machine, so it's still usable, but slows down everything. Stopping
the command don't help; closing ALL of active drawings does help, CPU goes to
2%, but on new drawing/open drawing CPU still raise to 100%, even with no
further OLE commands.
Max
--
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=13057
Summary: BYOND.exe: crashes upon attempting to log in.
Product: Wine
Version: 0.9.61.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris062689(a)gmail.com
BYOND Pager crashes when I attempt to log in.
Adding ole32.dll as an override fixes this issue.
--
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=9896
Summary: missing minimize box in vb6 application
Product: Wine
Version: 0.9.46.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
Created an attachment (id=8389)
--> (http://bugs.winehq.org/attachment.cgi?id=8389)
the two example programs
These are two very simple VB6 applications, 0x6CA0000.exe and 0x6CE0000.exe
In windows the minimize box is visible, while in wine (Ubuntu 7.04 - wine
0.9.46) the first one doesn't have the box:
0x6CA0000 -> WRONG, the min box doesn't appear
' VB6 form: Border Style: Fixed single (1), Max button = False, Min Button=
True
0x6CE0000 -> RIGHT, the min box appear
' VB6 form: Border Style: Sizable (2), Max button = False, Min Button= True
0x6CE0000 - 0x6CA0000 = WS_THICKFRAME
--
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=9997
Summary: HTML won't diplay in embedded forms
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Charlatat(a)hotmail.com
GoldMine 6.7 won't display any HTML. Logs complain of unimplemented methods in
shdocvw and mshtml.
--
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=12183
Summary: EVE Premium 4.10.51200 does not render correctly with
shadows on
Product: Wine
Version: 0.9.58.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spedrosa(a)gmail.com
Created an attachment (id=11579)
--> (http://bugs.winehq.org/attachment.cgi?id=11579)
In station, with shadows detail set to "extreme"
With premium content, if shadows are turned on, rendering errors occur.
I'm attaching some screenshots demonstrating the problem.
There are two shots inside the station, one at the "extreme" detail setting,
showing a purple texture all over the screen. The other one was taken at the
"normal" setting. It is possible to see more, but there is something clipping
the ship.
Two of the shots are taken outside the station, at the "extreme" shadow detail
setting. They are very similar shots, taken at different zoom levels. It is
possible to see that some of the textures are out of place.
--
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=15229
Summary: Dragon NaturallySpeaking 10 has gdiplus error on
microphone display box
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
Created an attachment (id=15993)
--> (http://bugs.winehq.org/attachment.cgi?id=15993)
screenshot
wine-1.1.4-203-gcd999b2
DNS 10 Standard has a problem (as of today's git) displaying a floating box
that shows the microphone and other product features.
The box comes up without the usual text and sub-boxes on it. (See attached
screenshot.)
The microphone works, but if you try to do anything else, such as access a
drop-down menu, the program crashes.
The error is:
fixme:gdiplus:GdipSetPathGradientSurroundColorsWithCount not implemented
fixme:gdiplus:GdipSetLineBlend not implemented
wine: Call from 0x7b845890 to unimplemented function
gdiplus.dll.GdipSetPathGradientBlend, aborting
When I tried it with the gdiplus in winetricks, it just crashed.
--
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=9968
Summary: Problem mapping large files
Product: Wine
Version: 0.9.46.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert(a)cs.auckland.ac.nz
I'm trying to use Microsoft's ImageX with Wine as part of a small Linux
image to install Windows disk images.
It works great for a 120Mb file, however when I try it on a 2.3Gb file,
it fails with "Invalid data".
The tool is designed for dealing with large files, so it looks like a
problem in Wine.
I reran it with +server,+relay which included the following in the output:
0009:Call
KERNEL32.CreateFileMappingW(00000050,00000000,00000002,00000000,8fcbf02e,00000000)
ret=01028a7b
0009: create_mapping( access=000f0005, attributes=000000c0, rootdir=(nil),
size_high=0, size_low=-1882460114, protect=65, file_handle=0x50, name=L"" )
0009: create_mapping() = INVALID_PARAMETER { handle=(nil) }
0009:Ret KERNEL32.CreateFileMappingW() retval=00000000 ret=01028a7b
0009:Call KERNEL32.SetLastError(00000000) ret=01019bf6
0009:Ret KERNEL32.SetLastError() retval=00000000 ret=01019bf6
--
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=13952
Summary: voipcheap client installs but does not run
Product: Wine
Version: 1.0-rc5
Platform: All
URL: www.voipcheap.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Created an attachment (id=14102)
--> (http://bugs.winehq.org/attachment.cgi?id=14102)
+relay for running voipcheap client
voipcheap is a voip service that offers free calls to many countries. The
client appears to install OK but when I try and run it it dies.
+relay 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=11185
Summary: Wine hardlock on x86_64
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jabberuser(a)gmail.com
Hi, i test wine 0.9.40, latest stable and svn build but i have the same error
(on cedega6.0 too). When I use windows apps who use direct randering, it
hardlock my PC, when i disable GLX and DRI in xorg.conf it work, but without
direct randering (sloooow). On google i found many post this bugs, always on
x86_64 (almost all on ubuntu users). I use current testing Gentoo ~amd64. My
hardware: Core2 2.2GHz (mobile), 2G ddr2/667MHz/cl5, INTEL x3100.
/ Sorry about my English /
--
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=9286
Summary: nice icon and menu
Product: Wine
Version: 0.9.43.
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bl4ck.3yed(a)gmail.com
wine should drop a icon in /usr/share/pixmaps that can be used for the wine
menu in the sysytem's main menu.Also there(in the wine menu) should be
launchers for winecfg and uninstaller
--
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=12564
Summary: gdi32 font test fails if ttf-mph-2b-damase/ttf-larabie-
uncommon installed
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: NEW
Keywords: testcase
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: flexo(a)holycrap.org, austinenglish(a)gmail.com
Created an attachment (id=12146)
--> (http://bugs.winehq.org/attachment.cgi?id=12146)
+font log, bzip2 -9'ed
In current git/kubuntu hardy/kde 4:
font.c:1715: Test failed: W: tmLastChar for MPH 2B Damase a58 < 0xf000
font.c:1718: Test failed: W: tmDefaultChar for MPH 2B Damase 20 != 0x1f
Attached is a +font log
See also bug 8086.
--
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=14028
Summary: Can't use the updater on Ragnarok Online.
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexman98(a)gmail.com
Created an attachment (id=14227)
--> (http://bugs.winehq.org/attachment.cgi?id=14227)
Error log.
I post this as a new bug report as asked.
Another issue that I found with Ragnarok Online is the Updater of the Official
(iRO, KRO, euRO, etc.) and Private Servers, it doesn't work, you can't even
open it.
I saw that you need the library MFC42.dll to run the updater, so, I downloaded
and moved it to the RO directory, and after that, I tried again and received
some warnings and errors that you can see on an attach.
You can't use the updater even if you download that Dll.
Thanks for your time.
--
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=22975
Summary: Link to GoVest is no longer working (Geocities
offline)
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
URL: http://www.winehq.org/docs/winedev-guide/wine-debugger
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atalanttore(a)googlemail.com
Hi
The link to govest.zip (url: http://www.geocities.com/GoVest/) is no longer
working, because Geocities is offline forever.
An alternative link to download GoVest could be http://www.oocities.com/govest/
Regards,
Atalanttore
--
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=9526
Summary: Asyncpro and Linux
Product: Wine
Version: 0.9.44.
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: software(a)rel-tek.com
Hi,
I am trying to convert my program to run on Linux under wine. I have been very
successful so far but one thing that is stopping me from going any further.
That is Asyncpro. My program uses Asyncpro to get access to comports and to
send and receive data. Apparently, wine HQ is having trouble dealing with
Comports using Asyncpro.
Initially, I started running my window program on Linux (PCLinuxOS) under
crossover. It failed miserably. My program connected and was communicating
through comport but within running for a minute or so, a lots of error message
boxes pop up non-stop with message, "too many open files." I couldn't figure
what it was. So, after playing around with that far awhile, I changed to
another Linux OS. This time instead of using CrossOver I decide to use Wine HQ.
Great, I thought when everything was going great with Wine HQ on SimplyMephis.
My program started with no problem and even connected to serial port. From
there I was able to communicate non-stop with no error boxes of any kind until
I tried to shut my program down. My program completely froze to a point I had
to go into window manager to kill wine-server or It will not shutdown. I still
think there something not quiet right about Asyncpro on Wine.
When I ran debug on Wine, I got messages like
fixme:win:LockWindowUpdate(0x10020) partial stub!
...
Is anyone having a similar problem or is there a known bug with Wine and
Asyncpro?
I will probably have to write my own comport control tool to better manage
serial communication.
Please, Help.
--
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=15168
Summary: wine remove
Product: Wine
Version: 1.1.4
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Hi All,
In the wine-1.1.4.tar.bz2's "Tools" directory we have a very nice script
called "wineintall".
Would you please consider a corresponding tool called "wineremove". It
would be very helpful in removing and reinstalling, switching back and
forth from and to the RPM build, general house keeping, etc..
Many thanks,
-T
--
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=12979
Summary: Trucks&Trains game error in quartz.dll
Product: Wine
Version: 0.9.61.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mike2006michael(a)mail.ru
CC: mike2006michael(a)mail.ru
Game - Tracks & Trains Tycoon
Game graphics - DirectX or Open GL
If i Use Open GL
While I using wine 0.9.60 with this game there are no problems...
I upgrade wine to 0.9.61
Now game crashes with error in quartz.dll
If I use Windows dll quartz - game - runnning but very slowly
If i Use DirectX
With Direct X ,game don't want starting
log
fixme:win:EnumDisplayDevicesW ((null),0,0x1caf814,0x00000000), stub!
fixme:d3d:test_pbo_functionality >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502)
from Loading the PBO test texture
@ directx.c / 3518
err:d3d:WineD3D_ChoosePixelFormat Can't find a suitable iPixelFormat
fixme:xrandr:X11DRV_XRandR_SetCurrentMode Cannot change screen BPP from 32 to
16
--
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.