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=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=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=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=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=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=13156
Summary: ETO_OPAQUE and clear style are not transparent on a
bitmap
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heiko_tietze(a)web.de
I paint some text on a bitmap using
Canvas.TextFlags:=ETO_OPAQUE;
Canvas.Brush.Style:=bsClear;
TextOut(...
resulting in a black background around the intended transparent text.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12300
Summary: World of warcraft graphical corruption preventing play
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: russell.h(a)blueyonder.co.uk
Created an attachment (id=11747)
--> (http://bugs.winehq.org/attachment.cgi?id=11747)
wine command line output
I have been unable to play with wine since the patch. I can start the game and
login, the login screen looks fine. When I get to the character screen this is
what I see img167.imageshack.us/my.php?image=24errornj5.png (screenshot).
Black text and missing graphics.
This is my view in game. No interface and graphics are rendered incorrectly.
img413.imageshack.us/my.php?image=orgrimmarlsdah9.png (screenshot)
I am running Ubuntu 7.10, wine 0.9.58 and catalyst 8.3 drivers. Everything ran
flawlessly before wow patch 2.4. I have tried adding and removing all the
registry and config tweaks I had added. If I run the game without the SET gxApi
"opengl" line it runs successfully and graphics are rendered correctly but only
runs at 10fps.
I have attached a copy of my wine output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
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=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=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=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=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.
http://bugs.winehq.org/show_bug.cgi?id=14178
Summary: Can't paste large amounts of text into an application
via the clipboard
Product: Wine
Version: 1.1.0
Platform: All
URL: http://www.gutenberg.org/files/36/36.txt
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msclrhd(a)gmail.com
The following tests were carried out using `wine notepad` and the Gutenberg
text for "War of the Worlds" (http://www.gutenberg.org/files/36/36.txt) in a
native Firefox 3.0 on Ubuntu Linux. The same thing happens with Cepstral
SwiftTalker.
1. select from the start of the document upto and including "BOOK ONE" - i.e.
the first page or so.
2. press Ctrl+C to copy the data to the clipboard.
3. go to notepad, and press Ctrl+A, Ctrl+V to paste the data from the
clipboard.
The data is pasted correctly into the edit control.
1. select from the start of the document upto and including "CHAPTER EIGHT".
2. press Ctrl+C to copy the data to the clipboard.
3. go to notepad, and press Ctrl+A, Ctrl+V to paste the data from the
clipboard.
The data upto "way back from the edge of the pi" is pasted. The rest is
missing.
1. select all of the document.
2. press Ctrl+C to copy the data to the clipboard.
3. go to notepad, and press Ctrl+A, Ctrl+V to paste the data from the
clipboard.
The text "x" is pasted into the edit control.
NOTE: The text can be successfully pasted into a native application (e.g.
gedit).
NOTE: Saving the text to a file (e.g. from gedit) and then loading it from the
File > Open menu in notepad successfully displays all of the 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=11854
Summary: Windows programs in Wine menu are behind Programs menu
Product: Wine
Version: 0.9.56.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anssi.hannula(a)gmail.com
The Windows menu hierarchy we have in Applications->Wine causes most windows
applications to end up under IMO useless "Programs" submenu.
Maybe that "/Programs/" could be stripped out from the hierarchy, so that the
applications end up under "Wine" menu directly?
--
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=11533
Summary: firefox 2.0.0.12 crashes when visting news.google.com
Product: Wine
Version: 0.9.55.
Platform: All
URL: http://ftp.iinet.net.au/pub/mozilla/firefox/releases/lat
est/win32/en-US/Firefox%20Setup%202.0.0.12.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
CC: dmitry(a)codeweavers.com
wine-0.9.55, Ubuntu 7.04
Tested Firefox 2.0.0.12 EN-US and NL, both crash when attempting to load
http://news.google.com
Looks like a regression between 0.9.53 and 0.9.54, did a regression test:
c7a6c1af0d1f2ac722f1c0d4f2e518d301d05646 is first bad commit
commit c7a6c1af0d1f2ac722f1c0d4f2e518d301d05646
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Mon Jan 14 19:39:33 2008 +0800
gdi32: Initialize more fields in GetEnumStructs.
:040000 040000 6d592ed86f7ab993c3fc70b06fc803e8657be3ae
c1c620979f9768693eea970ef04f9d94daabad3f M dlls
--
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=13199
Summary: Adobe Shockwave 11.0.0.0 fails to run
Product: Wine
Version: 1.0-rc1
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sgodsell(a)hotmail.com
The older shockwaves like 10.2 and below work without a problem. However the
latest shockwave (Version 11) from adobe does not work. For the test I am
using fedora linux 8 and 9. I have installed the windows version of firefox on
linux using wine which works perfectly. Next I installed the latest shockwave,
and it installs okay, but when it comes to running any shockwave application
then it fails to run.
At first I used the fedora wine (Version 0.9.58) which yielded the same
results. But clearly it is not a case of which version of wine now. I have
confirmed that the latest version of shockwave with the latest version of wine
does not work.
The messages from running firefox with shockwave 11 are as follows:
fixme:ole:DllGetClassObject
CLSID: {b196b286-bab4-101a-b69c-00aa00341d07},
IID: {d5f569d0-593b-101a-b569-08002b2dbf7a}
err:ole:apartment_getclassobject DllGetClassObject returned error 0x80040111
err:ole:CoGetClassObject no class object {b196b286-bab4-101a-b69c-00aa00341d07}
could be created for context 0x80000001
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{b196b284-bab4-101a-b69c-00aa00341d07}
err:rpc:I_RpcReceive we got fault packet with status 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
--
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=12645
Summary: Adobe Acrobat Reader 7 -- AdobeUpdateManager.exe fails
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: jens(a)porup.com
Created an attachment (id=12285)
--> (http://bugs.winehq.org/attachment.cgi?id=12285)
+relay
Included with Adobe Acrobat Reader 7 is AdobeUpdateManager.exe. Running it in
console dies rapidly:
$ wine AdobeUpdateManager.exe
preloader: Warning: failed to reserve range 00000000-60000000
err:dosmem:setup_dos_mem Cannot use first megabyte for DOS address space,
please report
This is the same wine error I experienced when testing bug 9519. Might be
related.
+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=11593
Summary: winecfg does not correctly import colour theme profiles
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msclrhd(a)gmail.com
CC: msclrhd(a)gmail.com
1. Run winecfg
2. Select the "Desktop Integration" tab
3. Press the "Install theme..." button
4. Browse to a .theme file
5. Press OK
EXPECTED: All the data in the [Control Panel\Colors] section should be applied
to the user registry.
OBSERVED: Only a subset of the colours are applied.
--
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=10423
Summary: shader_glsl_lit() glitch
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris(a)chris-wilson.co.uk
Created an attachment (id=9117)
--> (http://bugs.winehq.org/attachment.cgi?id=9117)
Restore the src.x>0 conditional
Some objects in Civ4 (and other games) are rendered incorrectly as a solid
colour (using the nvidia 100.14.19 driver). A git bisection identified
commit 468309e055b5e14f6da919b173eb199954b65ef1
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Sun Oct 28 21:21:24 2007 +0100
wined3d: Get rid of the conditionals in the glsl lit implementation.
as the first bad commit. Applying the reverted patch to head confirms that it
is the same issue. Reading the patch it would appear to be an incorrect
transformation if the GLSL specification of pow() defines 0^0 as 1 (my edition
of the orange book does not specify its behavior).
--
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=12708
Summary: The All Seeing Eye: Mouse select doesn't work
Product: WineHQ Bugzilla
Version: unspecified
Platform: All
URL: http://www.udpsoft.com/eye/doc.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: logintar(a)gmail.com
The main functionality does not work: directly selecting a server with mouse or
keyboard. Workaround: User has to find (CTRL+f) a server and enter some letters
of the server name to be able to select it. But direct game launching *cannot*
be done this way...
For testers/devs: launch ASE, then try to click on a server or to use keyboard
(arrows) to select an item (a server).
--
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=13490
Summary: Touhou Suimusou (Scarlet Weather Rhapsody): freezes when
started (black screen)
Product: Wine
Version: 1.0-rc2
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthewsage(a)live.com
Created an attachment (id=13415)
--> (http://bugs.winehq.org/attachment.cgi?id=13415)
winedbg output
When running the Touhou Suimusou executable (th105.exe), a window is created
with the correct title of the app, but its background is completely black.
Program freezes after a few seconds.
Hardware:
Core 2 Quad Q6600
Intel DG31PR
4 GB RAM
Nvidia GeForce 7300GS
Genius SoundMaker Value 5.1
OS: 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=15029
Summary: World of Warcraft dont work with opengl opensuse 11.0
Product: Wine
Version: 1.1.3
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: obelich(a)gmail.com
Hiyas in opensuse 11.0 we try to play Wow with opengl buth dont work dont apper
the toons or dont see the background onli can see black and some options,
We have already installed the drivers we have a Ati radeon 9600 mobile
--
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=12415
Summary: Can not leave fullscreen Warcraft 3x (Regression)
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugzilla(a)gmail.com
CC: julliard(a)winehq.org
Using wine 0.9.59+ Git version. Warcraft3x Crashes went you Alt+Tab out of the
game. I'm think this happens in other games to.
I did a Regression test and got this:
commit d0e1dd84b22b1906a44f682394b5d1b90ba5ded8
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Apr 4 18:22:40 2008 +0200
user32: Fix a few ShowWindow todo tests.
--
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=11547
Summary: corrupted double-linked list - glasgow haskell compiler
Product: Wine
Version: 0.9.55.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
Created an attachment (id=10714)
--> (http://bugs.winehq.org/attachment.cgi?id=10714)
glibc message and +heap log
When invoking wine runghc Setup.hs, the attached error intermittently occurs.
to reproduce:
wget http://haskell.org/ghc/dist/6.8.2/ghc-6.8.2-i386-windows.exe (33MB)
wine ghc-6.8.2i386-windows.exe
wget http://hackage.haskell.org/packages/archive/Diff/0.1/Diff-0.1.tar.gz
tar xf Diff-0.1.tar.gz
cd Diff-0.1
wine runghc Setup.hs (repeat several times if it doesn't fail)
The message should be printed more or less immediately.
Also attached is a +heap log
I understand that this could be a bug in ghc, testing on windows doesn't reveal
any symptoms of undefined behavior in the app, but I understand that this isn't
conclusive enough to say that the app isn't at fault.
If we can determine who is at fault, I will file the bug with the ghc project.
--
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=9570
Summary: PimpStreamer application is unable to access internet
when it is run using wine.
Product: Wine
Version: 0.9.43.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: padua(a)rediffmail.com
Version : Wine-0.9.43
Error message when PimpStreamer application run using wine.
------------------- Error msg ----------------------
[root@localhost ~]# wine .wine/drive_c/Program\
Files/PiMPWare/PiMPStreamer/PimpStreamer.exe
wine: Call from 0x7edfaf90 to unimplemented function
winhttp.dll.WinHttpCheckPlatform, aborting
------------------- Error msg ----------------------
Pimpstreamer application can be downloaded from :
http://www.pimpware.org/PiMPStreamerSetup-0.91.msi
This is a windows application used for streaming the contents of the Hard disk
and internet onto Sony's PlayStation Portable (PSP).
Client application running on PSP fails to connect to Pimpstreamer running on
linux (through wine) , unable to connect to pimpstreamer on 192.168.2.2:3333
Please help me resolve this issue. I think the pimpstreamer server running on
PC is i unable to access the network/internet on linux.
Thank you
Padua
--
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=12542
Summary: UI errors on built-in comctl32
Product: Wine
Version: 0.9.59.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maciej.trebacz(a)gmail.com
Created an attachment (id=12099)
--> (http://bugs.winehq.org/attachment.cgi?id=12099)
UI errors screenshot
In Watchtower Library, using built-in wine version of comctl32 there are some
UI errors. They are covered in the screenshot attachment.
1. Minor one - the borders of upper panel(s) are broken. Probably because the
icons/controls are overlapping them
2. Major one - there is a missing panel that contains several controls (3
buttons, a separator and a text input). These are used to navigate the sidebar
below.
I can do further testing as required.
--
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=14516
Summary: Full-Screen Glow Effect in World of Warcraft is shifted
Product: Wine
Version: 1.1.1
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrejx(a)gmail.com
Created an attachment (id=14852)
--> (http://bugs.winehq.org/attachment.cgi?id=14852)
A picture clearly showing the shifted glow.
In World of Warcraft the "Full-Screen Glow Effect" does not work correctly.
Natively on a Windows platform it adds a soft glowy sort of effect, but when
running it in Wine the glow is somewhat shifted and causes everything to look
blurry and not very friendly to the eye.
I don't know if this is a regression since It's been like this ever since I've
first played WoW via Wine - for a very long 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=14833
Summary: Autocad 2005 vl-vbaload bug
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
Lisp command (vl-vbaload "vba-project-name") don't work. It tells
"Automation Error. Problem in loading DVB file"
Manual (non autolisp) command line "-vbaload" works as expected.
Notice that on windows machine both works.
No error/messages shown on console upon command launch.
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=11090
Summary: menu items are redrawn incorrectly on mouse over - jedi
knight dark forces II
Product: Wine
Version: CVS/GIT
Platform: All
URL: http://files.filefront.com/jedidemoexe/;845549;/fileinfo
.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
Created an attachment (id=10112)
--> (http://bugs.winehq.org/attachment.cgi?id=10112)
loading-dialog-updated-with-wrong-part-of-screen
In windows when you move the mouse over an item, the region is updated with an
illuminated version.
With wine the region is updated with data from a different part of the screen,
which is quite obvious to see from the attached screenshots.
current git (wine-0.9.52-278-gc486d87) or newer is required to test the problem
as this program suffered from a regression causing a crash since 0.9.31 (bug
10865 / bug 10899)
--
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=12613
Summary: Adobe Acrobat Pro 7 does not install
Product: Wine
Version: 0.9.59.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Created an attachment (id=12238)
--> (http://bugs.winehq.org/attachment.cgi?id=12238)
+msi,+msidb log output
I downloaded a trial copy of Acrobat Pro 7 from the winsoft.eu website listed
here:
http://wiki.winehq.org/AdobeAcrobatPro
It fails to install with this msgbox error:
Exception raised
Unhandled page fault on read access to 0x004f004b at address 0x7ee31443
Do you wish to debug it?
+msi,+msidb debug log attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12097
Summary: Wine 1.0 should not ship out-of-sync resource
translations
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
As seen on http://pf128.krakow.sdi.tpnet.pl/wine-transl/ we have a lot of
out-of-sync resources.
Sometimes it's menus missing only a separator and some of them are probably
false positives (e.g. Korean dialogs declares a font while English doesn't. But
they probably need to to have Korean characters. However it would be good to
have a confirmation). But often these are missing menu items or stringtable
entries. This can lead to shell folders (like My Documents) not to be created
or empty strings like in
http://www.winehq.org/pipermail/wine-devel/attachments/20060816/1a027491/ad…
.
I think as Wine 1.0 should be a stable release we shouldn't ship such
resources. We could try e.g. to add an options to wrc to copy missing strings
from English stringtables, while for other resources surround them by "#ifdef
INCLUDE_BROKEN_RESOURCES" that wouldn't be set when compiling Wine but would be
used be used by the statistic scripts to notify the translators about broken
resources. Another solution would be to use something like the po/mo files.
--
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=12289
Summary: strange menu tracking confusion between keyboard and
mouse
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marcus(a)jet.franken.de
How to reproduce:
- start notepad
- move the mouse over "Search", do not click
- press alt-f to get the file menu
=> the file menu flickers open, but suddenly switches
to the search menu.
It seems the menu code checks the mouse pointer even
though it is not used for the menu activation.
--
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=11020
Summary: winelauncher does not handle spaces in WINEPREFIX
correctly
Product: Wine
Version: 0.9.52.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: schwerdel(a)googlemail.com
In line 323 in winelauncher it tries to create the info_flag file with a touch.
If WINEPREFIX contains spaces this will fail.
This also allows for some kind of command injection with that variable.
--
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=14537
Summary: regression - gdiplus when running Dragon
NaturallySpeaking Preferred 9.0
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
fixme:gdiplus:GdipCreateHBITMAPFromBitmap stub
err:region:CombineRgn Invalid rgn=(nil)
(lots of these deleted)
err:region:CombineRgn Invalid rgn=(nil)
fixme:dbghelp:dump_system_info fill in CPU vendorID and feature set
susan@ubuntu:~/.wine/drive_c/Program Files/Nuance/NaturallySpeaking9/Program$
--
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=14321
Summary: .NET Installs error on
Product: Wine
Version: 1.1.0
Platform: All
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjmckenzie51(a)sprintpcs.com
err:msi:HANDLE_CustomType34 Unable to execute command
L"\"C:\\windows\\Microsoft.NET\\Framework\\netfxsbs11.exe\" /install"
Occurs on installation of .net 1.1 and
rr:msi:HANDLE_CustomType34 Unable to execute command
L"\"C:\\windows\\Microsoft.NET\\Framework\\netfxsbs20.exe\" /install"
Occurs on installation of .net 2.0
Neither file exists
The proper name for the file is
netfxsbs10.exe or NETFXSBS10.EXE
This was reported in issue 3972 comment #31 for .net 2.0
<http://bugs.winehq.org/show_bug.cgi?id=3972#c31> by Kush. I confirmed that
this occurs with .NET 1.1 installs in a fresh .wine.
James McKenzie
--
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=11318
Summary: Flash CS3 requires Jscript
Product: Wine
Version: 0.9.53.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nesdavid(a)gmail.com
When trying to install flash cs3, a dialog appears telling you need Jcript
registered properly. repair Jscript, and next restart the installation program.
--
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=9861
Summary: gdiplus:GdipImageGetFrameDimensionsList not implemented
Product: Wine
Version: 0.9.46.
Platform: All
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gicgioc(a)tiscali.it
MSN 8.1 doesn't start because gdiplus:GdipImageGetFrameDimensionsList not
implemented
--
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=9268
Summary: Knights of the old republic fails to install
Product: Wine
Version: 0.9.43.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gnarlin(a)utopia.is
Created an attachment (id=7522)
--> (http://bugs.winehq.org/attachment.cgi?id=7522)
error messages from wine from kotor installer
The installer for Knights of the old republic freezes when I click on the "yes"
button for accepting the eula. Even killing wine doesn't make the dialog
disapear. Very strange.
--
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=13545
Summary: doubleclick on .exe starts all programs in wrong
directory
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kazmirzak(a)web.de
It might be a problem of some distributions they are not able to cope with but
still: if I doubleclick an .exe file for example in Ubuntu 8.04 dolphin, they
don't find their daughter files and crash. This problem is NOT LIMITED to
Ubuntu. Reason: the default directory is "/home/user" and not the directory we
are in.
I know that you can't solve the problems of distributions but you can introduce
an idiot-save and absolute usable workaround:
wine --grab-default-directory /media/disk/test/test.exe
This command line could be included in the application runner of the
distribution, but not only that - it is even great for command-line-gurus. It
simply tells wine to automatically cd to the directory of the .exe-file before
starting it.
Possible for 1.0 ?
--
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=14794
Summary: Crash when starting Yahoo Messenger
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: chrivers(a)iversen-net.dk
Created an attachment (id=15341)
--> (http://bugs.winehq.org/attachment.cgi?id=15341)
Backtrace and terminal output for
When trying to run Yahoo Messenger, the window pops up, I see some "logging in"
action, and then there is a crash. This is with the Ubuntu 8.04 package of wine
1.1.2.
--
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=10489
Summary: Winemaker fails to process directories with '+' in them.
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ion.simon.c(a)gmail.com
Created an attachment (id=9230)
--> (http://bugs.winehq.org/attachment.cgi?id=9230)
Escapes metacharacters in path component in 'sub search_from'.
Directories with regexp metacharacters in them (like '+') cause some regexp
operation on line 1106 to fail .
Proposed fix attached.
Reproduction recipe:
1) Download QT 4.3.1 (Win32) and unpack. [1]
2) cd to qt-win-opensource-src-4.3.1.
3) Run 'winemaker'.
It'll churn for a while, then you get this message:
Nested quantifiers in regex; marked by <-- HERE in m/^linux-g++ <-- HERE $/ at
/usr/local/bin/winemaker line 1106, <FILEI> line 39.
[1] QT is here:
ftp://ftp.trolltech.com/qt/source/qt-win-opensource-src-4.3.1.zip
--
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=11686
Summary: Wine and winecfg unable to start, disconnect and force a
new session
Product: Wine
Version: 0.9.24.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xenarulz(a)tiscali.it
I use Opensuse 10.2 and installed Wine through Yast. I was never able to use
the program once. I tried uninstalling and reinstalling but to no avail.
Every time I try to run winecfg to configure wine, it's as if I disconnected
from Opensuse, so screen becomes black, applications are killed and I have to
login again.
Same happens if I try to use wine to run any .exe (I have win98 SE on another
partition, btw) but I think that this latest issue is because I have never
managed to configure wine, since winecfg doesn't start...
If from terminal I ask $ which wine I get /usr/bin/wine in Home I have ./wine I
think everything is installed correctly. My pc is pretty old, considering, I
have a AMD Sempron 1Gb RAM no fancy 3D video cards.
I have googled and seen that this issue was present for old versions of
Mandriva but I haven't found out ho to work around it. Thanks for your help.
--
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=10098
Summary: EVE Online: Cloak breaks overview/speed info
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: epssyis(a)gmail.com
CC: stefandoesinger(a)gmx.at
When the cloaking module (tested with prototype cloak) is activated the speed
meter under the cap display bugs out - it can display two different speeds or
the wrong speed. The clock in the bottom left freezes. Also the relative
distances in the overview bug as well much like the clock. All information
reads correct on their mouse over displays and everything but the clock returns
to normal once the cloaking device has been disabled.
--
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=14149
Summary: Flashcontext help freezes after query search and
selecting search query
Product: Wine
Version: 1.1.0
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bduchaj(a)gmail.com
Created an attachment (id=14411)
--> (http://bugs.winehq.org/attachment.cgi?id=14411)
Sort of loop after selecting content in flash help.
After inserting a search query in Flash Help and pressing the SEARCH button,
help searches for the query a shows avaible results, but after clicking on the
result the help and Flash freezes and does not show the content of the selected
result. In terminal there is some sort of loop. I think the possible reason is
WineGecko cinflicting with the Flash MShtmlhelp engine. Log in attachement.
This same problem does not appear when you select the help item manualy from
list, not searching for 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=12969
Summary: winecfg locks you out if you set ole32 to native only
Product: Wine
Version: 0.9.61.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: k.king177(a)ntlworld.com
I was following instructions in AppDb for installing VS6, where it said set
OLE32 to native and then run DCOM98.exe. Which results in a already got that or
newer msg. on trying to run winecfg get
winecfg
err:module:import_dll Library ole32.dll (which is needed by
L"C:\\windows\\system32\\winecfg.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"C:\\windows\\system32\\winecfg.exe" failed, status c0000135
maybe some sort safe mode or safety catch to prevent 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=10735
Summary: Flickering in World of Warcraft when switching desktop
Product: Wine
Version: 0.9.41.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: le(a)ting.homeunix.org
When switching desktop away from a full screen World of Warcraft the screen
flickers for up to a second. Switching back to World of Warcraft makes the game
inresponsive for several seconds.
This is a major annoyance for me, and makes the game unplayable since I use
teamspeak and firefox alot during gameplay.
I followed the git regression testing howto and identified the offending patch
as:
d836a5062141dd42293ed044debbaf25f914f383 is first bad commit
commit d836a5062141dd42293ed044debbaf25f914f383
Author: Vitaliy Margolen <wine-patches(a)kievinfo.com>
Date: Fri Jul 20 07:15:42 2007 -0600
winex11drv: Correctly react to focus loss away from Wine.
:040000 040000 99f97d04cf71c395ee770ba8c04e79180ec0d410
7bbac16d3941b6a0a77dede94a1f2c37f5f57078 M dll
After reverting this patch in 0.9.50 the game doesn't freeze anymore when
switching desktops.
--
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=14569
Summary: At the end of the Dance praise 2 installer, there are
two windows that appear
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P1
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq.org(a)spam.bounceme.net
Created an attachment (id=14921)
--> (http://bugs.winehq.org/attachment.cgi?id=14921)
double installer
When installing dance praise 2 the remix, at the end of the installation
sequence, two windows appear. When clicking finish on the window that seems to
be working, both disappear.
The program installs anyway and works fine. This bug should not be more than
'minor' because it does not stop the user from using the software, it only
causes minor confusion.
I tested this using a clean install of 8.04 ( after all the updates ) on the
18th of July using Wine 1.1.1 ( with screenshot ) and on another computer using
1.0 ( screen is identical).
--
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=14837
Summary: Red Alert 3 Beta crashes on volume IDs that are only one
character
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: ehoover(a)mines.edu
Created an attachment (id=15380)
--> (http://bugs.winehq.org/attachment.cgi?id=15380)
Backtrace showing the crash
The Red Alert 3 Beta looks at all the drives on the system (likely to create
the unique ID for a PC) and when it does this it expects the volume ID for each
drive to be at least two characters. Since Wine creates a drive Z: that points
to the primary mount point ("/") and Wine uses the unix mount point as the
volume ID, this poses a problem. (I believe this is handled by mountmgr.sys,
but that component is not listed)
To get around this issue you can open regedit, go to
"HKEY_LOCAL_MACHINE\System\MountedDevices", and modify the key "\DosDevices\Z:"
from saying "/" to saying something like "//" or "/./". Now you can launch the
game (do not close regedit or the key will get regenerated) and it should get
past the crash people have been experiencing (simple backtrace attached,
"+relay" is necessary to get information on prior calls).
I believe that in order to solve this it will be necessary to have wine
generate a longer volume ID (at the very least, just do so for drive Z:).
--
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=14492
Summary: Site is not accessible
Product: Wine
Version: unspecified
Platform: All
URL: http://www.winehq.org/site/development
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marek.czajka(a)gmail.com
I think it is important for users... this site
(http://www.winehq.org/site/development) is not working. You can access it from
winehg.com menu link.
--
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=12172
Summary: GetFileName95 not yet implemented
Product: Wine
Version: 0.9.56.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
A quick search for "GetFileName95" in bugzilla turns up 13 active bugs.
Implementing this function might be a quick way to kill a baker's dozen of bugs
with one stone.
--
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=11119
Summary: XML Notepad 2007 won't start
Product: Wine
Version: 0.9.52.
Platform: All
URL: http://thesource.ofallevil.com/downloads/details.aspx?fa
milyid=72D6AA49-787D-4118-BA5F-
4F30FE913628&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jcollins(a)asgardsrealm.net
With the recent platinum status of the .NET Framework 2.0 I thought I'd test a
few .NET applications to see how well they worked. XML Notepad 2007 (available
at the provided link) installs fine but fails to start with the following
output on the console.
$ env WINEPREFIX="/home/jcollins/.wine" wine "C:\Program Files\XML Notepad
2007\XmlNotepad.exe"
fixme:process:IsWow64Process (0xffffffff 0x33f8dc) stub!
fixme:virtual:NtAllocateVirtualMemory MEM_WRITE_WATCH type not supported
Segmentation fault
--
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=9846
Summary: Worms 4 - Mouse Leaves Window
Product: Wine
Version: 0.9.46.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ulo_kapta(a)hotmail.com
The game seems to work perfectly the last show stopper bug is the mouse.
You can only move your the camera 180 degrees with the mouse.
The reason is that the mouse seems to leave the program (you can see the linux
mouse cursor on the side once you stop turning.
It looks like it needs some kind of mouse fix, to leave it in the middle.
--
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=14560
Summary: Australian etax program help feature segfaults
Product: Wine
Version: 1.1.1
Platform: All
URL: http://ato.gov.au/content/downloads/etax2008/etax2008_1.
exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
The Australian Tax Office produces a Windows-only tax client for the individual
taxpayer, free of charge. It can be downloaded at the link above.
Installation is fine under wine, as in previous years, but the help feature
segfaults. The exe in question is etaxHelp.exe.
The +relay is 50M, and even under bzip2 -9 compression is still 1.5M. However,
this is an easy to reproduce bug using freely downloadble software, so please
excuse the lack of a log file.
Note that wine installs the program by default in
/.wine/dosdevices/c:/etax2008.
--
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.