http://bugs.winehq.org/show_bug.cgi?id=14414
Summary: WordPerfect 11: Application will start normally only
once
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Start application after clean install. Shut application down. Start it again.
Splash screen appears (eventually), splash screen disappears (eventually).
Then nothing. Main window does not apppear. No 'entry' on the task bar. No
amount of window maximisation/minimisation, desktop switching etc. will make
the main window appear. There are tasks but they are not eating CPU (ps -f -u
$USER confirms this).
Starting the application a second time (in a different console window) gives:
err:ole:CoUninitialize Mismatched CoUninitialize
and exits. The first invocation puts up the main window (which is almost a
'shaded'). Roll this window down and the application is usable. Ther is
nothing untoward in the console output of the first invocation.
Note: First invocation of application after install produces a pop-up window
claiming the serial number (aka licence key) cannot be found. Only after
entering the appropriate number (key) does the main window appear. However, I
have had 'nothing happens' behaviour after a file recovery pop-up after
application crash.
Installer 'requires' winetricks wsh56 but application is run without any dll
overrides. winetricks corefonts are installed.
Behaviour is repeatable. Host is Kubuntu 8.04 x86, Linux is 2.6.19.
--
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=14397
Summary: Paradox 11: Unhandled exception on Applicaation Launch
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Created an attachment (id=14711)
--> (http://bugs.winehq.org/attachment.cgi?id=14711)
Backtrace of Unhandled Exception
Attempt to start Paradox 11 gives a splash screen followed by an Unhandled
Exception due to an access to 0x00000000 in pxsrv32. Backtrace attached.
This occurs with Paradox 11 installed from CD with WordPerfect Office 11 (2003)
and WordPerfect Office X3 (2005).
The Wine configuration does not specify any native dll overrides but wsh56 was
installed in order to facility the installation of the application, which
appears to make heavy use of mfc42.dll.
--
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=15329
Summary: Unable to install Sony Picture Utility, Failed to load
DLL Localesetting
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin.kellner(a)ekol.slu.se
When trying to install Sonys Sony picture utility got: Error number 0x80040702
Description: Failed to load DLL: Localesetting.
--
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=14891
Summary: Bitmaps with offset bits do not display correctly
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://entropymine.com/jason/bmpsuite/
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)gringer.dis.org.nz
Created an attachment (id=15458)
--> (http://bugs.winehq.org/attachment.cgi?id=15458)
program to load a bitmap from command line, display on screen
I was hunting around for small windows programs to display bitmaps via GDI so
that I could test the bitmap display code in Wine (to follow an afterthought I
had relating to bug 14868). Since I wasn't able to find anything, I decided to
write my own (attached), then run it through Jason Summers' bitmap test suite
(http://entropymine.com/jason/bmpsuite/reference/reference.html). One of these
bitmaps failed the test (g08offs.bmp), appearing different to the reference
image. According to the reference page, the "... bfOffBits in [the] header not
set to the usual value. There are 100 extra unused bytes between palette and
bits."
The program has been compiled with mingw32 (Version 4.2.1.dfsg-1) on a Debian
system (see Makefile for full parameters etc.).
Running Wine off a git branch pulled ~1.5 days ago, with patch from bug 14868.
--
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=14710
Summary: OleLoadPicturePath loads image in windows but not in
wine, could cause access violation in some circumstances
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)robertinventor.com
Created an attachment (id=15202)
--> (http://bugs.winehq.org/attachment.cgi?id=15202)
source code for program to duplicate the bug
This code works in Windows but not in Wine - running under KDE
WCHAR wpath[MAX_PATH];
MultiByteToWideChar(CP_ACP, 0, pszPath, -1, wpath, MAX_PATH);
IPicture* pPic=NULL;
CoInitialize(NULL);// NOT NEEDED IN WINDOWS
// INCLUDED JUST IN CASE IT IS NEEDED FOR WINE but doesn't fix it.
OleLoadPicturePath(wpath, NULL, NULL, NULL, IID_IPicture,(LPVOID*)&pPic);
...
In case where the file does exist, OleLoadPicturePath isn't initialising pPic.
If the app tests for file existence first, and doesn't initialise pPic, the
result could be an access violation.
(I'm using the VMWare MultiBrowser Appliance as a way to run Linux on my Vista
machine.)
Source code for app attached, obviously replace the example pictures with
existing files on your machine.
Hope this helps. The reason my app calls OleLoadPicturePath(..) instead of
LoadImage(..) is because it is an easy way to add the capability to load jpegs
and gifs without need to add extra image libraries (which would add to the size
of the installer).
Not that important for my program, just means the users would have to convert
the skin images to bitmaps in order to use them. But maybe it might affect
other programs too, and could cause an access violation if the programmer
doesn't initilise the pPic.
Hope this helps, any questions?
Robert
--
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=14262
Summary: Wordview bullet in doc is not the same
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kjloh71(a)gmail.com
CC: kjloh71(a)gmail.com
Created an attachment (id=14553)
--> (http://bugs.winehq.org/attachment.cgi?id=14553)
wordview display
the bullet in the document is not the same using openoffice or the native word
2003. please see the attached sample.
both file has no problem opened in wordview under window.
ubuntu 8.04, wine 1.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=14195
Summary: EINTR in WS_select
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anisimkov(a)ada-ru.org
I have an Win32 application written in Borland Delphi using Eureka tool
(http://www.eurekalog.com/)
working in Wine but with one error.
If exception occured in main thread,
WinAPI 'select' call in secondary thread interrupted with WSAINTR error code.
The short Delphi example is in the attached sample.tar.bz2.
WSAINTR result in Win32 select mean
"A blocking Windows Socket 1.1 call was canceled through
WSACancelBlockingCall."
(http://msdn.microsoft.com/en-us/library/ms740141(VS.85).aspx)
But
"The WSACancelBlockingCall function has been removed in compliance with the
Windows Sockets 2 specification, revision 2.2.0.
The function is not exported directly by WS2_32.DLL and Windows Sockets 2
applications should not use this function.
Windows Sockets 1.1 applications that call this function are still supported
through the WINSOCK.DLL and WSOCK32.DLL."
(http://msdn.microsoft.com/en-us/library/ms741547(VS.85).aspx)
Wine translates EINTR error code into WSAINTR error code.
But in Linux EINTR have a different meaning
"EINTR A signal occurred before any requested event."
(man poll)
I propose the following patch to ignore the EINTR error code in Wine
'WS_select' based on Linux poll call:
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index fa908b4..a98717e 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -2591,7 +2591,10 @@ int WINAPI WS_select(int nfds, WS_fd_set *ws_readfds,
if (ws_timeout) timeout = (ws_timeout->tv_sec * 1000) +
(ws_timeout->tv_usec + 999) / 1000;
- ret = poll( pollfds, count, timeout );
+ while ((ret = poll( pollfds, count, timeout )) < 0)
+ {
+ if (errno != EINTR) break;
+ };
release_poll_fds( ws_readfds, ws_writefds, ws_exceptfds, pollfds );
if (ret == -1) SetLastError(wsaErrno());
The wine already have a similar EINTR ignore
git-diff 84232099^ 84232099 -- dlls/winsock/socket.c
index cfbf49f..0f1ba34 100644
--- a/dlls/winsock/socket.c
+++ b/dlls/winsock/socket.c
@@ -589,7 +589,13 @@ static inline int do_block( int fd, int events )
pfd.fd = fd;
pfd.events = events;
- poll(&pfd, 1, -1);
+
+ while (poll(&pfd, 1, -1) < 0)
+ {
+ if (errno != EINTR)
+ return -1;
+ }
+
return pfd.revents;
}
Thank you for attension and for great software.
Best regards.
Dmitriy Anisimkov.
--
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=14079
Summary: Dungeon Siege installation impossible
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ingo(a)gerth-ac.de
Created an attachment (id=14298)
--> (http://bugs.winehq.org/attachment.cgi?id=14298)
Wine's output during the installation
During the installation of Dungeon Siege, the text in info boxes is not drawn
correctly, i.e. they boxes are plain blank.
This makes it impossible to install the game.
I believe that at one point of the installation the routine tries to ask me to
put the second CD into the CD slot but it is not possible because the O/S says
it is used by another process.
--
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=13278
Summary: Qtracker crashes
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.qtracker.com/downloads/Qtracker471.exe
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
A user submitted garbage test results into appdb for this app. It starts fine
in wine-0.9.17. In current git it crashes. winetricks cc580 works around the
crash. If i have more time i'll do a regression test
--
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=12869
Summary: Rollcage Stage II demo crashes
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.download.com/Rollcage-Stage-II-demo/3000-
7522_4-10230148.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: quest2013(a)emailengine.org
Created an attachment (id=12578)
--> (http://bugs.winehq.org/attachment.cgi?id=12578)
Rollcage Stage II crash output
After an apparently successful install, trying to run Rollcage.exe, it crashes.
Concerning the attachment. The first line about ALSA not found has to do with
me using Gobolinux 014. Sound does work with other games even when that ALSA
message shows up.
--
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=11896
Summary: Civilization4.exe crashes because of unimplemented
function __iob_func
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luis.busquets(a)ilidium.com
When using the wine version msvcr71.dll the program crashes because of
unimplemented function __iob_func
--
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=11892
Summary: GdipCreateBitmapFromFile & GdipCreateBitmapFromStream
give upside down bitmap
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cbill.lam(a)gmail.com
if use GdipCreateBitmapFromFile or GdipCreateBitmapFromStream to create bitmap
from a bmp or jpeg file, the bitmap created is upside down as seen from the
negative stride in GdipBitmapLockBits. However native gdiplus gives positive
stride and this may be an undocumented feature of gdiplus.
--
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=9263
Summary: Guild Wars terribly slow
Product: Wine
Version: 0.9.42.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gandalf.pk(a)gmail.com
Hi there, I am pretty new to this, so don't bash me if i did something wrong. I
looked in the bugs, and there were some regarding Guild Wars running not at
all, but my problem is something different:
Guild Wars starts pretty normally, then after connected to arena net, the main
game window appears in a few seconds-minutes. Then it becomes real carnage,
slideshow, i mean, horrible mess, like 1 frame per 5 seconds.
SW Wine configuration:
tried alternatives for Win98,W2K,WXP settings for GW.exe; tried -dx8, -opengl
(doesnt work at all), -dx9 swithes, tried -noshaders, nosound, dsound, nothing
helped.
Distro: Elive Gem 1.0. - basically Debian Etch
HW:
AMD64 3000+ on ondemand k8 powernow module
512 MB ram
ati Radeon 9550 128MB graphics card
(these should not be the limits, since game runs smooth on windows)
I will post any log or anything, just tell me what to do. Thanks.
Peter
--
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=15235
Summary: After setup drivers for WizardPen-tablets
(wizardpen_drv.so) in X11, Photoshop 7.0 crash at
startup
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor.kruglenko(a)gmail.com
Created an attachment (id=16009)
--> (http://bugs.winehq.org/attachment.cgi?id=16009)
Crash-log
After setup drivers for WizardPen-tablets (wizardpen_drv.so) in X11, Photoshop
7.0 crash at startup.
Distr: Ubuntu 8.04
Driver for WizardPen from
http://www.kubuntu.dk/wizardpen/wizardpen-0.6.0.2.tar.gz
Setup drivers how-to: https://help.ubuntu.com/community/TabletSetupWizardpen
My tablet is Genius WiardPen 5x4
--
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=14360
Summary: dosmem forgot MAP_FIXED
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14657)
--> (http://bugs.winehq.org/attachment.cgi?id=14657)
dosmem use MAP_FIXED; new WINE_NO_DOSMEM_64KB environment variable
Dosmem forgot MAP_FIXED when calling wine_anon_mmap() to allocate memory at
assumed fixed addresses for the low 1 MiB and 64 KiB. It is a bug to assume
that the result address equals the requested address, unless MAP_FIXED. Also,
add a new environment variable WINE_NO_DOSMEM_64KB to inhibit the low 64 KiB,
even if the opreating system would allow it. By default, Linux 2.6.24
prohibits mmap in the range [0, 0x10000). Patch is attached and 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=14338
Summary: Blade of Darkness crash or hangs on certain levels using
D3D plugin
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: samurai_no_densetsu(a)yahoo.es
On certain levels like the one with lava pits, using D3D plugins leads to game
crash/hang dropping this on console:
wine: Assertion failed at address 0xffffe410 (thread 0009), starting
debugger...
I also tested extensively an opengl glidewrapper and plugin and this crash only
happens when D3D is used.
--
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=14335
Summary: WordPerfect Office 2000: Custom Install Exits Abruptly
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Attempt to install Word Perfect Office 2000 from OEM CD.
Choose custom install. Install proceeds but exits abruptly and prematurely
with no traceback or any indication of an error either from the installer or
from Wine.
Console log is very short.
$ wine 'f:\setup.exe'
fixme:wave:wodPlayer_Reset shouldn't have headers left
fixme:setupapi:SetupDefaultQueueCallbackW notification 262144 params 33f98c,0
err:setupapi:SetupDefaultQueueCallbackW copy error 0
L"C:\\windows\\temp\\MSE000\\REGSVR32.EXE" ->
L"C:\\windows\\system32\\REGSVR32.EXE"
fixme:advapi:InitiateSystemShutdownExA (null) (null) 0 0 1 458752
fixme:win:EnumDisplayDevicesW ((null),0,0x33e7a0,0x00000000), stub!
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program
Files\\Corel\\WordPerfect Office 2000\\programs\\Pfbc90.tlb" failed with error
2
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Program
Files\\Corel\\WordPerfect Office 2000\\programs\\Pfob90.tlb" failed with error
2
fixme:ole:DllRegisterServer stub
fixme:atl:AtlModuleInit SEMI-STUB (0x67985650 0x679815f8 0x67900000)
Choose typical install and there is no premature exit. The is no AtlModuleInit
fixme message in the log.
The custom install option that seems to give the trouble is WordPerfect
9/Trellix 2.1.
--
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=14334
Summary: WordPerfect Office 2002: Unable to Install
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pbronline-wine(a)yahoo.co.uk
Attempt to install WordPerfect Office 2002 from OEM CD.
First reports
"You do not have administrator privileges on this machine."
"Setup cannot continue."
Set Windows version to win98 in order to get past this.
Installer (Setup32) then checks to see if any WPO programs are running and
offers to close them for you. The only WPO program it finds running is itself
! If you choose No, it exits anyway. If you choose Yes, it commits suicide.
Unable to progress further.
The console log is very short:
$ wine 'f:\intro.exe'
fixme:advapi:LookupAccountNameW (null) L"allusers" (nil) 0x33e4a0 (nil)
0x33e4a4 0x33e498 - stub
fixme:advapi:LookupAccountNameW (null) L"allusers" 0x12da00 0x33e4a0 0x12d768
0x33e4a4 0x33e498 - stub
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"SetODBCFolders"
fixme:msi:msi_unimplemented_action_stub BindImage -> 3 ignored L"BindImage"
table values
fixme:msiexec:main Unknown parameter /D
fixme:msiexec:main Unknown function, ignoring
Successfully registered dll L"C:\\windows\\system32\\msi.dll"
--
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=14327
Summary: Warcraft version refused when connecting to battle.net
under metacity
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johan.martenson(a)gmail.com
With 1.1.0, Warcraft II is unable to connect to Battle.net for multiplayer, and
gives an error that reads: "Battle.net was unable to properly identify your
application version." This bug is different from #13815 in that it still
happens when I'm running metacity instead of compiz.
--
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=14214
Summary: Jumpgate: The Reconstruction Initiative, crashes on
start.
Product: Wine
Version: 1.1.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Makitk(a)gmail.com
Created an attachment (id=14501)
--> (http://bugs.winehq.org/attachment.cgi?id=14501)
Crashlog of Wine 1.1.0 running JumpGate.
On Kubuntu 8.04, after the patching process and the movie, JumpGate simply
crashes.
See crashlog for details.
--
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=14189
Summary: Civilization VI: install failure
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leecleveland(a)comcast.net
Created an attachment (id=14458)
--> (http://bugs.winehq.org/attachment.cgi?id=14458)
error lines output to the terminal
Civilization VI will not install under WINE.
This game is the first, and may be the only, Windows application attempted on
this system.
WINE is configured with E: = /media/cdrom. Everything else is at it's default
setting.
The first install attempt from the CD, "/media/cdrom$ wine autorun.exe", failed
immediately, outputing multiple instances of the errors:
preloader: Warning: failed to reserve range 00000000-60000000
and
err:dosmem:setup_dos_mem Cannot use first megabyte for DOS address space,
please report
I edited /etc/sysctl.conf, changing the line
vm.mmap_min_addr = 65536
to
vm.mmap_min_addr = 0
The next install attempt got as far as opening the installer but not much
farther. It failed with the error
\\InstallShield\\Professional\\RunTime\\IsProBE.tlb" failed with error 2
followed by many "fixme" lines and some "err" lines (see attachment).
I'm running WINE 0.9.59 on Ubuntu 8.4 (64-bit AMD) with 1GB RAM and Nvidia 6200
card.
--
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=14007
Summary: Can't login -- Invalid Password
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://appdb.winehq.org/appimage.php?bThumbnail=true&iId
=14942
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ragai(a)avaarsani.ca
I tried D-Link's IPSurveillance (versions 3.0 and 3.2) under Wine 0.9.51,
1.0RC5 and 1.0 under UBUNTU (7.10 & 8.04). It always installed without any
error messages. I must enter a password during the installation. I can see the
application running. I can see its icon in the task bar. However, when I try to
lunch the application nothing happens. Just the hourglass and then nothing.
When I try to lunch it the second time I get the login window. I always get the
"Invalid password" error message.
I do not know how to trace/debug this issue as I am new to Wine.
--
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=13747
Summary: Heroes Chronicles: Conquest of the Underworld - Crash on
run
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)alex-elliott.co.uk
Created an attachment (id=13785)
--> (http://bugs.winehq.org/attachment.cgi?id=13785)
dump/backtrace on run
When running Heroes Chronicles: Conquest of the Underworld after installation
it crashes on the "loading" splash.
Just attempting to run the executable gives this result "wine
~/.wine/drive_c/Program\ Files/3DO/Heroes\ Chronicles/Conquest\ of\ the\
Underworld/UNDERWORLD.EXE"
--
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=13739
Summary: Fonts in some games are displayed incorrectly if I am
using Ubuntu 8.04
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Zenitur(a)yandex.ru
I have myself-compiled Wine from source using WineOn64 wiki. When I play
.kkrieger, fonts are incorrectly. If I try do this on myself-compiled Wine from
Ubuntu 7.10, they looks like in Windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13735
Summary: Microsoft Publisher 98 will not start
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius.scurtescu(a)gmail.com
Created an attachment (id=13763)
--> (http://bugs.winehq.org/attachment.cgi?id=13763)
Screenshot of startup error
When starting from command line seeing the following error:
~/.wine/drive_c/Program Files/Microsoft Office/Office$ wine MSPUB.EXE
fixme:storage:StgCreateDocfile Transacted mode not implemented.
fixme:font:WineEngRemoveFontResourceEx :stub
See attachment for screenshot of error message at startup.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13710
Summary: emule adunanza crash with a pagefault
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gine(a)debord.ortiche.net
Created an attachment (id=13726)
--> (http://bugs.winehq.org/attachment.cgi?id=13726)
backtrace printed on the shell
i lunch this program and leave it in other desktop. sometimes i look how i have
downloaded but every time it is 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=13609
Summary: wine crashes with page-fault on starting Majesty Gold
(dogfood?)
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tet_wine(a)gmx.com
Created an attachment (id=13573)
--> (http://bugs.winehq.org/attachment.cgi?id=13573)
Console output of starting majesty
Wine is crashing on startup of Majesty Gold. It is playing the sounds of the
intro videos, then showing the "loading"-Screen and then crashing.
There's a bugreport 13250 for rc2 wich says this issue is fixed for rc2 (din't
tried rc2). Under rc3 it's still crashing.
I tried running in Win95, Win98, Win ME and WinXP mode, with everytime the same
results.
System: Kubuntu Hardy, I used the wine binary package
(1.0~rc3~winehq0~ubuntu~8.04-1) from http://wine.budgetdedicated.com/
--
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=13604
Summary: Rome Total War 1.5: Disappearing and breaking menu
options
Product: Wine
Version: 1.0-rc3
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tjlyon(a)gmail.com
Certain menu options disappear when navigating the menus. Specifically, the
single player "Historical Battles" and "Provincial Campaign" options disappear.
When this happens, it causes another strange behavior. Selecting "Prologue" or
"Imperial Campaign" does not work. Instead, the message "Please select an item
from the list" pops up. After this, I cannot start any single player campaign
until I quit the game and restart it.
To further confuse things, sometimes this message comes up without the
aforementioned menu options disappearing.
To reproduce, select "Single Player", then select either "Imperial Campaign" or
"Historical Battle", then click the icon to return to the previous screen.
Repeat selecting "Imperial Campaign" or "Historical Battle" and returning to
the previous screen until finally the historical and provincial options
disappear.
I've also noticed that if I reproduce this bug by repeatedly selecting the
historical battle option, the final time I enter that screen before the option
disappears, the list of historical battles is empty.
--
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=13433
Summary: Zombie Panic HL2 mod crashes randomly
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: megalexis(a)gmail.com
Game randomly crashes with:
MS C++ error
Runtime Error!
Program...files\steam\steamapps\XXXXX\source SDK base\Hl2.exe
R6025
- Pure Vital function call
--
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=13169
Summary: Winbox doesn't work with wine 0.9.24 or later
Product: Wine
Version: unspecified
Platform: All
URL: http://www.mikrotik.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joelp(a)email.cz
Winbox, administrating tool for RouterOS ( http://www.mikrotik.com/ ) doesn't
work with wine 0.9.24 or later. While winbox downloading informations about
system where I'm logged, wine stoped work (winbox). Last workable version is
0.9.23. Same problem is on 32bit also 64bit Linux.
My OS is Mandriva Linux 2008.1 (64bit), but it doesn't work also on oldest
versions.
--
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=13059
Summary: DreamMaker: Icon Editor arrow buttons do not appear.
Product: Wine
Version: 0.9.61.
Platform: Other
URL: http://byond.com/download
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris062689(a)gmail.com
The buttons themselves do function properly, the arrow keys just do not appear
on them, perhaps due to a unsupported font?
--
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=11781
Summary: No screen refresh on application with tabs
Product: WineHQ Bugzilla
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torsten.schulle(a)ksk-stendal.de
Hi,
i have an issue like the old bug (1689). A special application has tabs to
navigate between screens (like the tabs on certain Excel or OpenCalc).
If I start the application all work fine on the first mask, but if I click on
the second or third tab only the field where the cursor is blinking are
refreshed. The rest of the screen shows the the first mask.
If I minimize and restore the application the complete screen is correct.
I test the application with all wine versions from 0.9.44 through 0.9.56 and
some older versions, but I have no luck.
I test also with native comctl32 and comdlg32 also with no luck-
I think that is a problem with the winex11.drv system.
I hope anybody can solve this problem
Torsten
--
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=14608
Summary: Warhammer Online Beta - Will not run patch util
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agentc0re(a)gmail.com
This is my first time trying to trouble shoot a program in wine that will not
run. I've fixed a few things before coming here. They where microsoft common
controls(created a .manifest file in the prog dir), added winhttp.dll to the
windows/system32 dir and last had to regsvr32 advapi32.dll. I can't seem to
figure out the other errors and i'm not even sure if their whats holding up the
program from running. here's my pastebin of the errors.
http://pastebin.ca/1080346
Pastbin of the manifest file
http://pastebin.ca/1080359
I called that file Microsoft.Windows.Common-Controls.manifest
For reference, here are the errors i was receiving when i first started.
http://pastebin.ca/1080361
i will attach as files as well.
uname -a
Linux nova 2.6.21.5-smp #2 SMP Sun Mar 16 22:01:24 MDT 2008 i686 Intel(R)
Core(TM)2 Duo CPU E6750 @ 2.66GHz GenuineIntel GNU/Linux
Slackware 12.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=13264
Summary: Warblade Demo: crashes on startup, maybe regression
Product: Wine
Version: 1.0-rc1
Platform: PC-x86-64
URL: http://www.warblade.as/warblade_demo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastian.friedel(a)s2005.tu-chemnitz.de
Created an attachment (id=13110)
--> (http://bugs.winehq.org/attachment.cgi?id=13110)
console output of the crash
When I try to start the Warblade Demo in either DirectX or OpenGL mode it
crashed right after the selection. The AppDB page tells nothing about crashes,
only about corrupted sound and slow graphics, so this may be a regression but I
cannot confirm that as it never worked on my machine.
I'm testing on Ubuntu 8.04 x86_64 with kernel 2.6.24-17-generic and using
wine-0.9.61 from wine.budgetdedicated.com repository.
--
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=11859
Summary: Greek keyboard layout does not work under KDE
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
With KDE 3.5.x, if I switch the keyboard layout the Greek, then many keys on
the keyboard do not work. i.e. the entire bottom row - Z through M do not work.
I tried with notepad and Picasa on KDE 3.5.6, Greek locale, Greek keyboard
layout. Locale says:
LANG=el_GR.UTF-8
LANGUAGE=el_GR.UTF-8
LC_CTYPE="el_GR.UTF-8"
LC_NUMERIC="el_GR.UTF-8"
LC_TIME="el_GR.UTF-8"
LC_COLLATE="el_GR.UTF-8"
LC_MONETARY="el_GR.UTF-8"
LC_MESSAGES="el_GR.UTF-8"
LC_PAPER="el_GR.UTF-8"
LC_NAME="el_GR.UTF-8"
LC_ADDRESS="el_GR.UTF-8"
LC_TELEPHONE="el_GR.UTF-8"
LC_MEASUREMENT="el_GR.UTF-8"
LC_IDENTIFICATION="el_GR.UTF-8"
LC_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=15810
Summary: New shell folder icons look poor in small size
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: juan_lang(a)yahoo.com
Created an attachment (id=16933)
--> (http://bugs.winehq.org/attachment.cgi?id=16933)
Screenshot
The automatic creation of the folder icons from their SVG source leaves a bit
to be desired. The ones introduced in commits
ed2c8669f0e131791bca22ee122c156f85382b87 and
51f3e69120caf133becb122fc48c9414d83222d4 have pretty bad visual artifacts.
The folder icon appears clipped at the bottom edge, while the open folder icon
is heavily aliased.
Both can be seen in the standard file open dialog from any program. I've
attached a screenshot from notepad.
--
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=15529
Summary: .debris hangs shortly after starting
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.gebert(a)gmail.com
Created an attachment (id=16489)
--> (http://bugs.winehq.org/attachment.cgi?id=16489)
Hung shortly after the loading screen
I ran this once and ended up with long stack trace that said this as the final
message:
Backtrace:
XIO: fatal IO error 12 (Cannot allocate memory) on X server ":0.0"
after 2041 requests (2039 known processed) with 0 events remaining.
I ran it again and saved the complete trace in the attached 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=15464
Summary: Panzer General 3D Demo: Selected units cause screen
corruption
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
The selected unit's possible movement is drawn incorrectly. De-selecting the
unit causes the correct output to be shown.
--
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=14406
Summary: Goldwave loaded mp3 file is corrupted
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: billstei(a)hbci.com
Created an attachment (id=14718)
--> (http://bugs.winehq.org/attachment.cgi?id=14718)
Corrupted mp3 example image
The program GoldWave version 5.25 from here: http://www.goldwave.com
When loading mp3 files (especially when large >20 meg) corrupts them and the
following message occurs on standard out:
fixme:mpeg3:MPEG3_StreamSize misses the block header overhead
Please see the attached image of an example mp3 audio clip as loaded into
GoldWave compared to the same clip which was loaded into Audacity audio editor
and exported to wav, and that wav then loaded into GoldWave. The mp3 is
corrupted in 3 places (within the first second of time -- actual number of
corruptions is hundreds/thousands of occurences) in the example as compared to
the wav file. These distortions are very audible so when testing they can be
easily located simply by listening and then zooming in to the affected area
(turning down the volume to amplifier and speakers is advised).
--
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=13834
Summary: Heroes 3 crash regression
Product: Wine
Version: 1.0-rc4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: afffect(a)gmail.com
Created an attachment (id=13888)
--> (http://bugs.winehq.org/attachment.cgi?id=13888)
crash log
When playing Heroes 3 in wine rc4 the game crashes frequently, see attachment.
That's a regression, crash doesnt happen in wine .54
--
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=13631
Summary: Unhandled page fault in winefile after pressing F5
Product: Wine
Version: unspecified
Platform: Other
URL: http://akolacz.googlepages.com/RivChat2-setup.exe
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: desowin(a)gmail.com
Created an attachment (id=13614)
--> (http://bugs.winehq.org/attachment.cgi?id=13614)
unhandled page fault in winefile
Howto reproduce:
-Open RivChat (on two difefrent machines)
-transfer any file using RivChat
-when file transfer finishes, RivChat opens folder with downloads
-press F5 in winefile window
-wait for crash
--
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=13303
Summary: Frasse and the Peas of Kejick does not run after using
the .exe installer
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://trumgottist.com/frasseinstaller.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Created an attachment (id=13160)
--> (http://bugs.winehq.org/attachment.cgi?id=13160)
screenshot of error
When using the .exe installer for Frasse and the Peas of Kejick, the install
process appears to succeed, but the game pops up the following error instead of
starting:
SLUDGE v1.6 startup error!
Can't open file c:windowsprofilesmehApplicationDataFrasse and the Peas of
KejickFrasse.slg
[OK]
The web site also includes a .zip file of the game, which runs fine.
--
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=12682
Summary: Outlook Express does not run
Product: Wine
Version: 0.9.59.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Created an attachment (id=12343)
--> (http://bugs.winehq.org/attachment.cgi?id=12343)
console log
Outlook Express after installation does not run. It gives some error messages
and stops. The console output in in the attachment.
This may be because the installation does not complete. It does not create any
new menu entries. This is probably related to bug
http://bugs.winehq.org/show_bug.cgi?id=12681
--
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=12248
Summary: Ufo Aftermath cursor issue: starting from version 0.9.44
the cursor is invisible ingame
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=1961
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: razahel(a)gmx.net
UFO Aftermath and probably UFO Afterlight bug
I tested the game against different versions of wine and found that starting
from Version 0.9.44 the cursor is invisible ingame which makes the game quite
unplayable.
I tested against my source builds of versions 0.9.43 .44 .48 .56 .57 .58
In Version .43 the game runs well in later versions there are performance and
sound enhancements but the cursor is invisible.
--
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=11477
Summary: Resident Evil 3, Polygonal characters are invisible
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kd7tck(a)msn.com
All characters in game are invisible. No system crashes ever occurred,
everything else worked just fine.
--
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=10964
Summary: Prince of Persia The two Thrones: Upside is down if some
text appears on the screen
Product: Wine
Version: 0.9.51.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lfarkas(a)math.bme.hu
I've tried PoP T2T and works almost perfectly: shows intro, the game start, and
I can play with iy - however it must be start in safe mode. Almost perfectly,
except the screen is upside down if some text, lifebar, or other icons appear
on the screen.
I've tried with the latest version 0.9.51 too, upside down remains, but in this
version the texts, and cursor doesn't appear at all - so i cannot start the
game.
--
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=10749
Summary: AVP2 rendering extremely slow (drawPrimitive using
software emulation)
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexd4(a)inbox.lv
Created an attachment (id=9590)
--> (http://bugs.winehq.org/attachment.cgi?id=9590)
hack to improve performance greatly
Aliens vs Predator 2 game (DirectX8, I think) is slower in wine by a factor of
5-10 at least, often giving seemingly just a few fps even on lowest settings
whereas on windows it runs great on highest settings. Basically unusable.
The cause is certainly this:
fixme:d3d_draw:drawPrimitive Using software emulation because manual fog
coordinates are provided
I'm sure because a hack that disabled this software emulation makes the game
run in much more acceptable speed. I'm at the moment unaware what side effects
it causes, but the game looks mostly allright with it (I didn't manage to go
beyond the very first room though because of mouse input bug).
--
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=9338
Summary: Pro evolution soccer 5 displays in the left of the
screen only
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.fileshack.com/file.x/7664/Pro+Evolution+Socce
r+5+Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
To see the bug, the demo must be played with sound disabled in winecfg
(otherwise it crashes).
But the game displays in the left of the screen only. I attached a screenshot
and the console output.
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9269
Summary: Psychonauts has misplaced / upside down textures /
shadows
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://appdb.winehq.org/appview.php?iVersionId=4384
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vitaliy(a)kievinfo.com
Created an attachment (id=7523)
--> (http://bugs.winehq.org/attachment.cgi?id=7523)
Upside down shadow
Most areas of the game (except menu) has misplaced textures. Some looks like
upside down shadows. Some like transparent objects.
Attached are the few examples of the bug.
--
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=11867
Summary: StackOverflowException from mscorwks running .NET 2
application
Product: Wine
Version: 0.9.56.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: htl10(a)users.sourceforge.net
Created an attachment (id=11155)
--> (http://bugs.winehq.org/attachment.cgi?id=11155)
+relay log, gzip'ed
I got a stackoverflow exception running a .NET 2 application with native .net
framework. Apology the application is proprietary, but I'll attach +relay
trace...
If I understand the trace correctly, there seems to be a lot of
kernel32.getlasterror and that's probably how the stack overflow?
--
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.