http://bugs.winehq.org/show_bug.cgi?id=18995
Summary: Stronghold 2: 1.4 patch causes certain graphic to
disappear
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21889)
--> (http://bugs.winehq.org/attachment.cgi?id=21889)
Image showing problem
I'm using Wine 1.1.23 (compiled from source using gcc version 4.4.0 20090506
(Red Hat 4.4.0-4) ) on Fedora 11 i386.
The problem is that after patching Stronghold 2 (European version) from 1.0 (or
1.1 or 1.2) to 1.4 (or 1.4.1) some graphics like buildings or peoples
disappear, but the game is stable and doesn't crash like on 1.0.
I also noticed that in main menu background is sometimes black.
After pressing ESC in game the window that appears sometimes haven't got a
border.
These two issues aren't present on 1.0 version.
Additional information:
-d3dx9_27.dll overridden (wine didn't suggested that in terminal but without it
i cannot start game at all)
-gfx NVIDIA 9xxx (185.18.14)
-ORM=fbo (other also are causing problems)
-multisampling doesn't solve problem
-checked in game settable shaders version (disable 1.4 2.0 3.0) none of those
helped
--
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=19865
Summary: The City of Heroes installer hang after showing the
splash screen
Product: Wine
Version: 1.1.28
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mark.wagner17(a)gte.net
When running the City of Heroes installer, the program displays the splash
screen and appears to hang: "top" shows no activity, and nothing happens if you
let it sit.
The console shows the following:
err:richedit:ReadStyleSheet ReadStyleSheet: skipping optional destination
err:richedit:ReadStyleSheet ReadStyleSheet: skipping optional destination
err:richedit:ReadStyleSheet ReadStyleSheet: skipping optional destination
--
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=20791
Summary: Folders missing on smb shares on OS X when folders >
119
Product: Wine
Version: 1.1.33
Platform: Macintosh
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: domiman(a)gmail.com
Hi,
On OS X I mount my NAS share via the Finder menu "Go to -> Connect to server".
This way my share will be in /Volumes/share.
In Wine the root of my OS X is mounted as z:\, so the NAS share will be on
Z:\Volumes\Share.
The problem is that when a folder in my share has over 119 subfolders, two
folders will always be invisible to winefile or the file open dialog of other
apps, for example notepad.
That is true as long as I'm browsing Z:\Volumes\Share.
When I'm browsing /Volumes/Share it will show all folders.
Unfortunately applications like Total Commander cannot browse /
I was able to reproduce this again and again with my NAS when connecting to it
via smb, when connecting via afp, all folders will be shown.
Steps to reproduce,
- connect the system to server via smb
- in folder make 119 sub folders
- make one more subfolder
- now when you browse with winefile z:\Volumes\yourshare\folder\ you will see
only 118 sub folders
- when you browse with winfile /Volumes\yourshare\folder\ you will see all 120
sub folders
Just keep in mind that this was found on OS X, it might be different on other
systems.
--
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=21365
Summary: Rounding error in database app?
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://forum.winehq.org/viewtopic.php?t=7333
describes a rounding error:
I've got a "straightforward" database querying problem with a Visual Basic 6
application that happens on Debian (+WINE), but not on Windows XP.
SETUP:
* COMPUTER "FREE" with:
--- DEBIAN Lenny (Lang: Spanish)
--- unixODBC + FreeTDS for ODBC conectivity to remote MSSQL2000 (tested,
working)
--- WINE 1.1.33
--- MDAC 2.8 (for channelling the ODBC connection through to unixODBC)
* COMPUTER "M$" with:
--- Windows XP (Lang: Spanish)
--- MSSQL Server 2000
--- MDAC 2.8
PROBLEM:
I create an ODBC connection to MSSQL2000 on VB6, and query a field (Numeric
9,2) into an ADODB.Recordset.
On Windows, the program returns the complete field numeric value (2.44), but on
Debian it rounds the number (2.00).
On Debian, channelling the Query through isql properly returns 2.44, so it's
most likely a WINE or VB6+WINE issue.
LITTLE VB6 TEST PROGRAM CODE (returns 2.44 on Windows XP, but 2.00 on Debian):
Code:
Private oConn As ADODB.Connection
Private Sub Command1_Click()
Dim oRS As ADODB.Recordset
Set oConn = New ADODB.Connection
oConn.Open "DSN=myODBCDSN; UID=username; PWD=password;"
Set oRS = New ADODB.Recordset
oRS.Open "SELECT Price FROM GOODS WHERE idGoods = 10", oConn, adOpenDynamic
MsgBox oRS("Price")
oConn.Close
Set oRS = Nothing
Set oConn = Nothing
End Sub
The line oRS("Price") is where the problem is.
...
I noticed oleaut32.dll is distributed with VB6 Runtime Libraries, which I had
previously installed. I reinstalled them via Winetricks both set as Builtin and
native and there was no change unfortunately.
I also fiddled with all Library Native/Builtin settings to see if anything
changed, but the problem remains.
...
In WINE 1.1.35, native OLE DB support was added. Since I could not find a
solution using ODBC, I switched to a OLE DB DSN-Less connection taking
advantage of this brand new feature and tried again. It worked!
I could not find why ODBC gave me this problem, and now I can remain happily
ignorant [hopefully].
--
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=21635
Summary: H&R Block Tax Cut 2007 and At Home 2009 help does not
work
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Start the app and press F1. The help window comes up, but complains
that you don't have Javascript enabled.
If you got past bug 20142 with 'winetricks ie6',
pressing F1 shows instead the IE "The page cannot be displayed" error,
plus the following console messages:
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_RESET_URLCACHE_SESSION:
STUB
err:ole:ITypeInfo_fnInvoke did not find member id -518, flags 0x4!
err:ole:ITypeInfo_fnInvoke did not find member id -517, flags 0x4!
err:ole:ITypeInfo_fnInvoke did not find member id -514, flags 0x2!
err:ole:ITypeInfo_fnInvoke did not find member id -504, flags 0x2!
err:ole:CoGetClassObject class {6c736db1-bd94-11d0-8a23-00aa00b58e10} not
registered
err:ole:CoGetClassObject no class object {6c736db1-bd94-11d0-8a23-00aa00b58e10}
could be created for context 0x1
fixme:wininet:GetUrlCacheEntryInfoExW Undocumented flag(s): 100
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
err:ole:ITypeInfo_fnInvoke did not find member id -525, flags 0x2!
--
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=23728
Summary: MCI CD audio fails to play in CueClub/Trickshot
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
CueClub is a snooker/pool game developed by Bulldog Interactive. It was
published as Trickshot by Phoenix Games Ltd.
The game CD has several audio tracks. The game is unable to play these under
Wine, and exits at startup with a "sound error" dialog box.
The CD audio handling in the original CD version of Trickshot differs from that
in the v1.64 patch available from
http://www.bulldoginteractive.com/cc_support.htm
In both cases the game exits with a "sound error" dialog. With the later
executable, on my machine the CD spins up then stops. There is no CD activity
with the earlier executable.
I used WINEDEBUG=+mcicda...
Running trickshot.exe as installed from original CD:
trace:mcicda:MCICDA_Open (0001, 00002002, 0x13b803c);
trace:mcicda:MCICDA_Set (0001, 00000400, 0x32fd84);
trace:mcicda:MCICDA_Set MCI_FORMAT_TMSF !
trace:mcicda:MCICDA_Status (0001, 00000100, 0x32fd90);
trace:mcicda:MCICDA_Status dwItem = 3
trace:mcicda:MCICDA_Status MCI_STATUS_NUMBER_OF_TRACKS = 11
trace:mcicda:MCICDA_Stop (0001, 00000000, (nil));
trace:mcicda:MCICDA_Close (0001, 00000000, (nil));
trace:mcicda:MCICDA_Stop (0001, 00000002, (nil));
After patching the installation with the v1.64 patch the new cueclub.exe gives:
trace:mcicda:MCICDA_Open (0001, 00002002, 0x126803c);
trace:mcicda:MCICDA_Set (0001, 00000400, 0x32fd70);
trace:mcicda:MCICDA_Set MCI_FORMAT_TMSF !
trace:mcicda:MCICDA_Status (0001, 00000100, 0x32fd7c);
trace:mcicda:MCICDA_Status dwItem = 3
trace:mcicda:MCICDA_Status MCI_STATUS_NUMBER_OF_TRACKS = 11
trace:mcicda:MCICDA_Status (0001, 00000112, 0x51dc10);
trace:mcicda:MCICDA_Status dwItem = 1
trace:mcicda:MCICDA_Status MCI_TRACK #2 LENGTH=??? !
trace:mcicda:MCICDA_CalcTime (0x12680e0, 00000002, 722);
trace:mcicda:MCICDA_CalcTime MSF 00:09:47 -> dwTime=3082496
trace:mcicda:MCICDA_Status LENGTH=3082496
trace:mcicda:MCICDA_Play (0001, 0000000D, 0x51dc00);
trace:mcicda:MCICDA_CalcFrame (0x12680e0, 0000000A, 2);
trace:mcicda:MCICDA_CalcFrame MSF 02-00:00:00
trace:mcicda:MCICDA_CalcFrame TMSF trackpos[2]=20:26:67
trace:mcicda:MCICDA_Play MCI_FROM=00000002 -> 92017
trace:mcicda:MCICDA_CalcFrame (0x12680e0, 0000000A, 789118978);
trace:mcicda:MCICDA_CalcFrame MSF 02-00:09:47
trace:mcicda:MCICDA_CalcFrame TMSF trackpos[2]=20:26:67
trace:mcicda:MCICDA_Play MCI_TO=2F090002 -> 92739
trace:mcicda:MCICDA_Play Playing from 92017 to 92739
trace:mcicda:MCICDA_Stop (0001, 00000000, (nil));
trace:mcicda:MCICDA_Close (0001, 00000000, (nil));
trace:mcicda:MCICDA_Stop (0001, 00000002, (nil));
trace:mcicda:MCICDA_Open (0001, 00002002, 0x12e9b4);
trace:mcicda:MCICDA_Set (0001, 00000400, 0x32f2f0);
trace:mcicda:MCICDA_Set MCI_FORMAT_TMSF !
trace:mcicda:MCICDA_Status (0001, 00000100, 0x32f2fc);
trace:mcicda:MCICDA_Status dwItem = 3
trace:mcicda:MCICDA_Status MCI_STATUS_NUMBER_OF_TRACKS = 11
trace:mcicda:MCICDA_Close (0001, 00000002, (nil));
trace:mcicda:MCICDA_Stop (0001, 00000002, (nil));
--
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=25282
Summary: SetWindowsHookEx does not work perfectly - XMBC and
Warcraft 3
Product: Wine
Version: 1.3.7
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bozkar(a)gmail.com
X-Mouse Button Control (XMBC) is a tool which allows configuring various
actions to mouse buttons, including simulated keystrokes and simulated mouse
clicks.
As the FAQ inform us, everything is achieved via SetWindowsHookEx.
The problem is - when I try to simulate "left mouse button" it "clicks" in the
other part of the map, that the pointer actually is. In menus it seems to work
without any problems, so It may be related with 3D modes.
--
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=25508
Summary: not clicable menu and child window
Product: Wine
Version: 1.3.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mraz(a)dru.sk
I try to run information system "Noris.exe" created in Sybase PowerBuilder 7.0
aplication runs fine. But when i try to click to child window nothings
happends. When i acces menu through its accelerator, menu will open and its
abble to click on them. When i move mouse on the toolbar buttons are hover but
unable to click on them. Contex menu on windows item also not working. I dont
known how to post debuging info because aplication not crash. Please 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=25744
Summary: Wineboot fails on powerpc/linux
Product: Wine
Version: 1.3.11
Platform: ppc32
OS/Version: Linux
Status: NEW
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@gcc40:~$ WINEDEBUG=+process,+wineboot ./wine-git/wine
./wine-git/programs/wineboot/wineboot.exe.so 2>&1 | tee boot.txt
wine: created the configuration directory '/home/austin/.wine'
trace:process:init_current_directory starting in L"Z:\\home\\austin\\" 0xc
trace:process:CreateProcessW app L"C:\\windows\\system32\\wineboot.exe" cmdline
L"C:\\windows\\system32\\wineboot.exe --init"
trace:process:open_exe_file looking for L"C:\\windows\\system32\\wineboot.exe"
trace:process:CreateProcessW starting L"C:\\windows\\system32\\wineboot.exe" as
32-bit Winelib app
err:process:start_wineboot failed to start wineboot, err 1359
trace:process:__wine_kernel_init starting process
name=L"Z:\\home\\austin\\wine-git\\programs\\wineboot\\wineboot.exe.so"
argv[0]=L"Z:\\home\\austin\\wine-git\\programs\\wineboot\\wineboot.exe.so"
trace:wineboot:pendingRename Entered
trace:wineboot:pendingRename Value not present - nothing to rename
trace:wineboot:ProcessRunKeys processing L"RunServicesOnce" entries under HKLM
trace:wineboot:ProcessRunKeys done
and hangs there at nearly 100% cpu, even if I let it sit for 15 minutes.
--
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=26282
Summary: Garry's Mod: Error drawing under water with
r_WaterDrawRefraction enabled.
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lilezek(a)gmail.com
CC: wine-bugs(a)winehq.org
Hi. I see that, with r_WaterDrawRefraction enabled, you can't see nothing under
water. And, if you dissable it, you have problems with the skybox.
I'm going to do a video to show it. By the way, I can't add a logtrace because
I don't know how to execute steam games with winedbg.
Thank you for read.
--
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=26731
Summary: FIFA11 BUG it run's until I start a game....PLEASE
HELP!!!
Product: Wine
Version: unspecified
Platform: All
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nikk.martin1986(a)googlemail.com
hey guys!
I need help!!!!
I installed fifa11 like this guy did (http://youtu.be/0ss8CANpfOQ)...and it
runs until I wanna start a match....the game hangs up..... what can I do? do
you know this bug?
I got an imac"27 intel core i3, graphic-chip by ati radeon hd 5670
please help me!!!!
--
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=27359
Summary: Very low frame-rate
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carpatian_forest92(a)yahoo.com
Trying to run Legend of mir 2.6. It runs, but i get terrible frame-rate and
crashing when there is alot going on screen.
My PC can handle 5+ instances of the game running (under windows) so it's not
that my pc is slow and the stress put on my wine makes it run like that.
here is a link to the thread i started, if that helps.
http://forum.winehq.org/viewtopic.php?p=61680#61680
My pc: asus m2v-mx se i think
amd athloc x2 5400+
2GB ram
nVidia gt 240.
--
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=28315
Summary: CPU spins max. when running a Wine application
Product: Wine
Version: 1.3.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xavier.poirot(a)dalaen.com
Hi,
I have installed Wine a few months ago on a Archlinux distribution, running on
64 bits computer.
I have installed BY Wine two dictionaries (Danish Politikens Dictionaries :
Nudansk and Fransk/Dansk).
The dictionaries runs successfully and I can use them.
Though, when I launch one of them (or both, it occurs as soon as I open one)
the CPU starts to spin up to 90% __ALL THE TIME__.
The CPU spins while running the application, and also AFTER quitting it.
After quitting application, the process Nudansk21.exe (one of the dictionary,
for instance) is still running with high CPU eating.
The two processes eating most CPU are Nudansk21.exe (dictionary) and
wineserver, eating together 90% CPU.
The only solution to quit the application is "wineserver -k" (or killing each
processes manually).
If you need any more informations, please let me know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20476
Summary: configure uses GCC's keyword typeof
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yann(a)droneaud.fr
configure script uses typeof() which is a GCC extension not available in C99.
Running configure script with a C99 compliant compiler (eg gcc --std=c99)
reports errors about missing libs/features.
--
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=25403
Summary: Adobe Acrobat 10.0.0 Pro does not work
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rusivi2(a)gmail.com
Downstream bug may be found at:
https://bugs.launchpad.net/ubuntu/+source/wine1.2/+bug/684589
1) lsb_release -rd
Description: Ubuntu 10.10
Release: 10.10
2) apt-cache policy wine1.3
wine1.3:
Installed: 1.3.8-0ubuntu1~maverickppa1
Candidate: 1.3.8-0ubuntu1~maverickppa1
Version table:
*** 1.3.8-0ubuntu1~maverickppa1 0
500 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/ maverick/main i386
Packages
100 /var/lib/dpkg/status
3) What is expected to happen is Adobe Acrobat 10.0.0 Pro (Adobe Acrobat X Pro)
installs and works.
4) What happens instead is that it seemingly installs successfully but does not
run. Steps to reproduce:
Download file via:
https://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=en&sdi…
Secondary click AcrobatPro_10_Web_WWEFD.exe, primary click Open With WINE
Windows Program Loader, choose Existing Files Skip, in the newly created
Desktop folder Adobe Acrobat X secondary click Setup.exe, primary click Open
With WINE Windows Program Loader, install the trial version, choose a Complete
Install, open the Terminal, change to directory:
~/.wine/drive_c/Program Files/Adobe/Acrobat 10.0/Acrobat
and type:
wine Acrobat.exe
(please see attached wine 1.3.8: wine Acrobat.exe.txt).
--
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=25428
Summary: Memory allocation issue when working with a PAE kernel
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iliverez(a)gmail.com
Created an attachment (id=32366)
--> (http://bugs.winehq.org/attachment.cgi?id=32366)
Memory allocation test program.
It seems that when using wine with A PAE kernel on a system with enough memory
to put PAE into effect (e.g. 5GB), the maximum limit of memory that an
application can allocate is about 1.5GB. Using the same kernels on the same
system but with 3GB, the limit is 2GB.
I have created a small test that allocates memory with a step of 64MB with a
maximum total allocated space of 2GB. Then I compiled it both with winegcc and
gcc.
On the 3GB RAM setup, I could reach the MAX value, both with the winegcc and
the gcc compiled executable
On the 5GB RAM setup, the winegcc version stopped at ~1.5, while the gcc
version reached the MAX value.
Kernels tested:
2.6.31.12-rt21-avlinux-realtime-pae-rev3
2.6.36-liquorix-avlinux-pae
Wine versions tested:
1.3.5, 1.3.7
Known applications affected by this issue:
NI Kontakt 4
--
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=25434
Summary: ChesseBase 9
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vinko.oblak(a)gmail.com
Hello,
I have new instalation Ubuntu 10.10(maverick), Kernel Linux 2.6.35-23-generic
Gnome 2.32.0 and 32-bit Wine 1.2.1 or 1.3.
The windows 32-bit aplication ChessBase Light 2009 crash down all the time
after few minute on the diferent computer based on Intel or AMD procesor.
Best regards,
Vinko
--
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=25460
Summary: Microsoft Office 2003: File->Properties dialog TAB
inserts tab symbol
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pleasenospam325(a)mail.ru
In Word/Excel File->Properties dialog.
When I type something in a text box and press TAB, the next text box becomes
active (as expected). But before that the tab symbol is inserted into the first
text box.
--
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=25473
Summary: Mount & Blade: Warband does not handle multiple
screens gracefully (resolution problem)
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brian(a)brianvuyk.com
I am running Linux Mint 10, and I am running a desktop with two monitors - a
1920x1080 on the left, and a 1280x1024 on the right, configured in a Twinview
configuration using Nvidia's tools.
This gives me a desktop resolution of 3200x1080.
When I start Mount and Blade: Warband (or the original Mount & Blade), the game
pops up in the left (1920x1080) monitor. I get a notification from the game at
the bottom left of the screen that says 'Multiple Screen mode enabled.'
However, the game picks up the 3200x1080 desktop resolution, and uses that on
the single 1920x1080 monitor it is displaying on. As a result, the actual game
output is displayed in a 60% wide (1920px/3200px) column in the center of the
monitor.
I can navigate to the video configuration settings, but the only resolution
available to the game is the 3200x1080 desktop resolution.
As a side note, the mouse seems to work with correct resolution - that is, when
I point the cursor over where a menu item *should* be, the menu item lights up,
while if I point the mouse cursor where the item displays with the corrupted
resolution, the menu item doesn't activate.
On Windows XP, this works as expected - the game displays on one monitor with
the correct resolution.
--
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=25482
Summary: Amnesia: AL lib fault getting "periods"
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cww(a)denterprises.org
When I start the "Amnesia: The Dark Descent" game from Steam, I get the
following fatal error:
AL lib: alsa.c:743: get periods failed: Invalid argument
wine: Unhandled page fault on read access to 0x7f0b2df0 at address 0x7d125610
(thread 001f), starting debugger...
I have a very custom .asoundrc, but in the ~2 years I've had my current sound
card (and my current .asoundrc), I've never had any problems playing audio.
The DVD version (i.e. not the Steam version) of Amnesia is rated as platinum,
but the most recent test for that was performed with Wine 1.3.3. I'll give
1.3.3 a whirl and perform a bisection if I don't get the same 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=25509
Summary: Word 2007 Blog Post feature will not allow blog
account registration.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wahisfun(a)gmail.com
System: ubuntu 10.04 LTS (fully updated). Wine 1.3.8. MS Office 2007.
Bug: Word 2007 Blog Post feature will not allow blog account registration. Blog
Account - Typepad. Error message says:Word cannot register your account.
--
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=25511
Summary: Test app with Windows Media control hangs when opening
video
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a_villacis(a)palosanto.com
There is a Windows Media control that is embeddable by a Visual Basic 6
application. When using a test application with an embedded Windows Media
Control and trying to open an AVI file under wine-1.3.9 and gstreamer support
compiled in, the application hangs. The app menu is unresponsive, none of the
buttons of the control work, not even the Close button of the window manager
responds. The only way to terminate the app is to Ctrl-C from the console.
When I select an AVI file, I also get the following at the console:
fixme:quartz:FilterGraphNoThread_create CLSID_FilterGraphNoThread partially
implemented - Forwarding to CLSID_FilterGraph
fixme:quartz:FilterGraphInner_QueryInterface unknown interface
{8e1c39a1-de53-11cf-aa63-0080c744528d}
fixme:quartz:FilterGraphInner_QueryInterface unknown interface
{fc4801a3-2ba9-11cf-a229-00aa003d7352}
err:gstreamer:push_data_init Obtaining buffer returned: -2
The very last message appears about half a second later than the rest of the
messages.
--
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=25540
Summary: The Full licensed version of Family historian cannot
be installed due to an overflow error
Product: Wine
Version: 1.1.34
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nlaw(a)naad.fsnet.co.uk
The Full licensed version of Family historian cannot be installed due to the
error "err:seh:setup_exception_record stack overflow 856 bytes in thread 001c
eip 7bc3f72a esp 00240fd8 stack 0x240000-0x241000-0x340000" (There is a
workaround), however installation of the demo version works ok.
The workaround involves copying the program folder and registry entry's from a
windows machine ie bypassing the install process then the program works.
--
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=25547
Summary: Sims3Launcher freezes when attempting to launch game
Product: Wine
Version: 1.3.9
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adman.com(a)gmail.com
Created an attachment (id=32532)
--> (http://bugs.winehq.org/attachment.cgi?id=32532)
Wine error log
Sims3Launcher Version 1.0 seems to work, but after upgrading to versions 1.15,
1.17 or 1.18 the program works as well as is to be expected, except that when
clicking the large Play icon (which attempts to execute the actual game
TS3.exe), the whole program freezes and the log reports:
err:ntdll:RtlpWaitForCriticalSection section 0x104a3bc0 "?" wait timed out in
thread 0009, blocked by 0046, retrying (60 sec)
then after a long time reports other .NET-related messages
Please ask for any more logs / dumps / etc. 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=25566
Summary: Illustrator CS5 installer fails
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor.demyanov(a)gmail.com
Start "Set-up.exe" (Adobe.CS5.Design.Premium)
Immediately fail.
See attached log file.
P.S.: In wine 1.2.1 was bug # 22680, after installing wine 1.3.9 and clearing
WINEPREFIX showed this error.
--
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=25568
Summary: spore fails to start with kernel 2.6.32-26-generic or
newer in kubuntu
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thevladsoft2(a)gmail.com
The game never start when run in kubuntu lucid using kernel 2.6.32-26-generic
or 2.6.32-27-generic. If I use a previous kernel, 2.6.32-25-generic, it starts
normally.
In fact, this is the only thing that does not work using the new kernels.
This is the only exit when running via console:
"fixme:thread:SetThreadIdealProcessor (0x70): stub
fixme:thread:SetThreadIdealProcessor (0x78): stub"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25589
Summary: AutoCAD 2000: "Help->What's new" doesn't work
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) wine acad.exe
4) Help->What's new
Behaviour:
Nothing happens.
Expected behaviour:
What's new should appear.
Terminal output:
trace:winhelp:WINHELP_GrabWindow Grab 0x12a308#0++
trace:winhelp:WINHELP_GrabWindow Grab 0x12a308#1++
trace:winhelp:WINHELP_ReleaseWindow Release 0x12a308#2--
trace:winhelp:WINHELP_HandleCommand Got[127]: cmd=258 data=0136f6a0
fn=C:\Program Files\ACAD2000\help\acad_ug.hlp
fixme:winhelp:WINHELP_HandleCommand Unhandled command (102) for remote winhelp
control
err:ole:RevokeDragDrop invalid hwnd (nil)
trace:winhelp:WINHELP_HandleCommand Got[56]: cmd=2 data=00000000 fn=C:\Program
Files\ACAD2000\help\acad.hlp
trace:winhelp:MACRO_Exit ()
trace:winhelp:WINHELP_ReleaseWindow Release 0x12a308#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=25594
Summary: Many errors in launcher.
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lilezek(a)gmail.com
The application Launcher of Fonlie: 2238, have all buttons wrong placed, but
they work. There is also a bug on the status checking.
I've tested it with dotnet20 or dotnet30, and the same bugs occurs.
In the log appears the output of the application when I start it and close it
without doing anything else.
Screenshot: http://appdb.winehq.org/appimage.php?iId=33629
--
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=25610
Summary: The Action Replay DSi Code Manager, used to program
the Action Replay DSi won't load.
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: k2trf(a)yahoo.com
Created an attachment (id=32609)
--> (http://bugs.winehq.org/attachment.cgi?id=32609)
Backtrace of the program (first time I ever did this, so it may not have been
done correctly)
*Running openSuSE 11.2
*Originally obtained Wine through the Software Manager - YaST (as SuperUser)
*Package name: wine
*Version: 1.3.9-1.1 (i586)
*Package name: wine-gecko
*Version: 1.1.0-11.0 (noarch)
*Package name: wine-mp3
*Version: 1.1.39-1.pm.12.2 (i586)
*Program Name: Action Replay DSi Code Manager
*Originally installed with a CD that came with the device, but a copy of the cd
files can be found at
[http://us.codejunkies.com/support_downloads/Action_Replay_DSi_PC_software.z…].
*Launched by terminal: wine "c:\program files\datel\action replay dsi code
manager\actionreplaycodemanager.exe"
*The program only runs the first time, after installation under Wine, and won't
launch any time after if selected from the application menu. Furthermore, when
it does work the first time, it won't connect to the internet, to receive
software updates (there is one that must be gotten to work with the
subscriptions), the subscriptions never load since there is no internet, and
the device is not recognized by the program when it is plugged in. Windows
platforms usually identify it as "ardsihwprog".
*Backtrace is attached. This is the first time I have ever done a backtrace, so
I'm not entirely sure I did it correctly, but I believe I did. The backtrace
was copy & pasted into an OpenOffice.Org document, and saved as an .odt file
(open document text). If you need it in a different format, please let me know.
Please feel free to contact me for any further inquiries about this problem,
and 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=25623
Summary: specctra.exe (version 15) not work
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jopka(a)kvidex.ru
Created an attachment (id=32631)
--> (http://bugs.winehq.org/attachment.cgi?id=32631)
WINEDEBUG=+relay,+process wine
/home/test/.wine/drive_c/Padspwr/SPECCTRA/bin/specctra.exe > log.txt 2>&1
Hi!
Specctra version 15 not start under Wine.
It says
Code: 0xC0000005 Address: 0x00A92CC2
Trying to write memory at 0x00000000
I attach log file.
AppDB not know about Specctra router. (It's a software to auto-route printed
circuit boards).
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=25637
Summary: DNS on wine 1.3.8 RtlpWaitForCriticalSection leads to
winedebug seh.
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebug(a)piments.com
I have got DNS 9 pro to install after some fiddling and works quite well on
basics. (silver rating)
It required three runs of install shield but finally worked including options
and non-std install dir. 9/10 for installer.
However, several functions do not work and lead to stack or errors of the form
err:ntdll:RtlpWaitForCriticalSection section 0x110060
"/back/tmp/portage/app-emulation/wine-1.3.8/work/wine-1.3.8/dlls/ntdll/heap.c:
main process heap section" wait timed out in thread 003f, blocked by 0009,
retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x110060
"/back/tmp/portage/app-emulation/wine-1.3.8/work/wine-1.3.8/dlls/ntdll/heap.c:
main process heap section" wait timed out in thread 001d, blocked by 0009,
retrying (60 sec)
The dir is where gentoo did the build.
One specific cause is to highlight a word , rightclick and select correction,
though this is not unique instance.
After some time this triggers wine to drop into the debugger.
I see similar issue in DNS 7 which I did have working on wine circa 0.92 . This
is probably too far back to do a regression test. All other issues with dns 7
seem resolved , the installer and training was Platinum perfect, so it would be
worth following this issue on both versions.
I realise this error is pretty generic, so how can I get more specifics to make
a proper bug report on this issue.
I would probably split this into two to avoid confusion.
--
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=25641
Summary: DCC_E2 will not run
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yprgwt(a)gmail.com
when executing the program a popup with "unable to get ping handle" after that
a memory fault shows and a popup with abnormal execution of the 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=25644
Summary: KASHA SECURITY MODULE on game Lineage2
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: gameux
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: qnt396(a)gmail.com
Good day i have problems with playing game Lineage 2 in that server they using
lots of security and this security not aloud me to play this game on this
server because of wine working different
It's address to look what they using for security http://www.kasha-malaga.es/
I'm have wine and play on Linux. Linux Ubuntu Linux. I'm install everything but
when I starting Lineage 2 i get table that if there is no this problem on
windows look to wine forum You have no information about it yet
Can you fix this bug Cos on Apple computers it working perfect
Thx Qnt
--
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=25647
Summary: AVP2 lots of IDirectInputDevice2AImpl_GetProperty
Unknown property
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sexy_b14(a)hotmail.com
Created an attachment (id=32663)
--> (http://bugs.winehq.org/attachment.cgi?id=32663)
AVP2 wine 1.3.10 output log
When running AVP2 wine will get a lot of dinput fixme.
fixme:dinput:IDirectInputDevice2AImpl_GetProperty Unknown property
<guid-0x0004>
while its playing to intro movies, if you hit any key to skip the intro movies
the exe will lock up. Once your in the main menu the that fixme stops.
Please see attachment thanks guys.
AMD Phenom(tm) II X4 955 Processor
ATI HD5700 X2 in crossfire Catalys 10.12
Running with wineprefix=32
--
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=25656
Summary: foobar2000: suddenly stops playing
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t0p0linik(a)yahoo.it
It always happens when foobar2k is running and the gnome screensaver starts,
then foobar stops playing.
Please note: the application doesn't crash, it simply remains freezed as it was
waiting for an event from (maybe) an audio buffer. The audio cursor stops
moving, the duration time doesn't go on, no sounds, just waiting. If I click
`stop' it stops, if I click `play' then it restarts playing the same track:
namely, the usual behaviour.
I took care in choosing a screensaver with no sounds but no luck, this still
happens. Note that if I disable screensaver, then the ubuntu power management
makes the screen fade at a specified inactivity time but this time foobar2k
goes on as it should, it keeps playing.
This brings me the idea this is not a bug in managing foobar, this is a bad
interaction between wine and the gnome screensaver.
I'm running ubuntu 10.04 with gnome DE, wine sound configuration: ALSA driver,
full hw acceleration, 44100 Hz, 16 bit. Foobar2k was recently installed in this
shiny new .wine prefix.
BTW, happy new year!
--
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=25659
Summary: mshtml:activex tests cause a timeout on some wine
machines
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sven.wine(a)gmail.com
http://test.winehq.org/data/tests/mshtml:activex.html
shows that they hang since the 3rd of December. They also hang on my machine.
When I do make test and then run the activex tests, it just works. This makes
regression testing (if needed) a bit harder.
This is all the terminal output there is when running the activex tests from
the winetest executable from the website:
fixme:system:SetProcessDPIAware stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0xa5e914, overlapped 0xa5e918): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:resource:GetGuiResources (0xffffffff,0): stub
It hangs when a window called 'H' is created. This could mean that it hangs
somewhere near line 2015? Jacek, could you have a look?
--
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=25676
Summary: xpadder keyboard and mouse left and right click
emulation
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sameerjain.50(a)gmail.com
I have succesfully run the program called xpadder (official wesite
www.xpadder.com) and v5.3 for personal use can be downloaded from
"http://wow.couchcomputing.info/home/play-wc-with-your-console-controller/do…"
here.
It emulates mouse movement very well but it does not do emulation for mouse
left, right click and any keyboard press.
--
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=25688
Summary: PvPTool almost working with Wine (AutoIT program)
Product: Wine
Version: 1.2
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hardisk(a)hardisk.no-ip.org
Created an attachment (id=32721)
--> (http://bugs.winehq.org/attachment.cgi?id=32721)
Screenshot
Hi
I try to use PvPTool on Ubuntu 10.10 , PvPTool is a bot for the World of
Warcraft game , game that works great with wine.
Attached is a screenshot of the farest I've gone in order to run this program,
It launches great but the GUI dosn't fully shows up as you can see.
I also attached the wine logs if it can help you.
Thanks
Logs : http://pastebin.com/QQEW52Ra
--
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=25716
Summary: New: native dxdiag+quartz crash with builtin devenum
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
To reproduce, use a fresh .wine and native dxdiag.exe and dxdiagn.dll.
To work around bug 25715, use native quartz.dll.
Starting dxdiag puts up an interface, then crashes with
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category
{33d9a761-90c8-11d0-bd43-00a0c911ce86} not found
Unhandled exception: page fault on read access to 0x00800009 in 32-bit code
(0x35501dec).
Backtrace:
=>0 0x35501dec in quartz (+0x1dec) (0x0032e388)
1 0x7dc2ce92
DEVENUM_ICreateDevEnum_CreateClassEnumerator+0xd01(iface=0x143fa8,
clsidDeviceClass=?, ppEnumMoniker=0x68, dwFlags=0x32f4dc)
[dlls/devenum/createdevenum.c:677] in devenum
On the next run, it nicely says "DxDiag has detected that there may
have been a problem accessing DirectShow the last time this program
was used. Would you like to bypass DirectShow this time?"
If you say yes, it goes on to work well.
winetricks devenum works around the initial crash, and lets dxdiag
work as expected.
(Not sure what component this is; using quartz, since it seems at least
nearby.)
--
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=12202
Summary: No pic when installing Indiana Jones demo in fullscreen
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.jeuxvideo.fr/telecharger-demo-jouable-
2656.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Created an attachment (id=11610)
--> (http://bugs.winehq.org/attachment.cgi?id=11610)
good screenshot (windowed mode)
As said in the summary, there is no pic when installing Indiana Jones and the
Emperor4s tomb demo in fullscreen. Installing it windowed mode (thanks to
winecfg) makes the pictures appearing
I attached 2 screenshots to show the problem. And a good console output and a
bad one.
Joaopa
--
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=28920
Bug #: 28920
Summary: vsvars32 PATH setting doesn't propagate to caller
Product: Wine
Version: 1.3.31
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Installed visual c++ 2005 express, tried to use it with windows eclipse.
After patching wine to work around bug 28915, next problem was getting
PATH set before running eclipse.
Creating a batch file foo.bat that does
call c:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat
PATH
shows that the PATH set by vsvars32.bat doesn't affect the parent.
Small examples do, though. Not sure what's wrong with the bigger batch file.
I think this used to work.
--
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=20444
Summary: msi installer fails instead of asking for another CD
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=24291)
--> (http://bugs.winehq.org/attachment.cgi?id=24291)
Installation of Doom 3 fails
Hi, i tried to install Doom3 CD version and it fails in a place, where should
the installer ask for CD2. Windows message pops up:
Error: -1603 Fatal error during installation. Consult Windows Installer Help
(Msi.chm) or MSDN for more information.
Console says:
err:msi:ACTION_InstallFiles Failed to copy L"F:\\Setup\\Data\\base\\pak000.pk4"
to L"C:\\Program Files\\Doom 3\\base\\pak000.pk4" (2)
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1603
File pak000.pk4 is indeed placed on CD2.
All the following wine tested versions fails:
1.0.1, 1.1.5, 1.1.10, 1.1.13, 1.1.19, 1.1.22, 1.1.30, 1.1.31
...so it probably never worked. The reason why people in AppDB says "install
YES" is probably because of using DVD version of DOOM3 (works-tested myself,
all files on one medium) or they installed it on Win and just run it under
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=25767
Summary: Hegemony Gold rendering artifact: border overlay only
shows in upper left corner of screen
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
http://www.longbowgames.com/downloads/Hegemony%20Gold%20Installer.exe
installs and starts fine.
In the very first screen once the
game tutorial is underway (when it says "Pan the camera with..."
or "Zoom and rotate with ...",)
you can see a rotating leapard-spotted band surrounding the castle
(presumably showing the border of the region of influence of
the castle?).
On Windows, this band isn't confined to a region of the screen,
but in Wine, it is confined to the left half and upper third
of the screen, regardless of resolution or whether you've
selected fullscreen or windowed mode in the game.
This is on an Nvidia gt 240 with driver 260.19.06.
I also checked with wine-1.1.38, same 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=19293
Summary: Galactic Civilizations 2 v. 1.0D Digital:Bonus Pack.
Program crashes after starting a new game.
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.galciv2.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dduck(a)rambler.ru
CC: dduck(a)rambler.ru
Created an attachment (id=22337)
--> (http://bugs.winehq.org/attachment.cgi?id=22337)
Result of regression tests
Program crashes after starting a new game.
In wine-1.1.25 this game crashes when clicking "New game". This bug is about
events after starting the game.
--
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=25837
Summary: Dual head changing resolution issue
Product: Wine
Version: 1.2.2
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: th-net(a)yandex.ru
Created an attachment (id=32923)
--> (http://bugs.winehq.org/attachment.cgi?id=32923)
Screens configuration
I'm using following screens configuration (see attach)
When window of program under Wine placed at 1st screen and second screen was
detached that window moves down. If reattach 2nd screen window returns to it's
original place.
This happens for me often when i send to hibernation my laptop, detach 2nd
screen and wakeup it without 2nd screen connected.
In this case some programs can't properly work with window area, which been
under bottom of screen. (If this happens without hibernation all correct)
I think this happens in result of changing coordinates.
0 by y axis is top of 2nd screen, so window at 1st screen which palaced very
top of screen have not 0 by "y" but 0+n (see attach)
But when 2nd screen is detached 0+n isn't top of screen, and window "jumps"
down.
--
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=27781
Summary: LEGO Harry Potter Year 1-4 crashes with "Failed to
create d3d device. Application will now exit. Error =
0x8876086c"
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mm(a)qimmit.com
Created an attachment (id=35544)
--> (http://bugs.winehq.org/attachment.cgi?id=35544)
Error log
When starting the game, a popup says the following:
"Failed to create d3d device. Application will now exit. Error = 0x8876086c"
--
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=25815
Summary: 12voip application won't start after installation
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elcondor1008(a)hotmail.com
Created an attachment (id=32899)
--> (http://bugs.winehq.org/attachment.cgi?id=32899)
Terminal output during and after installation of 12 voip.
12voip is a nice VOIP program, makes possible to phone to land line, mobile
phones and sending SMS for a very low price (far lower than a skype).
Download is free on URL: http://www.12voip.com/en/index.html
After installation, it is possible to try some minutes of phoning for free.
I tried to install application on Ubuntu 10.04, and on Debian 5.0.
This output is for Ubuntu 10.04, Wine version 1.2.2-1ubuntu-lucid1.
In the attachment is a terminal output during installation.
After install, program won't start at all.
There is a several programs that I think are from the same family
(www.justvoip.com, www.voipstunt.com) because looks very similar, same
features, export-import features among those applications. Only the price vary
among them.
Best regards,
Franko I.
--
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=26015
Summary: Forsaken World - Game client crashes at startup
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fenrina(a)yahoo.com
Created an attachment (id=33180)
--> (http://bugs.winehq.org/attachment.cgi?id=33180)
Log (without patcher)
Forsaken World's client crashes at startup. It will crash if I run it from the
patcher or if I bypass the patcher and run it directly.
The client won't show anything before crashing. First thing seen is a message
from Wine saying that the client, game.exe, has crashed.
Crashes in both 1.2.2 and 1.3.13.
PCLinuxOS Full Monty (up-to-date)
Download Link (3gb download): http://fw.perfectworld.com/download
--
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=25927
Summary: fifa11_demo hangs with builtin msvcr80 when run from
batch file
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
With today's, git, running fifa11 demo from a batch file
with builtin nsvcr80 hangs after first screen with
...
InputThread started
err:ntdll:RtlpWaitForCriticalSection section 0x20a4bd8 "?" wait timed out in
thread 000b, blocked by 0034, retrying (60 sec)
To reproduce, download
http://static.cdn.ea.com/fifa/u/f/fifa11_pc_demo_NA.zip
(sha1sum c3a66284bffb985f31b11e477dade50c0d4cac52)
unzip & install
winetricks d3dx9_36
cd ~/.wine/drive_c
cat > run.bat <<_EOF_
c:
cd C:\Program Files\EA Sports\FIFA 11 Demo\Game
fifa.exe
_EOF_
WINEDLLOVERRIDES=msvcr90=b wine cmd /c run.bat
Oddly, it doesn't seem to hang if not run from the batch file.
WINEDEBUG=+file is also enough to get it to not hang.
--
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=25919
Summary: Heroes of Newerth: annoying static on initialization
when using mmdevapi
Product: Wine
Version: 1.3.12
Platform: x86-64
URL: http://dl.heroesofnewerth.com/HoNClient-2.0.9.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mmdevapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: m.b.lankhorst(a)gmail.com
Note: this machine has pulse, I'll try on my gentoo box when I get a chance...
Anywho, download the client and start it. If mmdevapi is enabled, the game will
use it, and when the game first starts, you'll get a loud screeching noise. If
you disable mmdevapi and let the game use dsound, it sounds fine.
+mmdevapi,+winmm,+tid attached.
The strange thing is that it seems to not occur with native msvcr80, only
builtin msvcr80 with the patch from bug 25538. If I set msvcr80 to native, it
seems to work fine.
You can reproduce this without an account, just download the latest client and
run 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=18440
Summary: Touhou Hisoten ~ Scarlet Weather Rhapsody crashes in
menu/game select
Product: Wine
Version: 1.1.20
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mousecar23(a)hotmail.com
Created an attachment (id=21041)
--> (http://bugs.winehq.org/attachment.cgi?id=21041)
Terminal output from start to crash
Crashes when selecting Vs Network, Music Room, and most profile options.
--
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=20720
Summary: winebrowser fails when # is in the file name
Product: Wine
Version: 1.1.33
Platform: Macintosh
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: domiman(a)gmail.com
I'm using winebrowser to open various files on my host system. When the file
name of a file I try to open contains # winebrowser can't find the file for
some reason.
my registry entries:
REGEDIT4
[HKEY_CLASSES_ROOT\.ini]
@="WINE_BROWSER.file"
[HKEY_CLASSES_ROOT\WINE_BROWSER.file]
[HKEY_CLASSES_ROOT\WINE_BROWSER.file\shell]
[HKEY_CLASSES_ROOT\WINE_BROWSER.file\shell\open]
[HKEY_CLASSES_ROOT\WINE_BROWSER.file\shell\open\command]
@="c:\\windows\\system32\\winebrowser.exe -nohome \"%1\""
and the error when I try to open ~/.wine/drive_c/windows/test#.ini:
The file /Users/dominus/.wine/drive_c/windows/C:\windows\test#.ini does not
exist.
(no other text in the console about this)
When I rename test#.ini to test.ini it opens fine with the associated app on my
system.
My system Mac OS X 10.6.2, bug observed in both Wine 1.1.32 and 1.1.33
--
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=23955
Summary: Heroes of Might and Magic V Map editor -- Crashes when
an attempt is made to draw the map
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: krzysdrewniak(a)gmail.com
Created an attachment (id=30075)
--> (http://bugs.winehq.org/attachment.cgi?id=30075)
Backtrace referenced in initial report
The map editor (as included in Heroes of Might and Magic V patch 1.6.0) crashes
when an attempt is made to draw the map (or so it seems).
Platform:
OS: Ubuntu 10.04 with the Wine PPA enabled.
Wine Version: Wine 1.2
Heroes of Might and Magic V installed in own wineprefix with a virtual desktop
of 1024x786 and the native directx installed. and overridden per winetricks.
Graphics card: Nvidia ???? (128 || 256 MB memory)
Steps to reproduce:
1. Start the Heroes if Might and Magic Map Editor which is located at
$WINEPREFIX/drive_c/Program Files/Ubisoft/Heroes of Might and Magic
V/bin/H5_MapEditor.exe
2. Wait for the editor to load.
3. Create a map with any name type Multiplayer, and size Small (I have not
attempted to vary these settings, but I belive that they have no effect)
4. Observe that after the "Loading MOD "C:\Program Files\..." dialog
disappears, a wine crash notification is displayed and the backtrace atteched
below is printed to stdout.
--
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=25867
Summary: Silhouette Studio: not rendering the GUI properly
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ba(a)cykian.net
Created an attachment (id=32969)
--> (http://bugs.winehq.org/attachment.cgi?id=32969)
Garbled window
Hello,
Silhouette Studio is a CAD program, freely available from
http://www.silhouetteamerica.com/software.aspx
for use with their Silhouette line of computerized cutters.
I installed the 1.3.0 version. There was a bug during the installation
(installer window frozen). I hit Ctrl+C and I found out the app was installed
properly.
I ran the app, but the display is totally garbled (see attachment). This is the
bug i'm reporting.
Apart from this bug, the app seems to work fine and I don't see any GUI-related
error in the console window (but I'm not a wine internals expert).
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=25806
Summary: Civilization 2: Freezes early in the game
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martinkellner(a)fast-mail.org
At installation, there is an error message that wine can't find the program
starter. When launching the game buy clicking the EXE-file directly, the game
starts but crashes, either while setting up the game or just as the game has
begun. The only error message is that wine has encountered a serious error and
needs to close.
--
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=22993
Summary: Wireless Manager mobile edition 5.5: Program crashes
when trying to run
Product: Wine
Version: unspecified
Platform: x86
URL: http://panasonic.net/avc/projector/download/f300_win.h
tml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pruthvi.vallabh(a)gmail.com
The program is meant to connect a laptop to an overhead projector through
wireless link (model: Panasonic PT-LB51NT). The program is installed using wine
from its setup file. The program runs normal under windows XP and windows
vista. On start, the program displays a message-box asking "wait trying to
install required driver". But immediately after that an error message pops-up
from wine saying "the program WM.exe has encountered a serious problem and
needs to be closed".
--
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=25713
Summary: Autodesk Express viewer - print
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ceci(a)tadeoczerweny.com.ar
I can 't print with autodesk express viewer in ubuntu.
--
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=25735
Summary: America's Army 3 ingame mouse control broken (block,
lock, no smoothness)
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Hagar-wl(a)wp.pl
Adding this key in regedit fix ingame mouse problem:
HKEY_CURRENT_USER > Software > Wine, create a new Key named DirectInput,
inside, create a Text Value named MouseWarpOverride add the value set to force.
But this breaks mouse in all menus. It stuck in the middle of screen.
It might be possible fix:
http://www.wtfm.org/aa3-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=25751
Summary: Faronics - Insight 7.20.21 does not install
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cog(a)cerokool.com
Went through the "Add/Remove Programs" of Wine to set it up from USB. Last
window is "Completing Insight Setup". When I click finish this shows:
"The program Setup.exe has encountered a serious problem and needs to close. We
are sorry for the inconvenience."
And then, something about making this bug report.
--
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=25758
Summary: Sims 3 Crashes at 800x600 and 640x480
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eg.galano(a)gmail.com
Created an attachment (id=32828)
--> (http://bugs.winehq.org/attachment.cgi?id=32828)
+seh,+relay,+win,+x11drv,+x11settings,+tid
The game naturally supports resolutions above 1024x768 and supports 800x600 and
640x480 by stretching. When I try to start the game at either of these
resolutions in windowed or fullscreen mode, the game fails to launch.
--
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=25781
Summary: PPTVIEW won't start
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpxsat(a)gmail.com
After fresh install, the app won't start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25793
Summary: 888 poker error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andymcgirl(a)hotmail.co.uk
888 poker error did not install
--
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=25798
Summary: Dragon Saga
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ls12693(a)aol.com
Minor objects render as white [as seen in image]. Not a huge problem at all,
but it would be nice to clear up the problem. Disabling GLSL solves nothing, as
in other programs with similar error.
--
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=25804
Summary: Avernum crashes once in a while
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.r.skele(a)hotmail.com
I installed Avernum (game) on Wine. It ran perfectly after the installation.
The next day I opened my computer and started playing Avernum from a saved
game. It took only a few minutes till it crashed. The Avernum-window was
frozen, but I still could move my mouse and access my Linux toolbars. I
couldn't close the window though so I moved it to another workspace and started
Avernum again. After a few minutes of gameplay it froze again. I repeated the
process a few times and every time it froze because I was doing some simple
command like 'look' or 'talk'. I logged out of my Linux account to close the
hoard of Avernum-windows on my other workspace and tried to start Avernum
without any programs in the background but the same problem kept reappearing.
--
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=25811
Summary: Dead Space in-game text decorations and backgrounds
are missing
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: NightNord(a)gmail.com
See screenshot for example. Just to note: _all_ text in game suffers from this,
from videos, ammo-left text on your gun, door and computer panels to bench,
inventory interfaces and "chapter complete" text.
See video at link in #25810 (same time) to see how it should look like (saving
interface).
video: fglrx-10.12, HD4570
kernel: 2.6.37
settings: only VideoMemorySize set
wine: all from 1.3.6 to 1.3.11 tested.
--
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=25812
Summary: Dead Space flames and flame-alike effects are not
rendered
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: NightNord(a)gmail.com
Created an attachment (id=32894)
--> (http://bugs.winehq.org/attachment.cgi?id=32894)
Screenshot of burning flamethrower alt-fire
>From all flames only yellow light is rendered, no flame is visible at all.
Exceptions:
Flames from US Valor engines from one side are visible when you are looking at
them from other side of room, i.e. from >60 degrees (they are blue).
Flames in some tubes, that you need to cross are also rendered, when you are
looking at them from side, but not visible, when you are burning in them - this
is probably just other effect in place.
All other flames are not visible. Examples:
1) Flame from flamethrower.
2) Various flame traps.
3) Flame from shuttle engines and from shuttle crash.
4) "Hyperspace" effect in the beginning.
5) Hive Mind's flame
etc...
Screenshot of flamethrower alt-fire burning and log of same process, truncated
to 1000 lines from both sides are attached. Log was ended by wineserver -k.
fglrx: 10.12, HD4570 (probably this is common issue, not only fglrx's, but hard
to say for sure - info about video card hardware and drivers in recent appdb
tests is missing).
wine: from 1.3.6 to 1.3.11, 1.3.11 with INTZ support reverted (see #25747).
This could be relevant, but, as far as i remember, hyperspace effect and crash
flames were also missing in 1.3.11, but it's hard to be sure - it's looked very
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=25816
Summary: SoftPlan 13 : crashes when starting
Product: Wine
Version: unspecified
Platform: x86-64
URL: http://www.softplan.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeanic_o(a)hotmail.com
Created an attachment (id=32900)
--> (http://bugs.winehq.org/attachment.cgi?id=32900)
Debug trace
After running a normal installation complete normally. The program could not
start and crashes when opening.
I'm running version 1.3.11 on a 10.10 Ubuntu with all system work ok.
I tried older version with the same 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=25819
Summary: Wine: Non-active buttons in GUI don't have label
visible thu remote NX server-client connection
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maxprasak(a)atlas.cz
On one side I have x86_64 machine where installed:
- SLES10 SP3 with KDE3 and Gnome graphics interface
- wine 1.3.10 (32bit version)
- FreeNX server 0.7.3-4.1
When I connect to this machine via some nxclient (i.e. Nomachine nxclient), I
saw everything as I expected, but non-active buttons don't have the labels or
images!
In nx client I can set connection speed as modem/isdn/adsl/wan/lan. I found,
that it's working only when I set this speed to lan (maximum). All other
choices generate invisible buttons which are actually inactive.
I tried all versions of wine from 1.1.38 to latest, no success.
I tried other older versions of FreeNX, no success.
I tried NXserver directly from NoMachine, same problem.
I tried another machine with SLES11 SP1 and KDE 4, same problem.
I tried more versions of Gnome gui, same problem.
All linux windows with buttons working thru NX server-client, but from wine
not.
Same situation is in our widows application, but it's not a problem of this
application.
Problem can be easily reproduced. SLES 10 or 11 + KDE or Gnome + FreeNX + Wine
on one side and connect to in via nxclient and execute winecfg and you can
see...
(Server machine is 64bit, but I'm using 32bit version of wine, FreeNX and
appropriate libraries.)
Any idea?
Thanks 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=25849
Summary: Adjustments panel lacks Process button in Photomatix
4.0
Product: Wine
Version: 1.2.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blacksir(a)gmail.com
I was able to install Photomatix 4.0 on Ubuntu 10.10 (winetricks dotnet20
vcrun6 gdiplus fontfix). HDR-image creation works fine, but it can't be
tonemapped because Adjustments panel lacks it's only button - 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=25852
Summary: StarCraft II Problems
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: p4repwnag3(a)gmail.com
Created an attachment (id=32940)
--> (http://bugs.winehq.org/attachment.cgi?id=32940)
Pic1
Well, as you can see in the images I don't get the outer space back round at
the login screen and then in-game I only get the HUD. I don't know how this
happens if anyone can help me that would be great.
--
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=25854
Summary: go up in the
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 203065(a)gmail.com
Created an attachment (id=32946)
--> (http://bugs.winehq.org/attachment.cgi?id=32946)
logs from terminal
I try to run PES 11.
the menu get crazy.
when I am in the game or the menu of the game I feel that the arrow up is hold
but it is not at real.
--
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=25858
Summary: Program error after running application
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nhiirage(a)gmail.com
Created an attachment (id=32955)
--> (http://bugs.winehq.org/attachment.cgi?id=32955)
Terminal dump after running $ wine application
A few seconds after opening the application. Wine alerts that it can be caused
by the program or either a deficiency in Wine. This problem is not present when
running in Windows.
Attached herewith is the dump data from the terminal. 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=25859
Summary: winealsa cannot play 11025Hz on HDA even when HDA
codec support 11025Hz
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: superquad.vortex2(a)gmail.com
using winealsa.drv and HDA codec which support 11025Hz
any application using waveoutopen cannot play 11025Hz 16bit stereo with the
following hidden warning message unless you use WINEDEBUG=warn+wave
warn:wave:wodOpen unable to set buffer time: Invalid argument
--
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=25889
Summary: FDM (Free Download manager) fails to start in the
second & Third time of being in use
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: M4.Guest(a)Gmail.com
When U add some dll libraries to .wine
FDM works but for mainly one time than it stops to work for the second day of
being in use !!
I do not know 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=25891
Summary: Keystroke Ctrl-Home not working
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: albertpool(a)solcon.nl
Created an attachment (id=32999)
--> (http://bugs.winehq.org/attachment.cgi?id=32999)
Dutch train planner from 1989
I'm having an old DOS application, the Dutch train journey planner from
1989/90, which runs fine on Windows Vista.
On Wine, all keystrokes are accepted and executed like they should, except the
Ctrl-Home command for closing the 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=25899
Summary: in Aion assault on baularia, group play suffers a huge
performance drop.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dnick_meisterib(a)yahoo.com
The game itself runs perfectly fine, until you join up other people in a
group, at which poing, the performance starts dropping rappidly, after a little
while the performance is unbearably bad. This sort of thing does not happened
on windows partition on the same partition, it was tested by me on 2 computers,
and other people in appdb shared the same problems in comments.
--
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=25900
Summary: build fails dlls/httpapi/httpapi_main.c on caos NSA
0.9 x86_64
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cjnitta(a)gmail.com
I have tried building wine versions 1.2.1, 1.2.2, and 1.3.12 on caos NSA 0.9
x86_64. All versions have the same behavior when I try to build them.
When I try to build I get the following error on httpapi_main.c:
gcc -m32 -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wstrict-prototypes -Wtype-limits -Wwrite-strings -Wpointer-arith -g -O2 -o
httpapi_main.o httpapi_main.c
In file included from ../../include/http.h:25,
from httpapi_main.c:27:
../../include/ws2tcpip.h:57: error: conflicting types for 'socklen_t'
/usr/include/unistd.h:245: error: previous declaration of 'socklen_t' was here
make[1]: *** [httpapi_main.o] Error 1
make[1]: Leaving directory `/home/cnitta/wine-1.3.12/dlls/httpapi'
make: *** [dlls/httpapi] Error 2
I have tried adding #define USE_WS_PREFIX as discussed in:
http://www.mail-archive.com/wine-devel@winehq.org/msg53614.html
It will compile httpapi_main.c, but then fails on internettransport.c:
gcc -m32 -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wstrict-prototypes -Wtype-limits -Wwrite-strings -Wpointer-arith -g -O2 -o
internettransport.o internettransport.c
In file included from internettransport.c:23:
../../include/ws2tcpip.h:57: error: conflicting types for 'socklen_t'
/usr/include/unistd.h:245: error: previous declaration of 'socklen_t' was here
make[1]: *** [internettransport.o] Error 1
make[1]: Leaving directory `/home/cnitta/wine-1.3.12/dlls/inetcomm'
make: *** [dlls/inetcomm] Error 2
Applying the same fix to internettransport.c causes many other problems such as
"storage size of 'hints' isn't known", etc.
This seems somewhat similar to the problems associated with OpenBSD, bug 16660.
--
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=25928
Summary: Morrowind GStreamer error on load
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: i30817(a)gmail.com
Morrowind is giving this error on ubuntu 11.04 64 bits, from the wine from the
wine repositories.
"(wine:32219): GStreamer-WARNING **: Failed to load plugin
'/usr/lib32/gstreamer-0.10/libgstspc.so': libopenspc.so.0: cannot open shared
object file: No such file or directory
fixme:gstreamer:GST_Connect Could not make source filter, are
gstreamer-plugins-* installed for 32 bits?"
As explained on the last post of this bug
http://bugs.winehq.org/show_bug.cgi?id=24933
I assigned the bug to mr. Maarten Lankhorst though i'm not sure it is the same.
There is also a new crash bug on "new game" too that seems unrelated (i
compiled HEAD --without-gstreamer to test it and the crash happened anyway),
but i'm trying to perform a regression test of it for another 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=25931
Summary: Click tunnels through non-Wine window when context
menu is showing
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Simon.Paridon(a)uglyhorst.de
Created an attachment (id=33054)
--> (http://bugs.winehq.org/attachment.cgi?id=33054)
test exe to reproduce the bug
If you click a foreground non-Wine window while a context menu of a background
Wine window is shown, the mouse down event gets passed through to the window
the context menu belongs to.
See the attachment for a way to reproduce this effect.
I am using the KWin window manager.
This effect does NOT show in Windows.
(Sorry if this is known, I really have no idea how to search for this
particular effect in the bug db)
--
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=25932
Summary: Command and Conquer 3: Tiberium wars has partly
invisible units
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abugreporter(a)gmail.com
In Command and Conquer 3: Tiberium war parts of e.g. tanks are invisible. Air
planes are also invisible when they are flying for example. Rifle men are also
invisible. That is, for example the top face of a tank is completely invisible.
I tried putting everything on the lowest settings, but that didn't matter.
I am using an ATI 5770 card and I have this problem with the fglrx drivers, but
also with the radeon drivers.
--
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=25941
Summary: printing on OS/X fails cont...
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daniel.price(a)monash.edu
This is to reopen the bug: http://bugs.winehq.org/show_bug.cgi?id=17354
I have a fresh install of MacPorts WINE-DEVEL 1.3.12, but printing *still* does
not work on OS/X (I am running Snow Leopard 10.6.6). I checked to confirm that
the macports package was configured with cups, as per the last entry on the bug
above. However, still no printers are found by wine, so I don't think this is a
macports problem (perhaps cups was disabled because it didn't work in the first
place?).
I have followed most other things in that thread, e.g. changing the cups
configuration to create the /etc/printcap file, but this didn't seem to fix
anything (I deleted and recreated my .wine directory just to be sure the wine
config had updated).
I made some progress following the steps at:
http://www.witch.westfalen.de/Wine-HOWTO/wineprintconfig.html -- that is, I
could get at least the print dialog box functioning (otherwise is greyed out,
and get messages "no printer is installed" such as those discussed in the bug
report above) by manually entering the register entries using regedit. However,
I could not get it to work, with errors such as:
err:winspool:WINSPOOL_GetDriverInfoFromReg Can't find driver L"PS Driver" in
registry
err:winspool:WINSPOOL_GetDriverInfoFromReg Can't find driver L"PS Driver" in
registry
err:commdlg:PRINTDLG_ChangePrinterW GetPrinterDriverA failed for L"Wine
Postscript Driver", fix your config!
fixme:commdlg:PRINTDLG_UpdatePrintDlgW No lpdm ptr?
fixme:commdlg:PRINTDLG_WMCommandW Update printdlg was not successful!
... and my feeling from reading the thread for bug 17354 was that it should not
be that complicated.
Sorry I can't be more helpful than that, but I thought it would be worth
re-flagging the issue as it does not seem to have been resolved by the fix to
the Macports Portfile.
Cheers,
Daniel
--
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=25954
Summary: Origin8 fails on try to inmort ASCII file
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.o.shyichuk(a)gmail.com
Created an attachment (id=33085)
--> (http://bugs.winehq.org/attachment.cgi?id=33085)
console output
Fail happens on menu selectin File-Import-Single ASCII (on last click). Wine
reports an error, the program doesn't react after that.
Console output can be found in attachment.
--
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=25956
Summary: CINERGY T2 USB 2.0 DVB-Receiver
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikko.j.nevalainen(a)jyu.fi
Hi!
This terratec device does not work in my Ubuntu. According to the error window
there is something wrong in either CinergyDVR.exe that it does not execute or
my WINE 1.3 is somehow faulty.
It's not necessarily a bug per se.
I have no clue how to fix it. I am not privy to coding or anything of the sort.
I only know how to use the graphic interface.
greetings,
Mikko
--
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=25962
Summary: Alsa Mic-Capture horrendous recording Quality.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kyle.leet(a)gmail.com
First off, you may be asking yourself, why is this marked as a blocker? This
sounds like a very minor issue. This is where I'll try to correct you, this
effects every single application that supports Audio input. Programs such as
Pro Tools, Ableton Live, Reason, KORE, FL Studio, Adobe Audition, even Skype.
Although audio recording does function, the quality of the said recording is
absolutely horrid, and is garbage by todays standards (in the 60s it may have
been considered acceptable). It sounds like you're an alien, in a wind tunnel
trying, to start your lawn mower. It's 2011, this has been an issue for well
over Six Years now. No one should have to use PulseAudio, OSS, or anything
else. Alsa is built into the Kernel, and Wine doesn't support it at all, this
to anyone should be disgusting. There's Bug 5159, and quite a few others
scattered all over the place. They do not represent the issue as a whole.
Further testing of Audio applications can't even begin to occur until this is
fixed. The results are always skewed. This is also what keeps on turning me,
among with many others that I know (couple dozen or so) off of Linux. We hate
*buntu, everyone else manages to do it properly and utilizes Alsa. Hopefully on
Bug day (or even prior to that) this finally gets resolved for good.
Thanks,
Kyle.
--
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=25968
Summary: Cinema 4D Setup: Exception frame is not in stack
limits
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wesgarner(a)gmail.com
Attempting to run setup.exe for Cinema 4D causes this error:
err:seh:raise_exception Exception frame is not in stack limits => unable to
dispatch exception.
Deleted ~/.wine - no change
Tried emulating as XP and Windows 7 - no change
--
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=25973
Summary: Two Worlds crashes while opening door to outer worlds
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Kakarott2003(a)yahoo.de
Created an attachment (id=33109)
--> (http://bugs.winehq.org/attachment.cgi?id=33109)
standard log of running game till crasch
Did a fresh install of Two Worlds, started a new game, killed the first two
enemies and wanted to go outside. Opened the big stone-door and game hung-up
and 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=25972
Summary: Paydocplus error
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: merowinger33(a)yahoo.com
Created an attachment (id=33108)
--> (http://bugs.winehq.org/attachment.cgi?id=33108)
windows with error.
Hello.
We installed program - payment document plus. It's free program. In windows it
works normal but in wine it doesn't work. The attachment is bellow.
--
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=25984
Summary: Campaign Cartographer does not exit correctly.
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gimbal(a)optonline.net
Created an attachment (id=33122)
--> (http://bugs.winehq.org/attachment.cgi?id=33122)
Text of dialog box and debug trace.
When exiting Campaign Cartographer, wine reports a serious error has occurred.
--
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=25992
Summary: AllWebMenus by Likno load problem
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: DieFree(a)RonCadby.org
After much back and forth with the Winehq forum and Likno support the bottom
line is that the AllWebMenus program loads but won't open unless the OS
specified for that program is set to Win 98 and even then the program's menus
are blacked out.
This makes the program unusable and perhaps, I don't know, its feature may or
may not work.
--
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=26004
Summary: bug about mpeg
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lxr1234(a)hotmail.com
I don't know this much,in #winehq@freenod,jhgf(jhgf3)said this is a bug.
game HP is this.
http://www.web-giga.com/chocola/flameset_chocola.html
we can use applocate to run this in M$7
--
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=25993
Summary: DameWare Exporter: No dsuiext.dll
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) install DameWare Exporter
4) wine DWExporter.exe
Behaviour:
err:module:import_dll Library dsuiext.dll (which is needed by L"C:\\Program
Files\\DameWare Development\\DameWare Exporter 7.0\\DWSADUT.dll") not found
Expected behaviour:
There should be no complain about lacking library. dsuiext.dll is available in
system32 directory in MS Windows XP.
--
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=25995
Summary: Quickverse 8.0.4 starts but fails when trying to open
any book.
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vhradice(a)cfl.rr.com
Created an attachment (id=33138)
--> (http://bugs.winehq.org/attachment.cgi?id=33138)
Screenshot of error message
I was able to install the program. When I start it, it appears to load
everything. However, when I try to open any book or Bible, I get a failure. I
have a screenshot of the error.
While searching for an answer, I came across the suggestion to copy command
from the desktop icon and run from a Terminal window in order to capture any
error messages. I did that and have attached that also.
When I looked at the error from the Terminal output, I saw the message that
wine could not find L"C:\\windows\\system32\\wineboot.exe". I followed the
mapping and did find wineboot.exe in ~/.wine/drive_c/windows/system32.
--
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=26008
Summary: iTunes 10 32-bit does not play music on first run
Product: Wine
Version: 1.3.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.thomas.riker(a)gmail.com
Created an attachment (id=33166)
--> (http://bugs.winehq.org/attachment.cgi?id=33166)
Install log
iTunes installed correctly.
I turned on autorun and had iTunes manage the library for me. On the first run,
iTunes found all my music. However, I couldn't play any of it. Closing iTunes
and reopening it allowed me to play the music.
--
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=26030
Summary: A window displays wrong when it's shown for the first
time in a minimized state
Product: Wine
Version: 1.3.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: exclusion(a)gmail.com
Created an attachment (id=33196)
--> (http://bugs.winehq.org/attachment.cgi?id=33196)
Screenshot of the "minimized" window
When a window was not shown on the X screen after creating, ShowWindow
SW_MINIMIZE causes it to appear in some undefined state. It's frame is visible
(but it's contents not painted) and the window context menu contains 'Minimize'
item (as if the window is not minimized).
Please see attached screenshot.
--
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=27463
Summary: Garena can't save executable path
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loz.accs(a)gmail.com
The bug I wrote before is just a result, the reason is - garena starts not
Frozen Throne.exe, but war3.exe and I can't change it.
When I'm changing executable path, window "changes successfull" appears, I'm
opening settings again - executable file is still war3.exe.
I've tried this on 1.3.21 and 1.2.1.
btw, I found that this setting stored in GameConfig.xml, I changed it and it
helped.
--
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=26057
Summary: App in fp9 do not print
Product: Wine
Version: 1.2.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pablo_severini(a)yahoo.com.ar
im running an appĺication developed in VFP9 into wine perfect. but when I wanna
print a report (native report of VFP not crystal) the Print Dialog do not
appears then I cant print the reports. but also when I print with NOTEPAD wine
print perfect and the Print Dialog appears normally.
Any Ideas?
TKS. Pablo
--
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=26092
Summary: CuteSiteBuilder4 does not install on Mac
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: webcolumba(a)yahoo.co.uk
CuteSiteBuilder4 installs properly under Windows, but does not complete with
WineBottler on Mac. If I get as far as the Registration it says: Invalid
procedure, call, or argument. Prefix is created successfully. When I
restart, as asked, the message box comes up with 'CuteSiteBuilder cannot find
the dll file called TlxCtrl.dll' and the programme does not open. No log has
appeared
--
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.