http://bugs.winehq.org/show_bug.cgi?id=21654
Summary: Implement CLSID_DestinationList
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Windows 7 introduced a new interface to customize the taskbar menu of an
application. Steam uses it.
We should consider writing a stub implementation.
http://msdn.microsoft.com/en-us/library/dd378402%28VS.85%29.aspx
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18052
Summary: Cannot install VMware Instrastructure Client 2.5 with VM
Update option
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)doty.ru
1. Run installer (https://77.108.91.66/client/VMware-viclient.exe)
2. Check "Install VMware Instrastructure Update Service" option
3. Click Next, Next, Install
4. Error "The wizard was interrupted before VMware Infrastructure Client 2.5
could be completely install" appears and installer breaks.
After second try of same install, I get "The installation directory is not
writable. Please select another location or ajdust Access Control List." error.
Without "Install VMware Instrastructure Update Service" checked option all
everything happens ok.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28168
Summary: VK_OEM_3 (0xC0) not converted into (0xC0) if US
keyboard requested
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Sebastian.Riemer(a)gmx.de
E.g.: Carmageddon TDR 2000 requests an US keyboard layout no matter for which
language version of the game. It also gets this for most keys.
But for the cheating console the VK_OEM_3 (0xC0) is needed and
MapVirtualKeyExW() in dlls/user32/input.c has to return 0xC0, too.
But instead it returns 0x5E (^) on my German KDE4 openSUSE 11.3 amd64 system -
so this key isn't converted to US keyboard layout.
On my German Windows XP it works as expected (0xC0 is returned).
I've also tried to enable the KDE4 keyboard layouts and to switch to US layout
with that, but this didn't help.
Here is my dirty fix with which I've tested it:
UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl)
{
TRACE_(keyboard)("(%X, %d, %p)\n", code, maptype, hkl);
/* dirty fix for testing VK_OEM_3 */
if (code == 0xC0)
return 0xC0;
return USER_Driver->pMapVirtualKeyEx(code, maptype, hkl);
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27545
Summary: Wrong page borders when printing
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: spooler
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: graeter(a)hydrixos.net
We are using Office 2007 upon Wine, which works mostly without problems. We
have two printers that are connected to a CUPS server (1.4.3) which is separate
from our clients. The CUPS client libraries and the CUPS server have the same
version and are package from Ubuntu 10.04.
One printer is a HP LaserJet P4015. When printing from any Wine application on
this printer, the page borders are wrong.
We are using DinA4 paper. When setting the printer dialog in Wine to "A4" parts
of the page are outside the printable range. When setting it to "letter"
everything is inside the printable range, but then we have a huge white border
around the page.
Using our second printer or when printing to PDF, this problem does not appear.
For me it looks like that Wine somehow uses wrong page borders when
communicating with this printer.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27315
Summary: Native Instruments REAKTOR 4.0 VST crashes when
unloading plug in.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tectp(a)telefonica.net
I am using Reaktor 4.0 as a vst plug in in Ableton live. Both programs function
well in wine under the wineasio driver, but when I try to save the live set, or
unload the plug in to swap it for another one, Ableton live freezes and has to
be forced to quit.
This problem persists regardless of whether I use the wineasio driver or the
direct sound driver.
I can run these programs under windows without any problems, but would like
very much to get them working under ubuntu if possible.
My setup: ubuntu 10.04
Ableton live 7.018
Reaktor 4.3
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26747
Summary: SIV Window Resize and AdjustWindowRect() off-by-one
issue
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://rh-software.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray(a)pobox.co.uk
While trying to work-a-round the lack of WM_EXITSIZEMOVE
(http://bugs.winehq.org/show_bug.cgi?id=26736) I found what seems to be an
off-by-one error within AdjustWindowRect(). Testing on real Windows then the
code worked fine, but to get it to work on Wine 1.3.17-243 I needed to adjust
things as in the code below. The svb->style is 0x00C40000 ( WS_CAPTION |
WS_THICKFRAME ). The issue is the same for both window managers.
ar->top = 0;
ar->left = 0;
ar->bottom = 0;
ar->right = 0;
if( AdjustWindowRect( ar, svb->style, FALSE ) )
{
if( mode & MODE_WINE )
{
dr->top -= ar->top + 1; // Client Area positions
dr->left -= ar->left + 1; //
dr->bottom -= ar->bottom + 1; //
dr->right -= ar->right + 1; //
}
else
{
dr->top -= ar->top; // Client Area positions
dr->left -= ar->left; //
dr->bottom -= ar->bottom; //
dr->right -= ar->right; //
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17721
Summary: RTG Bills reports dates incorrectly in bills for date
formats (locals) not US
Product: Wine
Version: 1.1.15
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mstuff(a)read.org.nz
This is a bit of a major that I'm unsure whether is a bug with RTG Bills or
WINE... But, here's a workaround/fix for it below.
My local is New Zealand, my default language is LANG="en_NZ.UTF-8" with dates
expressed "days / months / years" (like most of the world).
Setting the dates in RTG Bills to my format results in any dates in the form
"days / months / years" that make sense expressed as "months / days / years"
being expressed as "months / days / years". For instance: 10th March 2009
(10/3/09) is expressed on bills as 3rd October 2009 (3/10/09)!!!
A workaround/fix seems to be to set the environment variable $LANG to
LANG="en_US.UTF-8" and then set the date format in RTG Bills to be expressed as
"days / months / years". RTG Bills provides a "test" facility to check that
date formats are sane for the system local settings, if this facility is used
it will report that the format is "insane" and change it back to the "months /
days / years" format. The answer is not to "test", but simply leave the format
"untested" as "days / months / years" and save the setting. RTG Bills then
seems to report dates correctly in its bills.
So, my command to execute RTG Bills is:
env WINEPREFIX="/home/myhome/.Rtgbills" LANG="en_US.UTF-8" wine
"C:\Program Files\Rtgbills\rtgbills.exe"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17432
Summary: Lan hosting/listening not working in warcraft iii.
Product: Wine
Version: 1.1.14
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: whellmundv(a)gmail.com
I thought warcraft was one game that ran as fluent as if it was native, or so I
thought then. Today I've found myself experimenting for the second time how
running this masterpiece from wine prevents me from enjoying a nice lan game
with my friends, using both macintosh and windows systems.
I don't know why, but I guess that is the reason for which I encounter myself
writing this, at this precise moment: I think you will help me solve this--I
believe, uncommon--problem.
Please let me know which information do I need to post here, because I know not
with accuracy.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28319
Summary: Hydro Thunder: Sound Stops upon settings menu
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshuaduhs(a)yahoo.com
Now I love Hydro thunder, and when I got it to work through wine with no
workarounds, I was in love with it. It even gives me better rendering than
running it straight through windows. However, there is a problem.
If you pres F2 to enter the settings menu, the sound stops working.
If you press ESC to quit a race or quit the game, the sound stops working.
Sometimes after completing a race, the name entry screen lags to load and the
sound stops working.
The sound doesn't stop working for a second. Oh no. The sound stop working
until you exit the game and relaunch it. This is the only workaround for muted
sound.
I am using integrated motherboard sound. If it makes any difference, the 2
computers I run it on are as follows.
Computer 1: AMD Athlon 2800+ (2.08Ghz); 1Gig DDR Ram; ATI Radeon 7500
Computer 2: Intel Pendium D (3.2Ghz); 1Gig DDR Ram; ATI Radeon X600
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28200
Summary: Ottifanten Lemminge: Buffer overrun
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: niklas1b(a)yahoo.de
Created an attachment (id=36117)
--> (http://bugs.winehq.org/attachment.cgi?id=36117)
The error message.
The game 'Ottifanten - Ostfriesen Lemminge in Not' crashes after start with the
error message 'Microsoft Visual C++ Runtime Library - Buffer overrun
detected.'.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27836
Summary: Process.WaitForInputIdle deadlock.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cheako+winehq(a)mikemestnik.net
Specifically with Diablo2 as with D2BS's loader:
http://www.assembla.com/code/d2bs/subversion/nodes/tags/loader-1.4/D2BSLoad…
The call to WaitForInputIdle locks the thread for way to long.
Changing this call to be Thread.Sleep(10) fixes this application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27602
Summary: Street Wars: Constructor Underworld
"err:seh:setup_exception_record nested exception on
signal stack in thread 0009 eip 7bc73020 esp 7ffdbc7c
stack 0x232000-0x330000"
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markh789(a)gmail.com
Created an attachment (id=35283)
--> (http://bugs.winehq.org/attachment.cgi?id=35283)
Log with sound driver enabled, and without.
Running in Windowed mode and Fullscreen gives some issue.
Have the following installed via winetricks: corefonts dotnet20
Works fine with no sound drivers enabled (but that gives me no sound).
Additional Information:
Ubuntu 10.4 LTS
GeForce 8500 GT
$ glxinfo | grep version
server glx version string: 1.4
client glx version string: 1.4
GLX version: 1.4
OpenGL version string: 3.2.0 NVIDIA 195.36.24
OpenGL shading language version string: 1.50 NVIDIA via Cg compile
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24338
Summary: [Win16]Microsoft Bob fails install & run correctly
(dogfood)
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=21360
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: saturn_systems(a)yahoo.com
Microsoft Bob installation state that it has installed correctly but comes &
run correctly but no program groups or menu items are created.
fixme:shell:Dde_OnRequest 1 0x153de0 L"Progman" L"Progman": stub
DDE_ACK: neither atom nor handle!!!
-----------
When you attempt to run MSBOB you receive the following terminal output.
fixme:hook:SetWindowsHookEx16 System-global hooks (3) broken in Win16
err:ntdll:RtlpWaitForCriticalSection section 0x684a97a0 "syslevel.c:
Win16Mutex" wait timed out in thread 0022, blocked by 0023, retrying (60 sec)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19765
Summary: Bricscad has slow performance
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ricardoperry(a)gmail.com
Created an attachment (id=23142)
--> (http://bugs.winehq.org/attachment.cgi?id=23142)
Bricscad Option menu
When doing realtime pan and zoom with large drawings it takes too long to
refresh the screen.
Probably related to WINGDI driver.
In other Intellicad software ZWCAD the realtime pan and zoom works ok.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15320
Summary: GammonEmpire closing playing window.
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zetagi(a)yahoo.com
GammonEmpire software when you close playing window program close whole
program.
Normally you will go to main window
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28330
Summary: Arsenal of Democracy GDI problems
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adamklobukowski(a)gmail.com
Arsenal od Democracy (a game that uses Hearts of Iron II engine) displays a lot
of:
err:d3d_surface:surface_create_dib_section Failed to create DIB section.
err:gdi:alloc_gdi_handle out of GDI object handles, expect a crash
And finally crashes (attached).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27714
Summary: ThinVNC Access Point does not execute correctly on
Wine 1.3
Product: WineHQ Apps Database
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hsanoguera(a)hotmail.com
Created an attachment (id=35465)
--> (http://bugs.winehq.org/attachment.cgi?id=35465)
Dump information displayed in the terminal
I installed ThinVNC Access Point and ThinRDP on my Ubuntu 11.04 (both of them
are Windows applications).
I created a profile in Wine for run them like Windows 7 (both of them work fine
in Windows 2003, 2008, XP, Vista and Seven). But don't work under Wine.
I would like to run these applications in my Linux server installation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27477
Summary: ODBC not functional (sqlite3 external driver + MS
Excel)
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: odbc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bozkar(a)gmail.com
Created an attachment (id=35131)
--> (http://bugs.winehq.org/attachment.cgi?id=35131)
Installation of sqlite odbc driver +odbc
In wine 1.3.22 odbc driver does not work correctly.
It isn't installed correctly by sqlite3 installer (
http://www.ch-werner.de/sqliteodbc/ ), or is not found by MS Excel (via MS
Query/directly).
List of ODBC drivers is empty.
BTW, are we going to integrate with unixodbc or to provide wine-only windows
alike odbc infrastructure?
Also, Excel/wine crashed when I tried to get odbc working.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24443
Summary: [IIS 5.1] Fails to install as wine does not have
sysocmgr.exe
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=appli
cation&iId=12093
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: saturn_systems(a)yahoo.com
When trying to install IIS 5.1 using [Microsoft Web Platform Installer (Web
PI)] it fails to install as wine does not have sysocmgr.exe
--
How to add or remove Windows Components by using Sysocmgr.exe (Microsoft
Support)
http://support.microsoft.com/kb/222444
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22587
Summary: rFactor needs virtual desktop emulation enabled
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: darius(a)dons.net.au
Created an attachment (id=27716)
--> (http://bugs.winehq.org/attachment.cgi?id=27716)
error log
rFactor doesn't work unless virtual desktop emulation is enabled.
See error log..
This is running on Mac OS X 10.6.3 (Snow Leopard) on a Core i5 MBP. Wine was
built form macports (wine-devel)
I'm happy to try patches, or generate more logging!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21574
Summary: Minitab 15 do not load
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: duriem(a)gmail.com
Created an attachment (id=26019)
--> (http://bugs.winehq.org/attachment.cgi?id=26019)
error appeared by minitab when opened
hi I just installed wine in the easy way as appear in youtube.
Everything worked perfect, I tried to install Minitab, run great all the
installation process, but when it opens appear a window saying that " the
program Mtb.exe has encountered a serious problem and needs to close..
have any idea how to solve it?
thank you
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18261
Summary: S103 animation problem
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20784)
--> (http://bugs.winehq.org/attachment.cgi?id=20784)
Wine 1.1.20 +loaddll
S103 is an Open University application.
Part of the application plays embedded animations with a voice-over.
Under Windows XP, these play fine. Under Wine, an error message is shown
stating: "Could not create or use window."
Under Windows XP a small window opens title "Profiling Display" the first time
it is run, and then the animation continues.
Under Wine, with +loaddll, this is output:
fixme:mciavi:MCIAVI_mciStatus Unknown command 0000400E !
fixme:mciavi:MCIAVI_mciSet MCI_SET_ON: seek_exactly
fixme:mciavi:MCIAVI_mciRealize (0001, 00020002, 0x13b9a86) : stub
trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\iccvid.dll"
: builtin
trace:loaddll:free_modref Unloaded module
L"C:\\windows\\system32\\mciavi32.dll" : builtin
trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\msvfw32.dll"
: builtin
trace:loaddll:MODULE_LoadModule16 Loaded module "TB50CMP.DLL" : native
Upon clicking on the stop button for the animation, a new window is shown
stating: "The media resource is not open. Try using "mmOpen" before this
command."
The application uses the Toolbook 5.0 Runtime.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28717
Bug #: 28717
Summary: Powerpoint 2007 chart data editing impossible
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: philbradley(a)gmail.com
Classification: Unclassified
After creating a chart in a Powerpoint 2007 slide, which opens excel correctly
to allow data entry, the data can no longer be edited - excel flickers open
then crashes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28341
Summary: Printing Issue in Tally ERP 9 on Wine 1.x
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linux(a)enjayworld.com
While printing from Tally ERP (Windows Based Accounting Software). there are
black patches printed where letters and words are shrinked by the software.
For example in a report where there is a list of entries. Tally shrinks some
words when listed entries are longer that the column width to fit them in the
column. In such cases those shrinked entries are not printed or black
rectangles are printed by the printer.
Result is same when they are printed to PDF. So we cannot even print reports to
pdf and then finally print them to the printer.
After reading some wikis and documentation. I thought that replacing the
generic ppd from wine registry with the appropriate ppd will make some changes.
but it doesn't give any positive result.
I am sure that it is about handling of drivers by wine and cups.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27689
Summary: Extra POI editor crashes when trying to save a file
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: harterc1(a)comcast.net
Created an attachment (id=35432)
--> (http://bugs.winehq.org/attachment.cgi?id=35432)
command line log
I load a csv file and try to save it as a gpx file. Then it crashes.
wine: Unhandled page fault on write access to 0x00000226 at address 0x7dc50000
(thread 0009),
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24552
Summary: GLSL performance on Intel GM45
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: morindhal(a)gmail.com
Created an attachment (id=30989)
--> (http://bugs.winehq.org/attachment.cgi?id=30989)
My lspci output
On all games that use GLSL shaders I get a extremely low performance when
loading new data unto the screen.
For example in Everquest 2 with GLSL shaders enabled the initial loading of
elements get slowed to almost a standstill when "Adding Character to Game
World" but when it finally starts displaying my character and the world in it's
background there is no corruption nor any real lag until something new comes
into view. (Me turning around, someone else running infront of me, etc.)
This is the output from a normal WINEDEBUG output in EQ2:
err:d3d_shader:arbfp_blit_set >>>>>>>>>>>>>>>>> GL_INVALID_ENUM (0x500) from
glEnable(textype) @ arb_program_shader.c / 6992
That keeps repeating but not spamming my console completely, at least not
quickly.
This effects other small games I have used GLSL shaders in until I disable GLSL
them using regedit.
This could just be a driver issue, I'm not completely certain, I use the latest
packages for Kubuntu 10.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=20377
Summary: MacOS LANG=xyz wine winecfg does not switch
language/locale
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Hi,
on my Mac, LANG=C or LANG=fr_FR.UTF-8 wine winecfg has no effect at all, unlike
a Linux machine. winecfg's texts are always displayed in German.
locale -a lists a lot of locales. "LANG=C ls -l" reacts instantly.
OTOH, going to the Mac system preferences and moving French or English upfront
manages to switch the language in winecfg (and Terminal.app and others), the
next time it's started.
For the purpose of Wine, I believe the local LANG setting should be obeyed, not
the desktop session setting.
Note that I have no idea how to start Wine outside of a Terminal.app context
(no Wine[Helper].app here). So LANG is always set when I start Wine in the
shell.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18332
Summary: Window background not drawn correctly.
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bstein(a)unm.edu
Created an attachment (id=20875)
--> (http://bugs.winehq.org/attachment.cgi?id=20875)
Screenshot of the problem.
With Kaleidagraph 4.0 certain windows are drawn funny. The normally grey
background is drawn with whatever is behind the window when it is first opened.
Moving it around doesn't change the background. Nothing shows up with winedbg
or on the console, but I have little to no experience with wine debugging.
Attached is screenshot of the problem.
Please let me know what other debugging information might 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=18054
Summary: Very big fps drop when recording in fraps
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Recently i've tried to record ingame video using fraps via wine and i've
encountered very huge fps drop (from 105 to 15) which is definitly caused by
some sort of bug because on windows box this drop is nowhere so drastic.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35597
Bug ID: 35597
Summary: itunes crashes upon execution
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: webmaster(a)jfhent.net
Classification: Unclassified
Created attachment 47544
--> http://bugs.winehq.org/attachment.cgi?id=47544
back trace itunes installer crashed
itunes installer crashing
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28545
Bug #: 28545
Summary: Driver: San Francisco - Fails to launch
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cruiseoveride(a)gmail.com
Classification: Unclassified
Created attachment 36644
--> http://bugs.winehq.org/attachment.cgi?id=36644
winedbg Driver.exe backtrace
Installer runs fine, but after completion, when you click on "Done" at the
final install screen, the installer crashes.
Attached installer log.
After installation, I installed the official DriverPatch101.exe
Also had to install the SKIDROW no-cd exe.
Running wine Driver.exe just hangs. The process uses CPU but no activity on the
screen for several minutes.
Attached winedbg log. (Ran winedbg Driver.exe, Hit 'c' Enter, then waited a bit
and did Ctl+C, and typed 'bt' Enter )
Using wine-1.3.28-493-g05e1886 on Ubuntu 10.10 x86_64
Nvidia graphics driver.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27548
Summary: Final Fantasy XI will run but font/icons/images/ect
don't render properly.
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cheako+winehq(a)mikemestnik.net
Created an attachment (id=35216)
--> (http://bugs.winehq.org/attachment.cgi?id=35216)
Output of wine | uniq -c and glxinfo.
I have screen shots posted on my website, I didn't know if large attachments
are cool.
The log at the time of the rendering.
The system is an "Asus EeePC" video is Integrated Graphics Chipset: Intel(R)
915GM /w 256MB ram. The driver output is attached.
http://mikemestnik.net/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=19996
Summary: XCardIssuer fails to run properly
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: taupter(a)gmail.com
Created an attachment (id=23531)
--> (http://bugs.winehq.org/attachment.cgi?id=23531)
Error messages, stack dump, register dump and backtrace
When I run the progam, a window pops up with the following message:
Program Error
The program CardIssuer.exe has encountered a serious problem and needs to
close. We are sorry for the inconvenience.
This can be caused by a problem in the program or a deficiency in Wine. You may
want to check http://appdb.winehq.org for tips about running this application.
If this problem is not present under Windows and has not been reported yet, you
can report it at http://bugs.winehq.org
and then another window:
Application Error
Exception EExternalException in module ntdll.dll at 0002C538.
External exception C0000025.
Platfort it ran fine: Windows XP SP2 32bits.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15321
Summary: Yugioh Virtual Desktop 9.0 RC1 crashes upon loading
Product: Wine
Version: 1.1.4
Platform: HP
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thundernyannyan(a)hotmail.com
Created an attachment (id=16154)
--> (http://bugs.winehq.org/attachment.cgi?id=16154)
Terminal Output log
This program creates a "Run-time error '445': Object doesn't support this
action" as soon as the interface loads. The download comes with several .dll
and .ocx files, most of which do not seem to come pre-packaged with Wine 1.1.4
(the only one I can remember which wasn't new was oleaut32.dll, but there may
have been one or two others).
I've tried moving these files into Wine's system32 folder and running the
program both with and without having those files set as Native Then Builtin.
The only difference I found was that setting oleaut32.dll as Native Then
Builtin causes the error message to change to "Run-time error '-2147467259
(80004005)': Automation error." Whether this means the problem is with the
oleaut.dll file itself, a combination of files, or something else entirely, I
have no idea.
Here are the links to download the required files:
YVD 9.0 Beta 12 (contains all the base files necessary to run):
http://www.xerocreative.com/yvd9prefinal.zip
YVD 9.0 RC1 Test Build 5 (contains two files which must be used in place of the
Beta 12 files): http://xerocreative.com/YVD9rc1b5.zip
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28787
Bug #: 28787
Summary: Explorer filelist incorrect
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.downing(a)guardian-shield.com
Classification: Unclassified
The Explorer file-list [left pane] incorrectly shows the Desktop as a
sub-folder of the Documents folder.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27416
Summary: Cannot select Unicorn 3D icon
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Aisstere(a)hotmail.com
When wanted to use Unicorn 3D icon selection, program froze for a while and
crashed. Tried it several time but kept on doing the same thing. Need this
template for MacOSX Icon for program in making.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27069
Summary: WINASPI32: aspi:ASPI_ExecScsiCmd command 0x00, no data
transfer specified, but buflen is 36!
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cagnulein(a)tin.it
Using this software
http://drivers.softpedia.com/get/FIRMWARE/LG/LG-GSA-4167B-Firmware-DL13.sht…
(the firmware updater for my dvd writer LG GSA-4167B avaiable only for
windows), i've encountered this error:
fixme:aspi:ASPI_ExecScsiCmd command 0x00, no data transfer specified, but
buflen is 36!!!
Looking the source code i've probably understood where is the issue:
the command 0x00 in that function is unmanaged.
Here ( http://brandonw.net/svn/calcstuff/Linky/trunk/MassStorage.c ) you can
find a nice path to manage this situation.
Let me know if you want some other information.
Thank you
Roberto
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26515
Summary: TRNSYS 16: crashes on startup
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bje(a)air.net.au
TRNSYS 16 fails to run under Wine. On startup, I get:
forrtl: severe (157): Program Exception - access violation^
Image PC Routine Line Source
trnivf.exe 00807E7A Unknown Unknown Unknown
This bug looks similar to PR 16471. The package (SAM) can be downloaded from
https://www.nrel.gov/analysis /sam/download.html. Note that SAM installs and
runs, but the trnivf.exe is the simulation engine and won't run.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22615
Summary: X3 TC all text becomes readtext....
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chrisneilbrown(a)gmail.com
Created an attachment (id=27796)
--> (http://bugs.winehq.org/attachment.cgi?id=27796)
X3 readtext
X3 Terran conflict 2.5
Everything starts off fine
But after I save the game all the text turns in readtextxxx-yyyy
Some widgets stop showing up and the game becomes unplayable
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21491
Summary: pcmet: FTP-Transfer fails with error "9" regression
Product: Wine
Version: 1.1.34
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=16825
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
CC: robertshearman(a)gmail.com
Sorry for posting this so late,
but since wine .34 pc_met fails to download data from the internet. wine .33
worked perfectly. I just did a quick regression test and this came up:
---
99d9983b6146e4b6bc99c2ef1b602ec805dbc96a is first bad commit
commit 99d9983b6146e4b6bc99c2ef1b602ec805dbc96a
Author: Rob Shearman <robertshearman(a)gmail.com>
Date: Wed Nov 18 00:17:46 2009 +0000
oleaut32: Fix memory leaks in ITypeInfo_fnInvoke.
:040000 040000 ed7b8443ebc047540b4ef52c51c04c396160492b
5941942ae303c760ba6cfe45f89e2b90dbd79128 M dlls
---
The application fails with a short MessageBox: "An error occured while
transferring data! [GETFILE]\nSubscript out of range\n9Continue anyway?
[YES]/[NO]" (translated from german)
This bug cannot be reproduced using the demo, as recent weather data can only
be downloaded using username/password after payment. Sorry.
Thank you, John
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14671
Summary: HCA fails to communicate with LynX-10 module through
COM-1, gives error pop-up
Product: Wine
Version: 1.1.2
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Cobra176(a)chartermi.net
Created an attachment (id=15126)
--> (http://bugs.winehq.org/attachment.cgi?id=15126)
Screenshot of the error dialog
Marrick Ltd. Home Control Assistant (HCA) fails to communicate with a LynX-10
module connected to COM-1, returns an error pop-up window [see image
attachment]
This error occurs when in hardware setup, clicking the Test button for the
device. The device is specified manually-there is nothing implying that there
was any actual communication with the device. Activity lights did not come on
with the LynX-10. The software cannot perform its task without communicating
with the interface.
This does not occur within native Win98SE. The device is indeed connected to
serial port 1 and is powered up.
Background info:
LynX-10 is an X10 interface used for home automation for sending digital
messages through AC lines to turn various devices on and off, dim lights, etc.
with computer control. It connects using a serial port, is powered off the AC
and has an activity light for serial exchanges.
http://www.hcatech.com/
The software is designed to interface with a variety of interfaces; each
interface needs specification as to what COM port it is attached to. Next to
each interface on the setup dialog is a Test button. When this Test button is
clicked the dialog described above occurs.
The attached log starts from startup of the program, which runs quite smoothly
until the explicitly-marked parts.
Machine info:
kubuntu 8.4, up-to-date (as of Jul 27 2008)
2 serial ports, 1 plugged into LynX-10, second is free.
No special serial port software installed on linux end.
Windows version mode is "use default"
The following DLLs are overridden with no benefit:
comcat
comctl32
comdlg32
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23438
Summary: Dora the Explorer shows EExternalException in
ntdll.dll
Product: Wine
Version: 1.2-rc5
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
This bug applies to "Dora the Explorer Click & Create! The BIG Red Chicken", an
educational CD-ROM for young children which is "Made with Macromedia" and
"Powered by Vividas" according to logos on the case.
It is part of a series of at least 48 discs. Assuming the others use the same
runtime/code, they will probably all show the same problem.
Search Google for "dora the explorer click create" (without the quotes) and the
first result is a page with pictures of 48 CDs.
On running AutoRun.exe from the CD, a Vividas icon appears at the bottom left
(this is in virtual desktop mode), then Wine shows a Program Error dialog box
"The program main.exe has encountered a serious problem and needs to close.
...". On dismissing that, an Application Error dialog box appears, "Exception
EExternalException in module ntdll.dll at 0002EA68. External Exception
C0000025."
Console output begins:
$ wine AutoRun.exe
$ err:ole:CoGetClassObject class {00000507-0000-0010-8000-00aa006d2ea4} not
registered
err:ole:create_server class {00000507-0000-0010-8000-00aa006d2ea4} not
registered
err:ole:CoGetClassObject no class object {00000507-0000-0010-8000-00aa006d2ea4}
could be created for context 0x5
wine: Unhandled exception 0x0eedfade at address 0x0000:0x7b836822 (thread
001f), starting debugger...
First chance exception: 0xc0000025 in 32-bit code (0x7bc3ea68).
After reading bug 20326, I used "winetricks mdac28". Running AutoRun.exe then
gave a dialog box "OLE Error 80040154."
After "winetricks jet40", AutoRun.exe (which runs main.exe) exits silently,
with this console output:
$ wine AutoRun.exe
$ 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:systray:wine_notify_icon unhandled tray message: 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=22710
Summary: Shockwave 11 installation of compatiblity components
do not work properly
Product: Wine
Version: unspecified
Platform: x86
URL: http://www.adobe.com/support/director/ts/documents/kb4
03195/Director11_Whitepaper.pdf
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yuhongbao_386(a)hotmail.com
CC: yuhongbao_386(a)hotmail.com
Shockwave 11 support installation of "compatiblity components" as described in
the whitepaper linked. As mentioned in the white paper, it is a version of
Shockwave 10 installed side by side. It is automatically invoked when no
playerVersion is specified or if playerVersion is specified to be 10. If it is
not installed, it is automatically downloaded and installed as described in the
white paper. Unfortunately, in Wine, this do not work properly and cause
Shockwave to freeze at "Installing compatiblity components". Workaround is to
install Shockwave 10 manually.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18492
Summary: Lord of the Rings Online: game does not register
unmodified mouse clicks on objects in the world
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bentron.winehq(a)gmail.com
After a fresh start, mouse clicks register as expected. Some time later, the
game no longer registers unmodified (ie, without holding Ctrl or Shift) mouse
clicks on objects in the game world such as players, NPCs, corpses, or resource
nodes.
Mouse clicks, with or without Ctrl or Shift, function normally on most of the
UI elements. Moving items in inventory, interacting with menus, clicking
buttons on quickbars, buying/selling at a vendor, etc work as expected.
Right clicking on chat tabs, player portrait, companion portrait, and possibly
other items should open a context menu, but does not after the bug presents
itself.
Left clicking players, NPCs or objects in the game world to select them as the
active target does not work. However, if floating names are displayed,
clicking on the NPC/object/player's floating name does work to target.
Right clicking a corpse, resource node, or interactable item (such as a quest
object or door) does not work. However, holding shift and right clicking does.
In the case of a corpse or resource node, it functions to "auto loot" (loot
all items without confirmation). In the case of a quest object or door, it
functions as a normal right click should (presumably because this is no action
associated to shift+right click for such objects).
Holding left or right click while moving the mouse functions as expected to
move the camera and player character. Hovering the mouse over
players/NPCs/objects in the world does highlight the object as well.
This bug may be related to Bug 17267 (
http://bugs.winehq.org/show_bug.cgi?id=17267 ).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28688
Bug #: 28688
Summary: Adobe Acrobat X: hangs when started
Product: Wine
Version: 1.3.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dan_bwv1987(a)hotmail.com
Classification: Unclassified
Created attachment 36872
--> http://bugs.winehq.org/attachment.cgi?id=36872
It's the terminal output when I execute the command wine Acrobat.exe from
~/.wine/drive_c/Program Files/Adobe/Acrobat 10.0/Acrobat/
When I start Adobe Acrobat X, a message pops out telling me that "The program
Acrobat.exe has encountered a serious problem and needs to close." I press
"Close" button. Then, before I open any file, it simply hangs, the window gets
unresponsive and turns gray, and have no option than to kill the 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=24533
Summary: USB Floppy Drives cannot be assigned Drive A: or B:.
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mountmgr.sys
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cparke(a)parkerfamily.name
Apparently, add_drive() in device.c recognizes them as RAM disks (as Mac OS
mounts the drive like a hard drive/USB flash with no partition table), not a
floppy drive, and I am restricted to drive letters D-Z in Wine. Creating the
registry entry for the device at drive A: or B: is ignored, when the diskette
is inserted the drive just gets mounted as E: or so forth. Even if I manually
create the A: drive link in the /DosDevices directory, when I insert the
diskette it gets a new letter and mounts under both. If C-Z are all used, the
drive does not mount at all.
There is no reason why a USB flash device or USB floppy cannot be assigned to
drive letter A: or B:. Windows most certainly allows it! (even network drive
shares are allowed in the A:/B: slot) In fact, if I muck with the registry in
Windows (since the UI doesn't allow it), Windows will allow a hard drive to
occupy the A: or B: slot.
At a minimum, the restrictions in WINE preventing USB Floppies from being
assigned to A:/B: needs to be removed. I need the drive A: because I'm using
the USB floppy for a copy-protection scheme which uses a floppy diskette key to
validate the serial number before allowing an install (the routine also has
logic to block virtual drives and network shares from being used, which is why
a manually created A:/B: will not do).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24454
Summary: Snes9x 1.52 does not recognize USB controllers.
Product: Wine
Version: 1.3.2
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: LordHDL(a)yahoo.com
USB controllers cannot be used because the emulator does not respond when you
attempt to configure the buttons. Other emulators I've tried have not
exhibited this behavior. There is no console output for this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19117
Summary: Magic Jack Phone Software/Device fails to work in wine
Product: Wine
Version: 1.1.24
Platform: PC
URL: http://www.magicjack.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Created an attachment (id=22076)
--> (http://bugs.winehq.org/attachment.cgi?id=22076)
dialog box
When plugging in my magic jack device it mounts in winecfg as drive E: to
/media/PHONE, when right clicking on autorun.inf it comes back with a dialog
stating file not found.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18205
Summary: mapi:MAPISendMail produces extra slashes before mail
address
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=14768
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boeser.wolff(a)web.de
While testing Mankind its bug reporting tool (Debug.dll) is launched due to a
crash.
The email address generated has extra slashes:
"\\bugs(a)mankind.net" instead of "bugs(a)mankind.net"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17900
Summary: RenderTargetLockMode=disabled required for playable
display
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael(a)araneidae.co.uk
On at least two games (Thief 2 and Jedi Knight Dark Forces II, I've not tried
others of this vintage yet) unless the key Wine/Direct3D/RenderTargetLockMode
is set to disable the game display is completely unplayable.
Of course, disabling this key has undesirable side effects: in JKDF2 the HUD is
overlaid by the game display, in Thief2 the in game menu is unusable -- but
this must be a strong clue as to what is going wrong here.
I've tried setting this key to default, readtex, texdraw, textex, and in all of
these cases the effect is a sort of upside-down shimmering stripes. This
visual effect may be a side effect of what's really going on, because any
attempt at a screen shot capture either a good image or an upside down image.
I think what is actually happening is that the image is constantly alternating
between upsidedown and rightside up!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26181
Summary: install application creates xdg mime files with case
sensitive extensions
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rpnpif(a)free.fr
Intall an application (for example Proteus suite), sometimes we get mime files
in ~/.local/share directory with extensions on upper case mode. So Nautilus
become case sensitive for this extension and applications (Proteus) are not
associates with the application when a file have a lower case. MS Windows is
often case insensitive, not Linux.
Examples:
~/.local/share/applications/wine-extension-DSN.desktop:
[Desktop Entry]
Type=Application
Name=ISIS
MimeType=application/x-wine-extension-DSN;
Exec=wine start /ProgIDOpen ProteusDesignFile %f
NoDisplay=true
StartupNotify=true
Icon=1774_ISIS.0
~/.local/share/mime/packages:
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/x-wine-extension-DSN">
<glob pattern="*.DSN"/>
<comment>Schematic Design</comment>
</mime-type>
</mime-info>
.DSN should be .dsn to be case insensitive.
To fix this, wine should convert always all "glob pattern" to lower case.
See xdg specifications on Freedesktop.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23309
Summary: Altium Designer CAMtastic does not display CAM files
properly
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johnvoltz(a)gmail.com
Created an attachment (id=29058)
--> (http://bugs.winehq.org/attachment.cgi?id=29058)
Screen shot
CAMtastic CAM/gerber viewer in Altium Designer (all versions 2004-2009) does
not display files properly. Drawing elements are sometimes scaled wrong or do
not refresh in the view, zooming and scrolling is also badly broken.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22074
Summary: Anarchy Online crashes when window is dragged out of
desktop or when switching workspaces
Product: Wine
Version: 1.1.36
Platform: x86
URL: http://anarchy-online.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonathan-vola(a)hotmail.com
Anarchy Online crashes in windowed mode under certain conditions:
Metacity:
Crashes when dragged partially off of workspace
Compiz:
Crashes when dragged partially off of workspace
Crashes when changed workspace
Does not crash in 3d cube view (Leads me to believe it is a problem with a
render optimizer)
Tested with 1.1.36, 1.1.38, 1.1.40 (PlayOnLinux prefix, wineprefixcreate is the
only command I could find to create a prefix, and it is deprecated)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28807
Bug #: 28807
Summary: KORG M1 DLE display problem with graph displays
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gigaday(a)googlemail.com
Classification: Unclassified
Created attachment 37006
--> http://bugs.winehq.org/attachment.cgi?id=37006
no curve in VDF space
The graphs do not show in the VDF, VDF EG and VDA EG spaces.
Screenshot attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28418
Summary: quartz-related crash in Sengoku
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karl.r.ernst(a)gmail.com
Created an attachment (id=36432)
--> (http://bugs.winehq.org/attachment.cgi?id=36432)
Console output
Running Sengoku with the quartz.dll that comes with wine, the game crashes
after a few minutes of gameplay. Actually, it just freezes completely (no mouse
movement, no animation ingame etc.) so wine has to be killed. It doesn't seem
to be related to any ingame action, but it crashes reliably within the first 10
minutes after gamestart.
Installing quartz+ffdshow with winetricks fixes the problem.
Don't know if its related, but with the wine-quartz the ingame music doesn't
work, but with the steps mentioned above music plays fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27566
Summary: Text Renders Incorrectly With FastCAD
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: gimbal(a)optonline.net
Created an attachment (id=35244)
--> (http://bugs.winehq.org/attachment.cgi?id=35244)
Sample File
With certain files, the FastCAD viewer does not render text correctly. The
viewer can be obtained here: http://www.venueweb.co.nz/vw6038.exe.
Wine also reports viewer exits incorrectly.
Sample file, screenshots and wine error attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27333
Summary: MS Navision 6.0 report preview crashes
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Solaris
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kondratovich_m_v(a)ukr.net
If you need in Navision with demo database please contact me.
I can make a full test of Navision from 3.0 to 2009 R2, but please tell how I
can get more information, probably I should use dbg or smth like verbose mode?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25008
Summary: EssentialPIM Pro 3.74 - Window Minimize, Maximize, and
Restore Not Working
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rsflynn(a)gmail.com
EssentialPIM Pro 3.74
Main Window Minimize, Maximize, and Restore functions do 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=16017
Summary: Counter Strike Source Stutters
Product: Wine
Version: 1.1.8
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nheinen(a)gmail.com
Hardware: AMD X2 3800+ nVidia GF 6600GT 128MB
Kernel 2.6.27
Wine 1.18
Drivers 177.80 nVidia
Description:
The games runs smooth 60+ fps otherwise. When this bug occurs the screen
stutters/hitches/freezes and sounds will repeat(usually a grenade being thrown
or exploding seem to be commond sounds that play when this happens). This can
last from 1 to 5 seconds. The Hud will often redraw. After this the game is
playable again but occurs frequently, every 2-3 rounds of play. This occurs on
all maps while playing online. It occurred on both 64bit and 32 bit builds of
linux.
There doesn't seem to be any meaningful output from the console.
This bug does not occur using windows operating system on my hardware. It only
occurs when using wine. I think it is related to this.
http://half-life.wikia.com/wiki/Source_Engine#Stutter
heres a whole webpage dedicated to it
http://www.blep.net/hl2stutter/
I have tried dxlevel 7 8 and 8.1
In winecfg audio acceleration Full, Standard, and Basic
I've tried all the suggested solutions on the second url above.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9468
Summary: Mortal Kombat Trilogy crashes
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rchayster(a)gmail.com
Created an attachment (id=7810)
--> (http://bugs.winehq.org/attachment.cgi?id=7810)
output
I have Mortal Kombat Trilogy, patched to version 1.1. The game crashes on
startup. When I run $ wine MKTRILW.EXE
The wine outputs:
err:wgl:X11DRV_wglGetProcAddress (wglMakeContextCurrentARB) - not found
err:wgl:X11DRV_wglGetProcAddress (wglGetCurrentReadDCARB) - not found
fixme:win:EnumDisplayDevicesW ((null),0,0x33f688,0x00000000), stub!
fixme:d3d:IWineD3DDeviceImpl_GetAvailableTextureMem (0x125ce0) : stub,
simulating 64MB for now, returning 64MB left
And just stucks there. When I press ctrl+c wine outputs this and quits:
The program encountered a problem at address 00432252 and cannot continue
I'm putting the WINEDEBUG=+all debug log here as an attachment. It's the last
1000 lines.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28349
Summary: "Emulate a virtual desktop" intermittently causes
spurious mouse-down events when switching into the
desktop window
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: silas-wine(a)flatline.org.uk
I am using a virtual desktop (winecfg / Graphics / Emulate a virtual desktop),
running under the Openbox window manager (LXDE desktop environment) on Ubuntu
11.04. When clicking on Openbox's taskbar to bring the WINE desktop window to
the front, there is some possibility (it does not always happen) that a
mouse-down event is generated with a Y co-ordinate exactly 5 pixels up from the
bottom edge of the WINE desktop (that is, 5 pixels as long as the WINE desktop
is not too high for the X display; if it is then the Y co-ordinate will be more
than 5 pixels up from the bottom). The corresponding mouse-up event is not
generated, so any application that is maximized (and therefore receives the
mouse-down event near the bottom) can behave as though the mouse is being
dragged when it isn't, and if you then click (sending a second mouse-down event
before the first has had a mouse-up) then some applications can get very
confused indeed.
(The application I am trying to run is Wenlin 4, http://www.wenlin.com/. The
use of a virtual desktop is needed to work around a separate bug involving
Wenlin's rapidly opening-and-closing "conversion bar" window confusing Openbox
into dropping keystrokes, but that one's definitely an Openbox bug not a WINE
bug. I'm not so sure about this one though. I have NDA access to Wenlin's
source code so I can report the above by adding printf's to Wenlin's event
loop.)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25052
Summary: Overriding EXTRALIBS in Makefile prevents compile
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)fullware.net
The line:
EXTRALIBS = -L/usr/local/lib -lxml2 -lz -lpthread -liconv -lm
in dlls/msxml3/Makefile overrides environment variables when locating
libraries. On some systems it may be necessary to point to a different
location, i.e. for 32 bit versions when 64 bit versions are installed in
/usr/local.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24305
Summary: Everquest 2 Extended - hair flickers in and out of
existence
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://everquest.com
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On a system with an Nvidia 400 series card for which lspci reports
"nVidia Corporation Device 06%0 (rev a3)"
the hair on one character appears and disappears depending
on the position and orientation of the viewer.
I only have one such system. The other systems are all running
a mix of nvidia 275 or 330, wine or windows, and none of them suffer from this.
Now, this game seems to be flaky, so I have no idea if this is a wine
bug, a game bug, or a driver bug. I'll try to investigate more.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20012
Summary: Implement HalGetBusDataByOffset for the
PCIConfiguration BusDataType
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://rh-software.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray(a)pobox.co.uk
Created an attachment (id=23551)
--> (http://bugs.winehq.org/attachment.cgi?id=23551)
Scren capture showing example code working
With the fix http://bugs.winehq.org/show_bug.cgi?id=19966 SIV
(http://rh-software.com/) no longer crashes when run under Wine, however none
of the PCI Bus reporting actually works. As an experiment I wrote some code to
read the PCI confutation data from "/sys/bus/pci/devices/0000:bb:dd.f/config"
where bb:dd:f are the Bus, Device and Function numbers (the Device and Function
are bits 7...3 and 2...0 of the slot number. The attached screen shot you can
see I was able to read the data what HalGetBusDataByOffset() should return. I
actually did this using the Windows API functions using the following code:
if( ( fhl = CreateFile( file_name,
GENERIC_READ,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL,
OPEN_EXISTING,
0,
NULL ) ) != INVALID_HANDLE_VALUE )
{
if( ReadFile( fhl, data, sizeof( data ) &len, NULL ) )
{
...
}
CloseHandle( fhl );
but I would expect the Unix/Linux Native API should be used were this to be
implemented. I am concerned that different Unix/Linux systems may have
different device names, but looking at the lspci source there seems to be a pci
library to address this. I could try and work-a-round this within SIV, but as
SIV would probably not be able to use the Unix/Linux pci library that solution
would be less portable than implementing a solution within
HalGetBusDataByOffset() within Wine. For systems where this data could not be
returned then the current return of 0 (PCI Bus does not exist) would be made.
Note that in the case of the Bus existing and the slot being empty a return of
2 is expected.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17618
Summary: winecfg does not set drive type correctly for Local Hard
Disk choice
Product: Wine
Version: 1.1.16
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lordhavoc(a)ghdigital.com
The Drives panel in winecfg has a Type: dropdown which allows Auto-detect,
Local Hard Disk, Network Share, Floppy Disk, or CD-ROM to be chosen for each
drive.
Each of these sets a registry value, except for Auto-detect and Local Hard Disk
which simply remove the registry value for the respective drive.
Local Hard Disk should set the registry value for the drive to "hd".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28248
Summary: AP Tuner 3.08 Harmonics Graph (Ctrl+H)
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: audioprof2002(a)hotmail.com
Error happens when:
Harmonics Graph (Ctrl+H) is active over 2 minutes with constant signal.
The Windows Size is 3x Bigger than normal. <----
Allways Store is Dissabled.
http://www.aptuner.com/cgi-bin/aptuner/apmain.html
for example: calibration with A440Hz tone.
http://www.youtube.com/watch?v=V-kRShXR6qA
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27046
Summary: Quicken 2008 Deluxe announcement & upgrade window
contents are blank
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)skierpage.com
Created an attachment (id=34481)
--> (http://bugs.winehq.org/attachment.cgi?id=34481)
terminal output from running wine qw.exe
Quicken 2008 Deluxe often displays an announcement window at startup ("upgrade
now", "service alert", etc.). Its contents are always blank; in Wine
1.2.2-0ubuntu6 the window contents were black, in Wine 1.3.15-0ubuntu5 they are
white.
This is with no Library overrides, no winetricks, and the Quicken binary qw.exe
set to Windows Version "Windows 98" in winecfg
The workaround is to ignore the window and click its [Close] button, or
sometimes [More Info] will launch a web page.
I've attached terminal output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24767
Summary: AstroSynthesis 2.0 crashes with on-screen error
message
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjmckenzie51(a)earthlink.net
Created an attachment (id=31296)
--> (http://bugs.winehq.org/attachment.cgi?id=31296)
Starting the program without supplied GDIPLUS.DLL file
A user requested assistance with running this program in Wine-Users. Loaded
the trial version and attempted to use. Received error message in a dialog
box: "Can't Activate GLRC. Graphics will not display"
Clicking on the OK button brings up the trial start dialog box. Clicking on
Start on this dialog box brings up the main program screen which quickly
disappears. The program comes with it's own gdiplus.dll, but overriding it
does not clear the problem. Log files attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23915
Summary: wine freeze game, when is switched to VT[1-6]
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d.okias(a)gmail.com
So scenarion is:
KDM -> failsave session (clear session with xterm) -> "wine hl.exe -game
cstrike"
Game runs, everything work. When I do CTRL-ALT-F[1-6], then sound in buffer is
played over again (it's really annoyng) and game is stopped, until is restored
Xorg
(not sure, what effect it have on multiplayer, but I wasn't kicked from server,
so probably not much serious)
Solution:
I expect that wine application/games, should continue in run even when is used
VT.
This problem occured in all tested wine versions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28272
Summary: Lego Universe error but downloads when click on debug
tries to run then stalls
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: j.mcquone(a)physics.org
Lego Universe game nearly works but not quite. Error appears when I click on
the desktop link but game will download (takes about 10 mins for 500MB) if
click on yes to debug (don't know why). Once downloaded I can't enter my
registration code in the box provided on screen but game tries to start if
click play now then stalls.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27397
Summary: Excel 2003 pro hangs when using autonumbering
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b2792125(a)klzlk.com
Created an attachment (id=35030)
--> (http://bugs.winehq.org/attachment.cgi?id=35030)
stacktrace
Using excel 2003 pro with compatibility pack on linux kernel 2.6.38.4, wine
1.3.21.
Error comes when trying to use auto numbering, wine stop responding, must kill
manually.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27070
Summary: mmio and storage function not implemented for Corel
Draw 11
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: admin(a)dominion-it.co.za
Created an attachment (id=34502)
--> (http://bugs.winehq.org/attachment.cgi?id=34502)
Corel Draw 11 log file
System : openSuse 11.4
Progam : Corel draw 11 suite
Symptom : Program installs fine. Programs seems to load correctly, box pops up
to request if new image must be created or loaded and program then disappears.
Cannot be viewed or used at all. Have tried in a virtual desktop also but still
same symptoms. When loading via console to debug file we get attached error log
file 2 functions are specified not to be implemented, unsure if it is related
to the program disappearing, but hope it can help.
thank you
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26736
Summary: SIV window size change does not work
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://rh-software.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray(a)pobox.co.uk
When I change the size of a window the size changed is not notified to the
program by WM_ENTERSIZEMOVE and WM_EXITSIZEMOVE messages which means the window
does not get updated to reflect the size 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=24882
Summary: Read after free to do with D3D9
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: jseward(a)acm.org
I don't know whether this is a Wine bug, or an X bug, or a
/usr/lib32/dri/i915_dri.so bug, so this may be noise, in which case
apologies. Anyway, when running Firefox crashtests on Wine-1.2.1 on
Valgrind:
Invalid read of size 4
at 0x1CCBF91F: ??? (in /usr/lib32/dri/i915_dri.so)
by 0x1CCEF860: _mesa_test_framebuffer_completeness
(in /usr/lib32/dri/i915_dri.so)
by 0x1CCF39DB: ??? (in /usr/lib32/dri/i915_dri.so)
by 0x1CCF3A16: _mesa_update_framebuffer (in /usr/lib32/dri/i915_dri.so)
by 0x1CC70FD7: intel_draw_buffer (in /usr/lib32/dri/i915_dri.so)
by 0x1CCC0090: ??? (in /usr/lib32/dri/i915_dri.so)
by 0x1CCEFD54: _mesa_set_texture_attachment (in /usr/lib32/dri/i915_dri.so)
by 0x1CCEFF80: ??? (in /usr/lib32/dri/i915_dri.so)
by 0x1CCF02EF: _mesa_FramebufferTexture2DEXT (in /usr/lib32/dri/i915_dri.so)
by 0x1AF6E331: initPixelFormats (utils.c:965)
by 0x1AEDF2CA: InitAdapters (directx.c:5126)
by 0x1AEEA2C9: wined3d_init (directx.c:5369)
Address 0x8f2152c is 28 bytes inside a block of size 132 free'd
at 0x48EDC1A: free (vg_replace_malloc.c:366)
by 0x1CD08BEC: _mesa_free (in /usr/lib32/dri/i915_dri.so)
by 0x1CCBFCD7: ??? (in /usr/lib32/dri/i915_dri.so)
by 0x1CD1C3B3: _mesa_reference_renderbuffer (in /usr/lib32/dri/i915_dri.so)
by 0x1CCEFB1A: _mesa_remove_attachment (in /usr/lib32/dri/i915_dri.so)
by 0x1CD31ECE: _mesa_DeleteTextures (in /usr/lib32/dri/i915_dri.so)
by 0x1AF6E3CB: initPixelFormats (utils.c:1059)
by 0x1AEDF2CA: InitAdapters (directx.c:5126)
by 0x1AEEA2C9: wined3d_init (directx.c:5369)
by 0x1AF72659: WineDirect3DCreate (wined3d_main.c:91)
by 0x180A4D2C: Direct3DCreate9 (d3d9_main.c:43)
by 0x180A4DFD: Direct3DCreate9Ex (d3d9_main.c:61)
and I also saw two others which are clearly the same thing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20746
Summary: Bug with bibleworkshop 4.4 loaded with wine on Ubuntu
Karmic
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.bibleworkshop.net
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lgimelfarb(a)gmx.ch
Created an attachment (id=24815)
--> (http://bugs.winehq.org/attachment.cgi?id=24815)
Print screen of the failure
Msg after closing program : BClient.dll must close and wenn I open the
programme again, the registration of the product key have to be enter again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26719
Summary: Bully Video Game
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iwonder289(a)aol.com
Bully game starts crashing after a certain point in the game, the error message
says that is unknown, 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=21563
Summary: Risiko! Digital does not start
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lucak3(a)gmail.com
Created an attachment (id=25985)
--> (http://bugs.winehq.org/attachment.cgi?id=25985)
Rsisiko! Digital console log
Using wine-1.1.37-230-g3ed5df1 and a clean prefix
I tried to launch the game directly from its directory, but it does not change
anything: i issue the command to load the game and almost instantly closes.
I did not use winetricks.
It seemed to me that installation went correctly, but i will attach the setup
log in a second.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20335
Summary: Uninitialised memory reference in
X11DRV_DIB_SetImageBits()
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I think this is one of the first valgrind warnings
I ever ran into in wine, and it's still here.
Nowadays Wine gives better warnings, so it's a little
easier to see where these are coming from.
Running chromium's base_unittests.exe (and probably
lots of other apps) in valgrind yields this warning:
Conditional jump or move depends on uninitialised value(s)
at XcursorImageHash (xlib.c:294)
by XcursorNoticePutBitmap (xlib.c:365)
by _XNoticePutBitmap (CrGlCur.c:202)
by XPutImage (PutImage.c:1042)
by X11DRV_DIB_SetImageBits (dib.c:3670)
by X11DRV_SetDIBits (dib.c:4040)
by SetDIBits (dib.c:361)
...
Uninitialised value was created by a client request
at RtlAllocateHeap (heap.c:187)
by X11DRV_DIB_SetImageBits (dib.c:3543)
by X11DRV_SetDIBits (dib.c:4040)
by SetDIBits (dib.c:361)
...
Presumably adding HEAP_ZERO_MEMORY to the allocation
at dib.c:3543 would do the job, but maybe there's a
smarter way.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24479
Summary: Princess Maker 4 no japanese characters
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
Hi, while in Princess maker 5 I can use LANG=ja_JP.utf8 to run the game with
japanese characters, in princess maker 4 doing the same gave no result, the
japanese characters are still missing.
Hope we can work together to fix this
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20508
Summary: F/A-18 PSF Mouse control stops working in 3d view
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bgoodwin91006(a)yahoo.com
The mouse works correctly in all menus. On entering the 3D cockpit view, it
works correctly for a few seconds; long enough to take-off. In flight, the
control becomes less and less responsive. The plane noses down and crashes.
Using a joystick instead of the mouse works correctly but I prefer mouse
control because it's smoother and there's no convenient place to put the
joystick with my small desk and chair. The mouse control works correctly under
WindowsXP.
The problem has been the same for a long time (several years.) and through a
steady migration from Fedora 3 to my current Fedora 11.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28572
Bug #: 28572
Summary: PCAD2000 pated.exe exception while library file
opening
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jendoss(a)gmail.com
Classification: Unclassified
PCAD2000: pated.exe makes an exception when I try to open an existing pattern
from the library for editing. Under any Windows all Ok. Creates a new pattern -
no error. Problem only with existing file opening. Error window reports by Wine
itself.
Linux Ubuntu 10.04 LTS, Wine comes from
http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu lucid main
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27432
Summary: Switched to LinuxMint_11 Complete NEW install of OS
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rexstevens(a)ibscorporation.com
Installed Wine and IBM's Client Access V5r2m0 (For iSeries, used to be known as
AS/400) and get the following error.
Error allocating xxxxx bytes of memory from the Windows global memory heap.
Close one or more Windows applications and try again.
Explanation your windows system does not have enough memory available for
Personnel Communications to execute the function selected.
User response: Select retry after closing one or more applications.
The Operations Navigator works.
Any suggestions?
Thanks,
Rex Stevens
rexstevens(a)ibscorporation.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26448
Summary: Dosbox integration doesn't work with PIF files
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spammis(a)spam.la
A PIF file is a shortcut to an MS-DOS program. Windows shortcuts to MS-DOS
programs get a .pif extension whereas Windows shortcuts to Windows programs get
a .lnk extension (or at least this was the case during the Windows 95 era: I
have very rarely used Windows since then).
When I type "wine dosprog.exe", Wine forwards the program to Dosbox.
When I type "wine dosprog.pif", Wine does not forward any program to Dosbox. I
get error messages about "Wineconsole", so it seems that Wine finds the EXE
file that the PIF file refers to but that Wine tries to run the EXE file under
Wine instead of Dosbox.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28431
Summary: PKR.COM bug #1 (change screen size)
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: hanzal.michal(a)gmail.com
Good morning,
I am using OpenSuse 11.4.
I installed pkr.com and if I want to change screen size, then screen after
changing is out of window size. Check attached file.
I tried New version 1.3.28, and this stable version (1.3.12) and
problem was same.
Please try to find this BUG if it is possible, but I believe you :)
With best regards
Michal Hanzal
Paint Engineer
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28079
Summary: Silent Hill V: Homecoming: launching the game gives a
lot of fixme
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 810d4rk(a)gmail.com
Created an attachment (id=35952)
--> (http://bugs.winehq.org/attachment.cgi?id=35952)
terminal output
When running SilentHill.exe from the terminal it will make the desktop
unresponsive until it is killed, it continually generates a lot of fixme.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26567
Summary: FLV converter from http://www.flv-converter.org/ not
working
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fernandocarvalho1987(a)hotmail.com
FLV converter from http://www.flv-converter.org/ is not loading properly.
When I try to load the application it gives a message box with the following
message:
Execption EAccessViolation in module flvconverter_portable.exe at 014BA950.
Access violation at address 014BB950, Read of address 7FFD4000.
The program is working properly on Windows XP.
I've tried a clean wineprefix.
The application is available to download from:
http://www.flv-converter.org/download/flvconverter_portable.exe
My system is Ubuntu 10.10 - 32bits / wine 1.3.16
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20807
Summary: SolidWorks 2008 can't render parts
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdavis(a)mines.edu
Created an attachment (id=24921)
--> (http://bugs.winehq.org/attachment.cgi?id=24921)
Wine 1.1.32-641-ga7bfd6d Log +wgl on Mac OS X
When you create a part, SolidWorks attempts to create a bitmap GL context to do
offscreen rendering. The call to SetPixelFormat() on the bitmap DC fails,
however, because the depth of the pixmap (32) doesn't match the depth of the
visual that winex11 chose (24). (You can add a trace to
create_bitmap_glxpixmap() to see this for yourself.) SolidWorks, however, does
not check the result of SetPixelFormat(), expecting it to succeed, so it goes
ahead and tries to create a GL context. This fails because no pixel format is
set in the DC. As a result, no rendering of parts is done.
I've attached a log showing what happens. There's a second issue that is
demonstrated by that log, so I'm going to file another bug shortly.
I think this is somehow related to Roderick Colenbrander's Xrender patches,
given that we're dealing with a 32-bit pixmap (which wasn't possible until
Xrender support was added).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24455
Summary: Snes9x 1.52 fails to create AVI file for recording.
Product: Wine
Version: 1.3.2
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: LordHDL(a)yahoo.com
Created an attachment (id=30852)
--> (http://bugs.winehq.org/attachment.cgi?id=30852)
Terminal Output
When attempting to record using the "Record AVI" option, the application will
create the file in the specified directory, but then present a message saying
that it failed to do so.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20808
Summary: SolidWorks 2008 displays a black screen
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdavis(a)mines.edu
Created an attachment (id=24922)
--> (http://bugs.winehq.org/attachment.cgi?id=24922)
Wine 1.1.32-641-ga7bfd6d Log +wgl on Mac OS X
Like I said in bug 20807, there's a second issue with SolidWorks' rendering. If
you get past the issue in bug 20807, you see only a black screen when it tries
to render parts. I will once again attach the log from bug 20807.
>From reading the log, it seems like SolidWorks is looking for a particular
pixel format. First it tries the pixel format it got back trying to create a
bitmap context earlier. Then it enumerates every pixel format supported by the
driver. Failing that, it tries to create a bitmap context anyway, but fails
because once again no pixel format is set in the DC.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27309
Summary: Eden Eternal Closed Beta: Launcher Crashes While
Patching A Blank Game Directory
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: iyeru42(a)gmail.com
Created an attachment (id=34933)
--> (http://bugs.winehq.org/attachment.cgi?id=34933)
Backtrace Log
As the title says, when you run a launcher in a blank game directory, it should
install the entire game. Wine Crashes the launcher after a while. See the
attached log, as well as a possibly unrelated image.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24879
Summary: Application "Auralog Talk To Me French" fail during
installation
Product: Wine
Version: 1.3.5
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: cesarlr(a)gmail.com
There are no specific errors in Wine, only a message in the application showing
"there was an error in the application"
Here is more information about the app:
http://www.translationsoftware.co.uk/auralogtalktomefrench7.htm
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19871
Summary: Cusom CWnd component redraw flicker
Product: Wine
Version: 1.1.28
Platform: PC
URL: http://www.jtagtest.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin(a)hinner.info
See bug: http://bugs.winehq.org/show_bug.cgi?id=17394
Window repainting is flickering under Wine. Native Win32 works fine (or at
least I cannot see anything). Can provide "closed" source code of the component
to person who will be dealing with this stuff.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16069
Summary: VC6 debugging not working
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kresander(a)yahoo.com
I have used Wine to compile and run fairly large programs (more than 75 source
files and 2GB, 5GB of source code). Background is available in my post at Wine
User's forum under title Cannot install Visual C++ version 6.0 (VC6). My last
reply in the thread is this:
+++ begin +++
So far, I have tried four projects from Windows to Linux/Wine. All compiled
using VC6 on Wine and ran ok the first time. The two largest contained 78 and
105 cpp files with approximate source file sizes 2GB and 5GB.
Features used:
GUI: most standard and extended controls via dialog calls/macros
and CreateWindow, various window positioning/resizing functions,
messageboxes
GDI: most except paths
CHARS: most functions defined by <tchar.h>
FILES: fopen,fread, fwrite, ftell, fseek, fclose, _findfirst,
_findnext, _mkdir, remove, _tunlink
MEMORY new,delete and most memory and <string.h> functions.
Did not use MFC or ATL frameworks, just plain, Windows API functions
and as few of these as I could manage.
Did not use Windows file and directory functions.
Did not use c++ exception handling
Did not use Windows memory allocation function or older mallocs.
BUT
could not get the debugging to work.
1. on entry to the Windows main program:
int PASCAL WinMain( ...)
{
WNDCLASS wc;
MSG msg;
int a = 1; // for testing debug
int b = a + 1 ; // testing debug
hmodule = fhInstance ; <<< put breakpoint here
Values of variables a and b were reported as unknown expressions.
2. a little bit further into WinMain at call to CreateWindow for
main window:
hwndmain = CreateWindow( "GenericAppClass", ....
The program entered CreateWindow, but never returned.
Does debugging work, or have I entered unchartered waters?
+++ end +++
I don't write bigger and more resource-demanding programs than those mentioned
above. The VC6 compiled these with ease, ran without a single glitch and the
IDE behaved as I was used to see it. With debugging working there is no reason
for me to be on Windows any more. Have wanted to leave for years.
VC6 is an excellent product (too good to be Microsoft) and it now seems it can
offer cross-development on Linux. Really worth pursuing in my view.
You can reach me at kresander(a)yahoo.com.
Best regards
Ken Resander
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27986
Summary: Delorme Topo USA 7.0 fails to start
Product: Wine
Version: 1.3.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jsoltren(a)gmail.com
Created an attachment (id=35822)
--> (http://bugs.winehq.org/attachment.cgi?id=35822)
Backtrace of Delorme Topo USA 7.0 hang.
Delorme Topo USA 7.0 fails to start. I am able to install the program
successfully off a retail CD by running:
$ wine path/to/setup.exe
When I try to launch the application, I see the following:
- splash screen appears
- application loads through splash screen
- main application window appears with some menus rendered
- application hangs (appears to be a loop or deadlock)
I tried running Topo7.exe in the debugger:
$ WINEDEBUG=+warn+heap winedbg /home/jsoltren/.wine/drive_c/Program\
Files/DeLorme/Topo\ USA\ 7.0/Topo7.exe &> wine.error.log2
At the looping section, I did a break and backtrace. It seems to get stuck
here:
0xf77a4425 __kernel_vsyscall+0x5 in [vdso].so: movl $0x2b,%ecx
Please see attachment topo7.bt.txt for more details.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27897
Summary: Graphical glitches in TimeShift 1.2
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dreamsoul14(a)gmail.com
Game running with any setting and resolutions. Tested with wine 1.3.22 and
1.3.25
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27642
Summary: ms word 2003 has indic shaping issues with few
characters
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: usp10
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fast.rizwaan(a)gmail.com
Created an attachment (id=35344)
--> (http://bugs.winehq.org/attachment.cgi?id=35344)
ms word 2003 doc, as in video:
Please see the attachment and the video:
http://www.youtube.com/watch?v=FynooPfCgKg
The bug seems to be related to 2 things: small i matra ि and reph form
characters, क्र त्र प्र = consonant+र् (r-halant).
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=22137
Summary: [3CX Phone] app does not work with Wine on Mac 10.6
Product: Wine
Version: 1.1.41
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: nareshkv(a)gmail.com
App 3CX Phone is installed fine.
Upon running it throws following error logs:
fixme:tapi:lineInitialize (0x8487f0, 0x0, 0x4f9a54, (null), 0x32ed54): stub.
fixme:tapi:lineSetAppPriorityA (3CX Phone.exe, 00000004, 0x0, 00000001, (null),
00000001): stub.
fixme:tapi:lineRegisterRequestRecipient (0x0, 00848450, 00000001, 00000001):
stub.
err:ntdll:RtlpWaitForCriticalSection section 0x20c40b8 "?" wait timed out in
thread 001d, blocked by 000b, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x20c40b8 "?" wait timed out in
thread 0009, blocked by 000b, retrying (60 sec)
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:widDsCreate DirectSoundCapture not implemented
fixme:wave:widDsCreate The (slower) DirectSound HEL mode will be used instead.
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:gsm:GSM_DriverProc libgsm support not compiled in!
err:mmio:MMIO_ParseExtA No . in szFileName: "MenuPopup"
err:mmio:MMIO_ParseExtA No . in szFileName: "MenuCommand"
wine: Unhandled exception 0xc0000409 at address 0x1fd8ae4 (thread 002e),
starting debugger...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19761
Summary: RollerCoaster Tycoon: Wrong background colour in some
menus.
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: debian(a)carbon-project.org
Created an attachment (id=23139)
--> (http://bugs.winehq.org/attachment.cgi?id=23139)
In-game screenshot depicting the problem
The game RollorCoaster Tycoon (with the Loopy Landscapes add-on) shows a wrong
background colour (see attached image) in a menu, where all occurred events are
logged. The colour shouldn't be the green but the grey you see in the
background of the ride menu in the lower left corner.
Testsystem:
- AMD Athlon XP (1.2GHz)
- 1.5 GB RAM (DDR)
- ATI Radeon R300 (with the radeon driver, v6.12.2)
If you need further information, feel free to ask.
Kind regards,
Kai Wasserbäch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29058
Bug #: 29058
Summary: Wine Microsoft Windows compatibility layer and
exe.file
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carlogisonni(a)libero.it
Classification: Unclassified
When opening a file.exe using Wine Microsoft Windows compatibility layer
I get the following message:"The program pxplay encountered an error and must
be closed,We are sorry for the incovenence."The files.exe I'm tryng to execute,
are, several videos
created using The PHOTODEX PROSHOW PRODUCER. They do run properly under Windows
but not under Linux Ubuntu version 11.04.Natty.
It may happen that they start to play with soundtrck and suddenly the sound
disapperas.It also happens when i give the imput for play ,I see thre program
loading and launching up to the first screenshot and the computer freezes so I
have to restart the system.
I'd greatly appreciate any help in order to this problem
P.S.
I've also tried to install different versions of the Photodex Program on my
linux system trough "PlayOnLinux 4.0.12. but it doesn't work.
Thanks in advance
Carlo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16006
Summary: Problem getting 'Wordtalk' Addin working in MS Word 97
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://www.wordtalk.org.uk
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: graemebruce(a)aspects.freeserve.co.uk
Created an attachment (id=17211)
--> (http://bugs.winehq.org/attachment.cgi?id=17211)
Output following boot up of Word97 and click on Wordtalk configure icon.
Trying to run Wordtalk with Word 97 on an Asus Eeepc (Xandros) through Wine
1.0.
Both Word and Wordtalk appear to install satisfactorily and the Wordtalk
tooolbar appears in Word. However on clicking icons on the bar nothing works. I
have set oleaut.dll to native and installed riched20 and riched30 from
Winetricks. This seems to enable the Visual Basic Editor but still can't get
the macros in Wordtalk to run.
Wordtalk is an addin which is extremely imporatnt for dyslexic users. It
'echoes' text and reads the spellcheck list. I am very keen to get this running
for school pupils in our area so priority is quite high! Anny help most
welcome.
A log of console output is attached, following boot up of Word and click on the
'configure' icon on Wordtalk tooolbar (black spanner)
I've tried using Word 2003 instead - similar results. Would prefer to use
Word97 because the Asus Eeepc has limited hard disc space so a compact
installation is preferable.
Word 97 was installed with the 'typical' installation option and the 'full'
version of Wordtalk was used. The Wordtalkstartup utility is installed and
working correctly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.