http://bugs.winehq.org/show_bug.cgi?id=23802
Summary: Need for Speed Shift demo: slow framerate on showroom
floor
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In the showroom floor, when the car is just rotating, the
framerate in Wine is well under 10fps, but in Windows it seems
very smooth, above 20fps.
The problem even occurs at low resolutions like 800x600.
Maybe there's some event timer firing at the wrong rate?
This problem's been around as long as I can remember.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24600
Summary: Saira: some fonts are messed up
Product: Wine
Version: 1.3.4
Platform: x86
URL: http://nifflas.ni2.se/content/Saira/Saira%20112.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=31067)
--> (http://bugs.winehq.org/attachment.cgi?id=31067)
screenshot showing the wrong fonts
There are some scenes in the game where the text is not displayed correctly
(see attached screenshot). It looks as if the fonts were condensed.
The menu text and the game instructions at the top of the screen are all
displayed correctly, but if you open your PDA in the game by pressing 'd' and
choose the 'Device Solver', you can observe the issue.
'winetricks corefonts tahoma' doesn't help.
Some notes for testing:
Msvcp60.dll must be placed into /system32 to start the game or the setup
utility.
Make sure you set up the game to run in windowed mode in Settings.exe. For some
reasons the game crashes on startup if fullscreen is selected.
Fedora 13
Nvidia 7600 / driver 256.53
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17715
Summary: Incorrect translation of D3D asm instruction "expp"
Product: Wine
Version: 1.1.17
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
CC: stefandoesinger(a)gmx.at
Hi there,
currently wined3d (I only tested this in ARB mode, but it might also affect
GLSL mode) the D3D assembler instruction "expp" is incorrectly translated to
ARBvp assembler language.
wined3d takes this D3D asm line "expp r3.y, r3" and translates it into "EXP
R3.y, R3;". Well, this isn't working.
EXP is of scalarop type, the first parameter being of "masked destination
register" type (masking is used in this case above) and the second parameter
(here lies the problem) is of type "scalar source register".
Sadly R3 is a vector :(
Well, let's add there full shader source for completeness:
--------------------------------------------
vs_1_0
//D3DX8 Shader Assembler Version 0.91
mov r0, v0
add r1, r0, -c85
dp3 r1, r1, r1
rsq r1.x, r1.y
mov r3, r0
dp3 r3.w, r3, r3
rsq r3.w, r3.w
mul r7, r3, r3.w
mul r1.x, r1.x, r1.y
mad r2.x, r1.x, c86.x, c86.y
slt r4, r2.x, c0
mul r4, r4, -c83.w
max r2.x, r2.x, -r2.x
add r2.x, r4.z, r2.x
mul r3, r2.x, c83.y
expp r3.y, r3
mad r3, r3.y, c83.z, c83.w
mul r2, r3.x, r3.x
mul r3.y, r2.x, r3.x
mul r3.z, r2.x, r3.y
mul r3.w, r2.x, r3.z
dp4 r2, c82, r3
mul r2, r2, c86.z
mul r1.x, r1.x, c86.w
add r1.x, c1, -r1.x
max r1.x, c0, r1.x
mad r0.y, r2, r1.x, r0.y
dp4 oPos.x, r0, c2
dp4 oPos.y, r0, c3
dp4 oPos.z, r0, c4
dp4 oPos.w, r0, c5
mov oT0, v3
mov oT1, v3
mov oT2, v3
mov oT3, v3
mov oD0, c1
mov oFog.x, c0
--------------------------------------------
First of all, according to the current MSDN the instruction used above in the
source is NOT valid.
See this: http://msdn.microsoft.com/en-us/library/bb173373(VS.85).aspx
They explicitly state "expp dst, src.{x|y|z|w}" as the syntax.
They furthermore mention:
------------QUOTE---------------------------
src is a source register. Source register requires explicit use of replicate
swizzle, that is, exactly one of the .x, .y, .z, .w swizzle components (or the
.r, .g, .b, .a equivalents) must be specified.
------------UNQUOTE--------------------------
Well, this comment about the src reg doesn't seem to be valid at all....
Let's just take a look at the original D3D8 documentation ("D3DX8 Shader
Assembler Version 0.91" <- !!!).
To fully quote this:
------------------------------------------------------
expp
Provides exponential 2x partial support.
Syntax:
expp vDest, vSrc0
Registers:
vDest: Destination register, holding the result of the operation.
vSrc0: Source register, specifying the input argument.
Operation:
The following code fragment shows the operations performed by the expp
instruction to write a result to the destination.
SetDestReg();
SetSrcReg(0);
float w = m_Source[0].w;
float v = (float)floor(m_Source[0].w);
m_TmpReg.x = (float)pow(2, v);
m_TmpReg.y = w - v;
// Reduced precision exponent
float tmp = (float)pow(2, w);
DWORD tmpd = *(DWORD*)&tmp & 0xffffff00;
m_TmpReg.z = *(float*)&tmpd;
m_TmpReg.w = 1;
WriteResult();
Remarks:
The expp instruction produces undefined results if fed a negative value for the
exponent.
This instruction provides exponential base 2 partial precision. It generates an
approximate answer in vDest.z and allows for a more accurate determination of
vDest.x*function(vDest.y), where function is a user approximation to 2*vDest.y
over the limited range (0.0 <= vDest.y < 1.0).
This instruction accepts a scalar source, and reduced precision arithmetic is
acceptable in evaluating vDest.z. However, the approximation error must be less
than 1/(211) the absolute error (10-bit precision) and over the range (0.0 <=
t.y < 1.0). Also, expp returns 1.0 in w.
The following example illustrates how the expp instruction might be used.
expp r5, r0
------------------------------------------------------
So, the correct translation should be "EXP R3.y, R3.w;"
CCing Stefan Dösinger and Henri Verbeet.
I tried to patch this myself, but it looks like that "expp" has to be moved out
of shader_hw_map2gl to be able to do such an adjustement (but maybe not?).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24328
Summary: Filter Forge 2 demo fails to launch with error: <class
XFW::OSCallError> ::GetScrollInfo failed.
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anomalydetected(a)gmail.com
Created an attachment (id=30664)
--> (http://bugs.winehq.org/attachment.cgi?id=30664)
Screenshot of error message
Filter Forge 2 demo installs without an error message, but when attempting to
launch it and clicking "Use Trial - 30 days left", an error message pops up
<class XFW::OSCallError> ::GetScrollInfo failed. (screenshot attached) and the
program crashes.
Demo is available for download here: http://www.filterforge.com/download/
Regular Terminal output and terminal output with WINEDEBUG=+relay,+seh,+tid
attached also.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14740
Summary: Combined Arms is not installable
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: starmatz71(a)yahoo.de
The installer shows only a white window, with the buttons "Agree" or
"Disagree". After that a second window pops up, completely blank and without
buttons. Pressing ESC on the keyboard quits the installer.
The registration and the game is free to use and play.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19959
Summary: Rome Total War loading screen has correct colors,
rendered twice
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Created an attachment (id=23473)
--> (http://bugs.winehq.org/attachment.cgi?id=23473)
Screenshot of the loading screen
Rome Total War loading screen has correct colors, and is rendered twice, once
in the left side of the screen and once in the right side.
It's worth noting that the progress bar - the only animated element - is
rendered 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.
http://bugs.winehq.org/show_bug.cgi?id=23472
Summary: PokerStars continues to crash - Wine 1.2rc5
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.s.cairns(a)gmail.com
Created an attachment (id=29294)
--> (http://bugs.winehq.org/attachment.cgi?id=29294)
CreateToolhelp32Snapshot Unimplemented
I am attempting to run PokerStars with PokerStarsHotKeys. I was able to do
this with out a problem on 7.04. I decided it was time for an update but PS
continues to crash. I'd rather not revert back but if its necessary I'll go
that route.
PokerStars will crash when I open a new window. It will crash if it hangs on a
window. It will crash if I go into a menu list. It basically crashes when it
wants.
I am in communication with PS but I'm sure you would want to know about this
problem.
Thank you for all your work.
Michael
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11919
Summary: foobar2000 0.9.5.x with foo_facets.dll: crash in track
popup code
Product: Wine
Version: 0.9.54.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pujos.michael(a)laposte.net
Created an attachment (id=11218)
--> (http://bugs.winehq.org/attachment.cgi?id=11218)
crash backtrace
Install foobar2000 and the facets plugin
(http://foobar2000.audiohq.de/foo_facets/)
Enable layout editing mode (View->Layout->Enable Editing Mode)
right-click in the UI to add the facets UI element (right click, then select
"Replace UI element" in the popup menu, then select Facets in the UI element
list).
Now right-click in the newly added Facets component to display it's popup menu.
Select "Facet View" in this menu and it'll make foobar2000 crash.
The crash happens in MENU_HideSubPopups() from user32/menu.c. In this function
the MENU_GetMenu() return a NULL pointer hence the subsequent crash.
See the attached file for the full backtrace
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29290
Bug #: 29290
Summary: "The Settlers - Rise of Cultures" - SecuRom
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maxistxxl(a)yahoo.de
Classification: Unclassified
Created attachment 37886
--> http://bugs.winehq.org/attachment.cgi?id=37886
Output of `ls -lh dosdevices' and `wine SADK.exe'
This one is fairly easy to describe.
I am using the current wine version fresh from todays (9.12.11) PPA. I
installed "The Settlers - Rise of Cultures" without any problems. If I want to
start the game, SecuRom prevents it.
I "configured" my CD-Drive using winecfg. Please find the output of `ls -lh
dosdevices/' attached. Please find in the same attachment the output of `wine
SADK.exe'.
sincerly
Max Görner
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33342
Bug #: 33342
Summary: Blur: rear view upside down (since Wine 1.3.32)
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixhaedicke(a)web.de
Classification: Unclassified
In current Wine versions, the rear view is shown upside down in the game "Blur"
(see attached screenshot).
Running a regression test using git bisect revealed the following commit as the
cause:
3bfecd58d282ac50463f659e427a2d3d86d12334 is the first bad commit
commit 3bfecd58d282ac50463f659e427a2d3d86d12334
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Thu Nov 3 19:37:24 2011 +0100
wined3d: Avoid a drawable -> texture transfer through sysmem in
arbfp_blit_surface() with backbuffer ORM.
:040000 040000 c21c3a8546b4f391faac5db17db0b8f6896feb07
d15f3aeb8596ad9e7ae04ec373f7d3a4b4cda069 M dlls
I have ported the revert patch for this commit to Wine 1.5.27 and this solved
the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21054
Summary: Platform SDK 2003 install slow
Product: Wine
Version: 1.1.34
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is not a critical problem, just an observation.
'winetricks psdk2003' works today, but seems a little slow.
It spends about five minutes thinking, then about half an hour (?) copying.
oprofile shows that during the thinking phase,
cpu time is divided up almost evenly between msi.dll and libwine.dll:
213762 52.2918 msi.dll.so
173435 42.4267 libwine.so.1.0
16658 4.0750 kernel32.dll.so
During this time, cpu time inside msi is divided up like this
67832 31.7325 JOIN_fetch_int
33596 15.7165 WHERE_evaluate
28618 13.3878 read_table_int
22133 10.3540 TABLE_fetch_int
14115 6.6031 STRING_evaluate
13322 6.2322 bytes_per_column
and cpu time inside libwine is divided up like this:
152497 87.9275 strlenW
12290 7.0862 compare_unicode_weights
During the copying phase, cpu time is mostly in the kernel:
23340 37.7866 no-vmlinux
15967 25.8500 cabinet.dll.so
5469 8.8541 libwine.so.1.0
Of the 1/4 of the cpu time in cabinet.dll, nearly all of it was in one
function:
15299 95.8164 LZXfdi_decomp
These numbers are with -O0, so they're not especially useful
for predicting normal speeds. It'd be interesting to see where the
cpu time is at -O2.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30555
Bug #: 30555
Summary: PokerStars client cannot initialize
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kevin.mcalister(a)gmail.com
Classification: Unclassified
Pokerstars client fails ( http://pokerstars.com )
versions:
- wine 1.4
- linux 3.2.0-24 (Ubuntu 12.04)
Note: it was working pretty good on Wine 1.3.28 under linux 3.0.0-17 (Linux
Mint 11).
The reason is:
After update check the error window appears: "Client program has failed to
inialize, Please contact PokerStars support"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27426
Summary: Duke Nukem Forever Demo crashes on start
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=35072)
--> (http://bugs.winehq.org/attachment.cgi?id=35072)
crash dialog
Shows a steam/dnf crash dialog on start, without much info (attached). Also
tried the fixed files version, which fails, trying to import kernel32.dll (!).
Works under windows, so either a really strange crack, or some new copy
protection..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23604
Summary: Armored Fist 3 crashes on startup in (shrinked)
binkplay.exe
Product: Wine
Version: 1.2-rc7
Platform: x86
URL: http://download.cnet.com/Delta-Force-2/3000-2099_4-100
32645.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=29519)
--> (http://bugs.winehq.org/attachment.cgi?id=29519)
standard terminal output
Wine throws up a crash dialogue when starting the game: Armored Fist 3 (from
Novalogic). The problematic executable is binkplay.exe which is intended to
play the intro video. Interestingly, after pressing on <Close> in the crash
dialogue, the game continues to load and starts up correctly.
A +relay log reveals the game comes with a binkplay.exe which is compressed
with Shrinker v3.3.
There is an already fixed bugreport here on Bugzilla which dealt with a similar
issue: that's bug #2608.
In case it's a regression I tried the game in 1.1.7. The crash still occurs in
1.1.7 for me (it can be seen in the terminal) , but without a crash dialogue.
A possible workaround: replace the bundled binkplay.exe with an un-shrinked one
(e.g from RAD Game tools). Now Wine plays the intro video fine, without a
crash.
There are several more Novalogic games that come with the same shrinked
binkplay.exe, so this bug might affect more than one game (Delta Force 2,
Tachyon).
The Delta Force 2 demo uses the same shrinked binkplay.exe (md5 checksums are
the same), so you can check out the issue using this demo (link added to URL).
Note: 'winetricks ie6' is needed to start the demo correctly (because of its
launcher).
Fedora 13 x86
Wine-1.2-rc7
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27138
Summary: Football Manager 2010 Demo Installer: canceling
install yields crash
Product: Wine
Version: 1.3.19
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Canceling installation (in Football Manager 2010 Demo screen) yields a crash.
Be sure *not* to hit "Cancel" on first screen (install anywhere), but wait
until the "Football Manager 2010 Demo" screen appears, then hit Cancel + Quit
Console gives following error:
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error
0x8001011d
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33546
Bug #: 33546
Summary: MSVC 2012 C compiler (cl.exe) fails/crashes
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)martin.st
Classification: Unclassified
For MSVC 2010, the plain C compiler binary (cl.exe) has worked just fine when
run in wine, if extracted from an existing installation of MSVC. For MSVC 2012,
the compiler binary fails/crashes. The exact reason is still unknown, but it
seems like the compiler corrupts the heap at some point.
To reproduce, copy the following files from an MSVC 2012 installation:
>From Microsoft Visual Studio 11.0\Common7\IDE:
mspdb110.dll
>From Microsoft Visual Studio 11.0\VC\bin:
cl.exe
c1.dll
c2.dll
1033/clui.dll
And optionally from Microsoft Visual Studio
11.0\VC\redist\x86\Microsoft.VC110.CRT:
msvcr110.dll
msvcp110.dll
Then using these files, try to compile a simple C file containing:
int main(int argc, char* argv[]) {
return 0;
}
wine cl.exe -c test.c
This currently ends with the following error:
err:seh:setup_exception_record stack overflow 848 bytes in thread 0009 eip
f74e847d esp 00230fe0 stack 0x230000-0x231000-0x330000
If the native msvcr110.dll isn't used, this fails due to some unimplemented
function. Stubs for these can be added by the crude, proof of concept patches
attached, which also gets rid of a number of other fixmes printed. The third
patch adds calls _heapchk() after each memset, to pinpoint one particular
memset call (with length parameter 0x6f0) that seems to corrupt the heap. The
actual cause for this is still unknown though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27198
Summary: PokerStars Crashes after unsuccessfully trying to get
new update.
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: edweber(a)weberenterprises.com
Created an attachment (id=34753)
--> (http://bugs.winehq.org/attachment.cgi?id=34753)
PokerStars Failure under Wine 1.3.19
After unsuccessfully trying to get a new update from poker stars, now the app
won't launch at all. Please see attached screen-shot of the Wine error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24549
Summary: Firestarter Demo crashes on exit when mouse is moved.
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=30983)
--> (http://bugs.winehq.org/attachment.cgi?id=30983)
Cconsole log from wine-1.3.3-282-g440cf08
Now when bug 24249 is fixed, you can run Firestarter Demo. Choose Menu -> Quit
and watch outtro subtitles. When you move mouse, game crashes somewhere in
ntdll.
If i run the game with WINEDEBUG=warn+heap it displays:
"... invalid in-use arena magic 00000000 ..."
and it won't crash in this case :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32055
Bug #: 32055
Summary: Skype 6 crashes on start up
Product: Wine
Version: 1.5.15
Platform: x86
URL: http://upgrade.skype.com/SkypeSetupFull.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Created attachment 42250
--> http://bugs.winehq.org/attachment.cgi?id=42250
Skype 6.0 start up backtrace
After installation before you even try to start it you should remove
$WINEPREFIX/drive_c/users/Public/Application Data/Skype directory.
Here's a backtrace.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26249
Summary: pokerstars client, network status window at start
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bo.forslund(a)abc.se
the Pokerstars network status window popping up at start says connection bad
(0%) even if the connection is perfect
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18952
Summary: Combat Arms will not run
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shomari.sharpe(a)gmail.com
Combat Arms crashes upon startup. When executing Engine.exe "HackShield Pro"
starts to initialize and once the progressbar reaches 100% it disappears from
the screen. When i check my list of running processes the wineserver is running
along with Engine.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=16733
Summary: crash at Navyfield ingame EULA
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.navyfield.de/ger/main.asp
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Following on from bug 12021 - after the loading screen finishes, an EULA is
shown but wine crashes. Native quartz gets things a bit further but then it
crashes later.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10587
Summary: xcovator crashes
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://xkovator.com/download.htm
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
A user submitted this app into appdb with garbage test result. It starts fine
using native mshtml. The crash is likely related to :
fixme:mshtml:HTMLDocument_write (0x132c30)->(0x1507f28)
--
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=24810
Summary: My game don't open like before?
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wheirdz(a)hotmail.com
Metin2 has encountered a problem and need to close, we are sorry of the
inconvenience ....
What can I 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=15708
Summary: Dragon NaturallySpeaking 7 install fails with negative
amount of memory reported
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teight(a)ntlworld.com
I'm running Ubuntu 8.04 on a dual boot machine with 3GB memory which can
comfortably run Dragon NaturallySpeaking Preferred 7 under XP. I'm having
problems installing Dragon NaturallySpeaking 7 in Wine and believe there may be
a bug.
Regardless of whether I run "wine /media/cdrom1/autorun.exe" or wine
/media/cdrom1/setup.exe or if I copy the cd contents to the hd and run the
install from the hard disk, the install looks promising for only a few moments.
Then an error message which describes the minimum requirements for DNS 7,
finishing with: "Your computer does not meet the minimum specifications for
installation of Dragon NaturallySpeaking" and it reports -1052Mb memory -ie
***minus*** 1.052 GB memory. Then the install allows me to withdraw
gracefully, no crashes or other problems, which is a tribute to the stability
of Wine itself.
This behaviour happens under Wine 1.00 from the Ubuntu repository and also
under Wine 1.1.6.
My guess is that fault lies with the the Dragon installer, which is not able to
recognise 3GB and is therefore unable to install, having misreported the total
physical memory as a negative quantity as a result of a register overflow.
I remember causing similar odd results myself when programming in C in what now
feels like another lifetime! Usually the silly result would be the consequence
of a register overflow thanks to my very poor programming skills.
I'm not all that familiar with the intricacies of Wine: could it be that there
is a command line option available which limits the amount of physical memory a
program running under Wine can see? Or is this a bug?
Teight
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23123
Summary: Cannot switch windows while playing World of Warcraft
Product: Wine
Version: 1.2-rc3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fierevere(a)ya.ru
Since wine 1.2rc2 (all earlier versions are working fine) its not possible to
switch windows while playing World of Warcraft (client 3.3.3a), if switched -
cant switch back to WoW, it cannot resture its graphics and doesnt show
anything.
nvidia drivers: 195.36.24
xorg-server: 1.8.1
Gentoo Linux with 2.6.34 kernel
Screen resolution 1440x900
running WoW 3.3.3a on a fullscreen with -opengl switch
problem appeared in wine 1.2rc2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25194
Summary: Virtual Desktop reduces size when starting up EVE
Online
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stevenb(a)sunrise.ch
Created an attachment (id=31982)
--> (http://bugs.winehq.org/attachment.cgi?id=31982)
Terminal output
Hi
When I first installed EVE Online I could not read the licence agreement on the
first login. So I went to
http://wiki.eveonline.com/en/wiki/Install_EVE_on_linux_with_wine following the
instructions under "Configuring Wine to work with EVE" - without the registry
changes. My predifined virtual desktop-size (1400x1050) gets reduced to
something like 100x100 (don't know the exact size). In there I cannot do
anything but reading the center part of the licence agreement (left and right
side are cut).
I use no proprietary graphic card driver. My system:
Ubuntu 10.04 GNOME (installed with Ubunutu provided packages from the
Synaptic-Package manager)
Computer: T60 (SSD drive though)
Graphic Card speciations:
Codename M54
Pipelines 4 / 2 Pixel- / Vertexshader
Kerntakt * 445 MHz
Shadertakt * 445 MHz
Memorytact * 250 MHz
Memorybandwith 128 Bit
Memorysize 256 MB
Shared Memory no
HyperMemory up to 256 MB from main memory
DirectX DirectX 9c, Shader 3.0
Features Avivo Video und Display Engine. PCI Express x16-Bus; 90-nm
Attached you can find the terminal output.
If you need any more information let me know!
Thanks
Stefan
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23770
Summary: TurboCad Pro 17 Platinum Edition
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: prmconstruction(a)yahoo.com
Wine allowed TurboCad to load but will NOT open the program or any of the
associated files
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29244
Bug #: 29244
Summary: Spoon Studio
Product: Wine
Version: 1.3.34
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexandre.lengereau(a)biblibre.com
Classification: Unclassified
I have this error with spoon studio 2011 for portable apps.
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for 006c0065
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13429
Summary: Eudora 7.1.0.9 several bugs related to Wine
Product: WineHQ Bugzilla
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugz(a)wendy.org
It was not possible to open attachments to an email in Wine 0.9.x versions; in
the Wine 1.0 RC-versions 1 and 2 this remains impossible.
Printing resulted and still results in garbled printouts: approximately the
first half of the first page is like it should be, the rest (of the page, and
the whole of next pages) is garbled, words printedover eachother. I have to cut
and paste the contents into a word processor (like Open Office) to be able to
print an email.
It was and still is not possible to enter Eudora in paid mode. I have paid for
my Eudora Pro, but since I moved from Windows XP to Ubuntu, I'm working in
sponsor mode. Which has a pesky irritating window reminding me about working in
sponsor mode...
Since updated to Wine version 1.0 (both Release Candidates 1 and 2), some other
things stopped working in Eudora.
- Not able to click on a link to open a web page (this was still possible in
pre 1.0 versions of Wine!). My browser is not opened. A workaround is to to
open Link History, select the link I just clicked on, copy the link, switch to
the browser, and paste the address into the address bar. Since clicking on a
link worked in earlier versions of Wine, this problem should be relatively easy
to be fixed...
- Not able to see the source of an email (to check special characters, URLs
etc): selecting this option (right-click in an email message, select option
'check source') has no result; same with 'send to browser'. Since clicking a
link does not open a web browser, being able to copy and paste the URL is
important, but not everybody (especially mailing lists) show the URL behind the
link, often just a keyword is shown.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23886
Summary: License Admin application fails
Product: WineHQ Apps Database
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: carlhbolling(a)gmail.com
Created an attachment (id=29985)
--> (http://bugs.winehq.org/attachment.cgi?id=29985)
terminal output of running the license administrator program
I ran the application for the command line. This is the error message I get:
wine: Unhandled stack overflow at address 0x7ed23338 (thread 0009), starting
debugger...
err:seh:setup_exception_record stack overflow 1260 bytes in thread 0009 eip
7bc59361 esp 00230e44 stack 0x230000-0x231000-0x330000
I also loaded all the vbasic stuff from winetricks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15987
Summary: ActiveSync 4.5 don't synchronize devices
(comm:get_baud_rate)
Product: Wine
Version: 1.1.8
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shakaran(a)gmail.com
Created an attachment (id=17174)
--> (http://bugs.winehq.org/attachment.cgi?id=17174)
ActiveSync 4.5 log
When you execute ActiveSync 4.5 and plug a device, the program not recognize
the port USB and the device is waiting.
Also the list of device has a overflow and the letters "Hide details/Show
details" (in the spanish image "Ocultar detalles/Mostrar Detalles" is
overlapped
But if you press again "Hide details" then the box has the normal aspect.
The complete log and images is attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23544
Summary: azz cardfile 3.3 will not save changes to data cards
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmalsbury(a)satx.rr.com
just flipping to another card loses any changes made to that card and is gone
after flipping back to the previous card.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22873
Summary: Visio 2003 insert file (picture) error
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: princej(a)aafes.com
When using Vision 2003 with Wine 1.2 - you can not insert images into a
document. The action occurs, but the result is a box with an X in it.
Tried various formats with the same result
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32180
Bug #: 32180
Summary: pes2013
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chrismcgrady1(a)gmail.com
Classification: Unclassified
When I played PES2013 OS version by using wineskin, it unexpectly stopped
working. I then downloaded the bug trace file and hope you to help me out.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23551
Summary: Ignition display hangs when changing resolution
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://www.abandonia.com/en/games/107/Ignition.html
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kazade(a)gmail.com
Ignition is an old game that by default runs at 320x200. At the game menu you
can change the in-game resolution up to 800x600, but the menu itself will
always remain at 320x200.
If you select either 640x480 or 800x600 as the in-game resolution and then
start the game, the resolution happens but the display is garbled and the game
seems to do nothing after this point. This problem does not occur when using
the "Emulate a virtual desktop" setting, only when using proper fullscreen.
Also, if you leave the in-game resolution at 320x200 the game runs perfectly,
it's something to do with the resolution change.
It's not a driver bug as I've seen the same issue on open source ATI drivers
and closed nvidia drivers.
I've attached a +d3d trace but I'm not sure how helpful it is.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29153
Bug #: 29153
Summary: NSIS ExecWait not working
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dicobadi(a)gmail.com
Classification: Unclassified
"ExecWait" allow NSIS installer to run second installer and waits till it's
finished. But in Wine environment, the second installer never shows and the
main installer keeps on waiting.....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27398
Summary: Debug4x: Application locks at start
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefano.priore(a)inwind.it
Debug4x is a free development environment for the 48/49/50 series of HP
calculators.
Current available version at http://www.debug4x.com/ (v2.2 - build 159) hangs
after a successful installation during first launch.
I've tried to obtain a backtrace as suggested at
http://wiki.winehq.org/Backtraces?action=show&redirect=winedbg - I'll attach
soon the (very short) report.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21481
Summary: Runtime error in RPG Maker VX
Product: Wine
Version: 1.1.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jguy(a)myst-online.com
Just tried to install RPG Maker VX to my Ubuntu 9.10 machine. It installs fine,
but when I try to load or create a new project, I get the error in my console
below:
X Error of failed request: BadAlloc (insufficient resources for operation)
Major opcode of failed request: 53 (X_CreatePixmap)
Serial number of failed request: 10949
Current serial number in output stream: 10960
The program then does a hard crash. You can see the map and tiles load before
the crash for a split second before the program just exits out.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20085
Summary: Settlers of Catan runs very slow.
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mclaud2000(a)tutopia.com
Created an attachment (id=23646)
--> (http://bugs.winehq.org/attachment.cgi?id=23646)
Terminal output from a short game session.
Running Settlers of Catan o a clean wineprefix works fine, i.e. the game
doesn't crash and there are no graphical glitches, but it runs very slow,
making the game barely playable.
Attached is the console output of a game session where I created a game, played
the first turn and then quit.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22633
Summary: zMUD, Steam: programs work in background, but UI is
not visible
Product: Wine
Version: 1.1.4
Platform: x86
URL: http://forums.zuggsoft.com/index.php?page=4&action=fil
e&file_id=65 http://store.steampowered.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: addiebk(a)hotmail.com
Several programs that I attempt to run with WINE will run in the background,
but not be visible in the system tray. ALT-TAB does not make them appear.
They appear in the system monitor as processes (and indeed run normally-- zMUD
is connected to the server, and Steam can still download files), and Steam,
which has a tray icon, appears in the tray, though I cannot open 'library',
'store' or any other options which use the main window. ('Settings' can still
be opened.)
With zMUD: The program loads normally until I attempt to connect to a specific
server. The window then opens as it should for a split second, and then
disappears. The process still runs in the background as it should (the server
disconnects after a period of time with inactivity-- zMUD asks if I should
reconnect when this occurs.), though I cannot interact with the program.
with Steam: Everything seemed to run normally, and I even started a download of
a game in my library. I changed desktop workspaces, and Steam suddenly became
invisible. It still has a tray icon, and it continued to download the file
(the only plausible use of my bandwidth in the system monitor), though I could
not interact with the main menu. As mentioned previously, if I attempted to
open 'settings' from the tray icon, I could access the Steam settings, but
nothing in the main window.
There is no crash output from these programs when run from the terminal, as
they do not crash, but are simply invisible.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33248
Bug #: 33248
Summary: GL_INVALID_OPERATION (0x502) from glTexSubImage2D @
surface.c / 2346
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com
Classification: Unclassified
Screen black blinks with 'err:d3d_surface:surface_upload_data >>>>>>>>>>>>>>>>>
GL_INVALID_OPERATION (0x502) from glTexSubImage2D @ surface.c / 2346'
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31600
Bug #: 31600
Summary: program crashes regularly
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: imperialcommand.zhou(a)gmail.com
Classification: Unclassified
i downloaded ygo pro percy. the program crashes/forces me to quit the program
after i play a game
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21020
Summary: Artrage3 studio pro demo : installer hangs.
Product: Wine
Version: 1.1.34
Platform: PC
URL: http://www.ambientdesign.com/artrage.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azathothgr(a)gmail.com
Artrage 3 Studio Pro demo installer hangs when clicking the install button. No
error, just stops after a while, and has to be killed.
Only folders get created.
Attached +msi debug log.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27705
Summary: Sage Instant Accounts fails to install with error 1628
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alastairescOtt(a)gmail.com
Created an attachment (id=35455)
--> (http://bugs.winehq.org/attachment.cgi?id=35455)
Error output from running the installation file.
On trying to install Sage Insant Accounts, I get error message 1628.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24640
Summary: Stronghold Crusader: Doesn't want to run
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gufide_g(a)yahoo.ca
Created an attachment (id=31143)
--> (http://bugs.winehq.org/attachment.cgi?id=31143)
This is my terminal output
Just don't want to run. I was unable to run it before
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29351
Bug #: 29351
Summary: bug when using lecturemedia.app
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keith.kietu(a)gmail.com
Classification: Unclassified
While using the application : Lecturemedia.app I cannot use the mouse after
loading a mpg. file into the application.
Please advise asap.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27972
Summary: Cannot install FIFA10
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dan.mera(a)rogers.com
I cannot install FIFA10 with Wine 1.3.12 on OpenSuse 11.4 32 bit version.
Errors are 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=24037
Summary: winetest fails to run on Windows XP SP3 machine, error
193
Product: Wine
Version: unspecified
Platform: x86
URL: http://test.winehq.org/builds/winetest-1afc16e96201.ex
e
OS/Version: Windows XP
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 14102
Created an attachment (id=30206)
--> (http://bugs.winehq.org/attachment.cgi?id=30206)
screenshot
Very strange, but when I attempt to run winetest on my work machine (to test
bug 14102) I get an error when running every test, error 193 (bad exe format).
If I extract the tests and run them manually, they run, however.
Something's wrong with the extractor it seems?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33252
Bug #: 33252
Summary: start in command prompt not completely implemented
Product: Wine
Version: 1.5.26
Platform: x86
URL: http://http://hub.qgis.org/projects/quantum-gis/wiki/D
ownload
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: guy.roussin(a)teledetection.fr
Classification: Unclassified
Hi,
start "xxx" /B file.bat
fail, but
start /B file.bat
is ok
Note that "xxx" specifies the title to display in the command prompt window
title bar.
see also bug #32449
Thank you.
Guy
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29253
Bug #: 29253
Summary: unable to install condition zero
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bhaaradwaaj(a)gmail.com
Classification: Unclassified
i was unable to install condition zero on my linux ubuntu 11.10. please find
the attachment which is having the log of the 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=14102
Summary: Winetest sometimes doesn't restore taskbar to proper
size
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt/wi
netest-latest.exe
OS/Version: Windows XP
Status: UNCONFIRMED
Keywords: download, source
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=14324)
--> (http://bugs.winehq.org/attachment.cgi?id=14324)
Screenshots
When running winetest on my Windows XP box, winetest sometimes doesn't properly
restore the taskbar to it's proper size. I run it on the bottom at double
height and locked. After running the test, it will sometimes be at single
height, yet still locked. Not a big deal, but still annoying...
Screenshots 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=29203
Bug #: 29203
Summary: error configuring audio
Product: Wine
Version: 1.1.44
Platform: ppc32
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alfrodenas(a)yahoo.es
Classification: Unclassified
The confg window gets frozen while trying to configure audio and give an error.
I can not use any audio program in a Mac Pro with Lepard
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23597
Summary: Installer says "this is not a valid copy of Pinball
Mania"
Product: Wine
Version: 1.2-rc6
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 Pinball Mania for Windows by 21st Century Entertainment. I
tested with the version on a Softkey compilation CD-ROM, "Entertainment Pack
Volume III".
In Wine, on running setup.exe a couple of dialog boxes appear, one to confirm
the destination drive, the second to confirm the amount of free space. On
dismissing those, a third dialog box appears, saying "This is not a valid copy
of Pinball Mania!". After showing another dialog box the installer exits.
The CD-ROM is very unlikely to be copy-protected.
The only console output (which appears before the first dialog box, so is
probably not relevant) is:
err:ddeml:WDML_CreateString Unknown code page 850
err:int21:INT21_Ioctl_Block int21: unknown/not implemented parameters:
int21: AX 440d, BX 0003, CX 0873, DX 0000, SI 0000, DI 0106, DS 1001, ES 1001
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22086
Summary: Roller Coaster Tycoon - Game Folding Up
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=400
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey_y_k(a)yahoo.com
- When you double click on top to make the game fold up, when you unfold you
can't scroll with keyboard anymore.
*You can use the keyboard to scroll again by clicking on the Floppy
Disk in the Top Bar => Options => Change Screen Resolution to any setting. This
just refreshes the games screen, but keeps it window mode no matter what
resolution you change it to. After this, you can scroll with keyboard 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=10832
Summary: Dark Age of Camelot has page fault exception if
pixelshaders are enabled
Product: Wine
Version: 0.9.51.
Platform: PC-x86-64
URL: http://daoc.goa.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gerry(a)linuxgl.ch
To use the new character models in daoc, pixelshaders need to be enabled. If
they are, a page fault exception occurs as soon as the first character gets
drawn (character selection screen). If I skip the character selection screen,
the same pagefault occurs at a different position in the game. (I have only
uploaded the logs for the selectionscreen version). Pixelshaders have never
worked in this game, but they become more important with every release.
--
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=31241
Bug #: 31241
Summary: Wine does not run on Ubuntu 12.10 --crashes on initial
load
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdoebbler(a)gmail.com
Classification: Unclassified
Created attachment 41036
--> http://bugs.winehq.org/attachment.cgi?id=41036
Bug report generated by wine 1.5
Downloaded Wine 1.4 tried to run on Ubuntu Release 12.04 (precise) 32-bit
(Kernel Linux 3.2.0-27-generic-pae with GNOME 3.4.1) but it does not run
instead gives error message. Then tried Wine 1.5, but get same error (see
attached error message).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24636
Summary: Word 2007: crash when scrolling large file
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=31134)
--> (http://bugs.winehq.org/attachment.cgi?id=31134)
crash terminal log
Ubuntu 10.04.
Crash when scrolling a large file, opened from a usb stick
Terminal log attached
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19979
Summary: HOI3 - Map Properly initialised...
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wawalkenhorst(a)gmail.com
Created an attachment (id=23506)
--> (http://bugs.winehq.org/attachment.cgi?id=23506)
Log with howto setting except OffscreenRenderingMode = backbuffer
I've installed hoi3 as described in this howto
(http://forum.paradoxplaza.com/forum/showthread.php?t=425470).
After the startup tells me "Map Properly Initialised..." the programm crashes.
I've using openSuSE, Wine 1.1.29, GeForce 7900GS with 256MB and nVidia driver
185.18.36.
I've tried to set
OffscreenRenderingMode = backbuffer, fbo and pbuffer
PixelShaderMode = enabled
But he behavior didn't 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=16680
Summary: Game Hearts of Iron 2 crashes randomly
Product: Wine
Version: 1.1.11
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pawel.stolowski(a)wp.pl
Created an attachment (id=18323)
--> (http://bugs.winehq.org/attachment.cgi?id=18323)
Crash messages (run the game two times)
The game Hearts of Iron 2 platinum release (contains "Doomsday" and
"Armageddon" addons) crashes randomly. It happens mostly when zooming the map
in/out and scrolling it, but it also happens spontaneously if you just leave
the game running for a few minutes. I can easily reproduce the problem with
"Barbarossa" scenario (playing German forces) - just zoom in/out & scroll the
map a lot as soon as the game starts, until it crashes.
It always crashes with similar output, just register contents differ - see
attachment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30094
Bug #: 30094
Summary: new samsung pc studio related problem
Product: WineHQ Bugzilla
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: parshantkumar6715(a)gmail.com
Classification: Unclassified
I installed Samsung new PC studio (version 1.5.1.10064_2), downloaded from
samsung.com, using wine in Ubuntu 11.10. After installation, program couldn't
run & showing the message "file not found". But in windows xp, this program is
running well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26002
Summary: Magicka's particle effects get mixed up
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: H3g3m0n(a)gmail.com
Created an attachment (id=33152)
--> (http://bugs.winehq.org/attachment.cgi?id=33152)
Screenshot
The textures on the particles get mixed up.
For example casting thunder when there is a fire on the screen causes the smoke
to turn into the electric texture (screenshot attached).
Torches on the walls cause fire in the frostbeam. Dripping water effect can
look like person is on fire. leaves in the forest are random things.
Another person in the appdb entry reports no particles rendering for them
I am on a Nvidia 260GTX, using the proprietary drivers (260.19.06).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23831
Summary: Can't launch Peggle Nights from steam
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)alexrock.com
Created an attachment (id=29913)
--> (http://bugs.winehq.org/attachment.cgi?id=29913)
Log from when peggle was run
Tried to launch Peggle Nights from steam and it failed to run. Got a "Program
Error" dialog from 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=22084
Summary: Ride Invisibility
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=400
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey_y_k(a)yahoo.com
When you select "Invisible Rides" not all rides go invisible
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30902
Bug #: 30902
Summary: Arcania: Gothic 4 fails to start (hangs on startup)
Product: Wine
Version: 1.5.6
Platform: x86
URL: http://www.gamershell.com/download_63874.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 40514
--> http://bugs.winehq.org/attachment.cgi?id=40514
plain terminal output
Both the demo version and the full version of the game hang after starting,
without displaying anything. The Arcania.exe process is just sitting there,
seems to idling (1-3% CPU usage).
Terminal output doesn't reveal much about what's going on. There are messages
from the game engine, always ending with the line 'Baked PC'.
It doesn't matter if I let the installer install the required components
(DirectX, Physx, VC++), or I install them via winetricks (with latest Wine
version the game needs Physx and Xact audio libraries).
I also tried the followings to no avail:
- different Wine profiles (XP/Vista/Seven)
- newer version of Physx, downloaded from Nvidia
- forcing the game to run only on 1 core (taskset -c 0)
- installing Windows Media Player 10 (videos, including intros are stored in
wmv format)
Some of the testers in AppDB agree that the problem must be due to the
copy-protection used by the game (Securom). I'm not sure about that.
I tested with the Gamersgate version of the game.
- the original version (without patches) contains Securom 8.1.8 (release date
check + hardware based DRM). Activating Gothic 4 with this particular Securom
version worked under Wine 1.5.6, but the game hung afterwards.
- the first patch for the game changes DRM to the less restrictive Securom
7.42.xx. Applying this patch didn't change the behaviour, the game hangs after
starting.
- the latest official patch for the game removes Securom (actually it is still
there, but they made it inert). The same problem exists with this patch as
well.
- I also have the standalone expansion for Gothic 4 (ArcaniA: Fall of
Setarrif), which is completely DRM free. It behaves in the same way as the
original game with Securom.
The problem can be reproduced with the demo version as well (~1.7 GB download
size). The demo indeed contains Securom.
The attached log file was created by starting the expansion, just because it is
DRM free.
Although terminal output always ends with the 'Baked PC' message, using
+loaddll revealed that Physx dlls were loaded afterwards.
Fedora 17 x86
Kernel 3.4.0-1.fc17.i686.PAE
Nvidia 250 / driver 295.59
X.Org X Server 1.12.2
gcc version 4.7.0 20120507 (Red Hat 4.7.0-5) (GCC)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25304
Summary: Hello Kitty Online can't install flash ingame via
activex control on the displayed Adobe flash install
page
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shannon.vanwagner(a)gmail.com
Hello Kitty Online needs flash for the ingame intro-tutorial and for the
mini-games from the boas but when it redirects you to the Adobe flash install
page, the activex controls to install flash don't 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=25363
Summary: Photoshop CS4 Freezes on start while reading
preferences
Product: Wine
Version: 1.3.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chemacg(a)gmail.com
After the update to version 1.3.7 Photoshop doesn't start, it freezes on the
reading window while "Reading preferences..." and showing this in console as
the last line:
err:twain:twain_add_onedriver Source->(DG_CONTROL,DAT_IDENTITY,MSG_GET) failed!
After downgrading to 1.3.6 it works again.
When version 1.3.8 is available for my distribution i'll try 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=24409
Summary: MaxIM DL 5 reports an error when opening files
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://www.cyanogen.com/maxim_main.php
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=30770)
--> (http://bugs.winehq.org/attachment.cgi?id=30770)
Wine 1.3.2 +file (1.9 MB)
MaxIM DL 5 reports an error when opening any kind of file: "Failed to create
empty document."
There is nothing printed in the console and I have no idea where the software
is trying to create this "empty document". Works fine under Windows XP.
A demo is available for download with a trial license.
The sample file in the trace is ajn-001bias.fit.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28498
Summary: Error message when attempting to install
S.T.A.L.K.E.R. - Shadow of Chernobyl
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: dracul666_81(a)hotmail.com
Im doing, wine /media/STALKER/setup.exe . The choose installer language window
pops up, after choosing language this error window pops up "Error, Runtime
Error (at 71:13299): Floating point division by zero." After clicking ok on
that, the installer dies. This is terminal output:
nicklas@nicklas-K72DR ~ $ wine /media/STALKER/setup.exe
fixme:system:SetProcessDPIAware stub!
fixme:system:SetProcessDPIAware stub!
fixme:win:DisableProcessWindowsGhosting : stub
Thing is, I have played this game a few months ago, it worked back then, both
when i installed it with wine and also with playonlinux.
Screenshot: http://www.dumpt.com/img/viewer.php?file=nqnfizl4h2sd056a33tu.png
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27926
Summary: "#msgctxt#directory#Desktop" used as name for the
desktop folder
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralfjung-e(a)gmx.de
Created an attachment (id=35726)
--> (http://bugs.winehq.org/attachment.cgi?id=35726)
Temporary fix for the issue
Wine is using "#msgctxt#directory#Desktop" as name for the Desktop folder on my
system, resulting in folders with that name being created in the "public" and
my own user profile.
I attached a patch which temporarily fixes the issue for me.
However, I suspect this is related to the problem that I am compiling wine
myself on a 64bit Debian testing, where 32bit gettext libraries are not
currently available, so wine runs without gettext. Since this is an optional
dependency, things should still work properly though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32874
Bug #: 32874
Summary: Wine can't install MSOffice 2003
Product: Wine
Version: 1.4
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d3553(a)hotmail.com
Classification: Unclassified
I tried installing MSOffice 2003 (PRO?) with wine under easypeasy. No luck. No
reason given why it can't do it either. Wine just starts, then quits due to "an
error".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26536
Summary: strftime using wrong locale
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diafero(a)arcor.de
strftime is using the wrong locale in two applications for me (could not find
any others using this function): In the game "Uru" by Cyan, and in the "Vault
Manager" Cyan published years ago to manage your own Uru servers. In both
cases, when I start the applications on a German Windows system, they use the
English locale for strftime, so I get times like "10:23 AM" (I Know it's
definitely strftime for Uru since that string is created by the Python part of
the game, and the line in the source code says timestr =
time.strftime('%m/%d/%Y %I:%M %p', currenttime)).
If however I start these applications on my German Kubuntu, the "AM" just
vanishes, so I can not even tell whether this is 10:23 or 22:23. In addition,
the "Vault Manager" also displays abbreviations of month names, and in case of
"Mär" (for März = March), it has trouble with the special character: It says
"Mär".
In both cases, starting wine with LC_ALL=C fixes the issues.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24463
Summary: Ligatures in certain fonts mess up centered text, look
out of place
Product: Wine
Version: 1.3.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gibmirspam(a)gmail.com
Created an attachment (id=30865)
--> (http://bugs.winehq.org/attachment.cgi?id=30865)
Screenshot with an example of the bug
I've noticed this bug in Foobar2000 with the font Tahoma, but it possibly
affects other applications as well.
I'm using a plugin that displays song lyrics. Now, for certain combinations of
characters (such as "fl" or "fi"), the program uses ligatures instead of the
individual characters. In every line with a ligature, the text is aligned to
the left instead of the middle. Furthermore, the ligature characters seem to be
from a different font set and therefore look out of place.
Other fonts such as Verdana don't use ligatures and look fine.
See screenshot for example.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22349
Summary: Altera's Quartus II SOPC Builder GUI is upside down
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: https://www.altera.com/support/software/download/alter
a_design/quartus_we/dnl-quartus_we.jsp
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andreryan908(a)gmail.com
Created an attachment (id=27349)
--> (http://bugs.winehq.org/attachment.cgi?id=27349)
7zip compressed MPEG video showing problem
The GUI renders properly when the program is first painted but as soon as you
interact with anything, the updates are drawn relative to the bottom (as though
someone mixed up Y coordinate and did Height - Y instead of plain Y).
This results in a button at the bottom of a window that when pressed and held,
the pressed graphic is drawn just below the title bar instead of where the
button actually is.
[The console dumps a bunch of warnings about D3D swap chains so it might be
DirectX related]
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31237
Bug #: 31237
Summary: libfaketime: integrate with libfaketime to allow
running a program with a fake time
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alister.hood(a)gmail.com
Classification: Unclassified
Like Wine, faketime is another lib/application that is useful for running
legacy programs, for example those which can no longer run because of the
"millenium bug". It lets you present a fake system time to a program.
It would be nice if the functionality of libfaketime could be integrated with
Wine.
The faketime executable and Wine do not cooperate well. Some programs such as
winecfg and notepad work well, but when you try to run other programs (e.g.
Excel 2007 which was one I tried) they crash, and then any subsequent programs
you try to run also crash, even programs which worked fine before running Excel
or whatever the problem program was:
# faketime '2006-09-20' winecfg
wine: Unhandled page fault on read access to 0x00000000 at address (nil)
(thread 001d), starting debugger...
Some Wine programs do actually run fine apart from outputting this error, but
others crash properly.
I reported this to the faketime developer, and this was his reply:
> Basically, libfaketime has clear limitations when it comes to programs
> that spawn child processes due to the LD_PRELOAD design. Wine probably
> starts a lot of sub-programs, and since only the parent process is tricked
> into seeing the faked time, but the spawned child processes get access to
> the real wall clock time, this inconsistency might lead to this page fault
> crash.
>
> As of today, we have undertaken several steps to make libfaketime capable
> of supporting spawned child processes (at least on Linux), but we're not
> quite there yet. Some problems we ran into so far are still K.O. criteria,
> so I can't promise any delivery date right now.
>
> However, libfaketime can be integrated into other programs quite easily,
> so if the Wine developers would use it in their Wine source, faking the
> time for any Wine-executed program would be quite trivial and without all
> those sub-process hassles. However, I don't know whether the Wine guys
> would be interested in such an option
So, are "the Wine guys" interesting in integrating libfaketime with Wine?
FYI here's a link:
http://www.code-wizards.com/projects/libfaketime/index.html
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30958
Bug #: 30958
Summary: StarForge Alpha build: Black screen due to shader
compilation errors
Product: Wine
Version: 1.5.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: billy65bob(a)gmail.com
Classification: Unclassified
Created attachment 40619
--> http://bugs.winehq.org/attachment.cgi?id=40619
log of running the game, letting it load and then exiting - no WINEDEBUG
variable set
The StarForge guys have put out a freely available alpha build of their game.
Attempting to run it in wine with all quality settings gives me a black screen
and the console I have running in the background prints a great many errors
about shader compilation, including a multi hundred line shader dump - the log
is attached.
The user interface and the HUD can be seen.
Relevant hardware specs
GPU NVIDIA 460GT
driver: nvidia 302.17
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22629
Summary: Far Cry: segfault upon execution
Product: Wine
Version: 1.1.44
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: plr.vincent(a)gmail.com
Far Cry segfaults upon execution, almost instantaneously.
Version: as of GOG.com
How to reproduce:
- install game (recommended: "wisotool far_cry_gog", see
http://wiki.winehq.org/wisotool)
- cd "$WINEPREFIX/drive_c/Program Files/GOG.com/Far Cry"
- wine Bin32/FarCry.exe
Result (terminal output):
$ wine Bin32/FarCry.exe
Segmentation fault
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33640
Bug #: 33640
Summary: [Prefix 64Bits]Splinter Cell : Double Agent
Installation failed
Product: Wine
Version: 1.5.30
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: berillions(a)gmail.com
Classification: Unclassified
Hi,
On a 64 bits prefix, the installation of this game crash at the beginning after
to choose the language's installation.
The errors in the ouput console are (it's always the same error):
fixme:heap:HeapSetInformation 0x2c4000 0 0x23fcb0 4
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{7871bfad-dad5-402f-9007-2593e9a07532}
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
err:ole:StdMarshalImpl_ReleaseMarshalData could not map object ID to stub
manager, oxid=2600000027, oid=2
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error
0x8001011d
[...]
On the 32 bits prefix, the game is installed and works correctly.
Thanks for your help,
Max
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31234
Bug #: 31234
Summary: Trine 2 crashes on launch:
Product: Wine
Version: 1.5.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aserna3(a)gmail.com
Classification: Unclassified
I tried with Wine 1.5.8 and 1.5.2 in a fresh prefix. I used winetricks to
install d3dx9 as required.
Running Debian testing x86_64, kernel 3.4.4
screenshot of error msg thrown here:
https://dl.dropbox.com/u/1191644/Screenshot%20from%202012-07-17%2010%3A45%3…
Relevant log files that was created.
dl.dropbox.com/u/1191644/backtrace.txtdl.dropbox.com/u/1191644/trine2_32bit.exe_27f66400.dmp
(I did not know how to attach multiple files, this page appears to only let me
attach one.)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27226
Summary: Customer Database Pro black screen
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dpha003(a)yahoo.com
Created an attachment (id=34794)
--> (http://bugs.winehq.org/attachment.cgi?id=34794)
User interface blacked out
The user interface of Customer Database pro is blacked out with the exception
of the data input boxes. Other UI options outside of data input appear as
normal with minimal to no disruption to the user.
Link to Software downlaod
http://download.cnet.com/Customer-Database-Pro/3000-18482_4-10232618.html?t…
Any help is appreciated
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27260
Summary: Freelancer: Complains about debugger on amd64 and
fails to start
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: debian(a)carbon-project.org
On amd64 Freelancer doesn't start but complains, that a debugger has been
detected and instructs one to unload the debugger an restart Freelancer.
Playing the game with the same Wine version on i386 works. Judging from a post
at [0] from 2008 by Andreas Lausch this problem has existed for some time, thus
I didn't try to find a "good" version for bisecting on amd64. Please let me
know, if there is any patch/test I should run for you or some debugging channel
you need.
Please note, that I'm seeing this bug with a stock Freelancer (no matter
whether it's patched to 1.1 or not). It seems like some mods enable playing of
Freelancer on amd64 (e.g. [1] is a recent report for amd64 with a mod).
[0]
<http://appdb.winehq.org/objectManager.php?sClass=version&iId=2504#Comment-3…>
[1]
<http://appdb.winehq.org/objectManager.php?sClass=version&iId=2504&iTestingI…>
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30297
Bug #: 30297
Summary: Sikuil IDE doesn't start up
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
wine-1.5.0-147-g4c6a198
1. Download jre-6u31-windows-i586-s.exe :
http://java.com/en/download/manual.jsp
2. Download portable version of Sikuli:
https://launchpadlibrarian.net/79944128/Sikuli-X-1.0rc3%20%28r905%29-win32.…
3. Install jre
4. Start Sikuli:
$ wine Sikuli-IDE.exe
fixme:win:EnumDisplayDevicesW ((null),0,0x37ddd04,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x37ddd04,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x37ddaa0,0x00000000), stub!
fixme:font:freetype_SelectFont Untranslated charset 255
[info] locale: en_US
The IDE doesn't start, only print above message.
wine start Sikuli-IDE.bat
fixme:exec:SHELL_execute flags ignored: 0x00000100
Also doesn't work.
However, wine Sikuli-IDE.exe -h works:
$ wine Sikuli-IDE.exe -h
fracting@fracting-redhat:~/Wine/sikuli/Sikuli-X-1.0rc3 (r905)-win32/Sikuli-IDE$
fixme:win:EnumDisplayDevicesW ((null),0,0x37ddd04,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x37ddd04,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x37ddaa0,0x00000000), stub!
usage: Sikuli-IDE [--args <arguments>] [-h] [-r <sikuli-file>] [-s] [-t
<sikuli-test-case>]
--args <arguments> specify the arguments passed to Jython's
sys.argv
-h,--help print this help message
-r,--run <sikuli-file> run .sikuli or .skl file
-s,--stderr print runtime errors to stderr instead of
popping up a message box
-t,--test <sikuli-test-case> run .sikuli as a unit test case with
junit's text UI runner
Also, the -r arguments work as well
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25220
Summary: Black Prophecy Heads and Faces are not drawn
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Manuel.Bihl(a)gmx.de
The Heads in Black Prophecy doesn't show, you can see straigh through them, and
see the hair behind them.
All Utilities are drawn around where the head should be, it's just not there.
It happens on char-edit-screen, select-char-screen and on any transmission
ingame.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20675
Summary: Excel 2007 Analysis Services -- no network activity at
all
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: imirkin(a)alum.mit.edu
I'm running into an issue with the Analysis Services module (aka OLAP) in Excel
2007.
It presents me with a screen that asks for the server name (and asks for auth
types), and then proceeds to fail-fast to a generic error:
"""
Unable to connect to data source. Reason: Unable to locate database server.
Verify that the database server name you entered is correct, or contact the
database administrator for help.
"""
However doing a network trace, no packets ever go out the external interface.
Relevant bits from +relay,trace+reg (note that I added an extra TRACE to
RegQueryValueW that prints out the data that it returns):
"""
0009:Call advapi32.RegQueryValueW(80000000,0032d3bc
L"MSOLAP\\Clsid",0032d3bc,00
32d3b8) ret=326c46e5
trace:reg:RegQueryValueW (0x80000000,L"MSOLAP\\Clsid",0x32d3bc,512)
trace:reg:NtOpenKey (0x13c,L"MSOLAP\\Clsid",f003f,0x32d2f8)
trace:reg:NtOpenKey <- 0x28c
trace:reg:RegQueryValueExW (0x28c,(null),(nil),(nil),0x32d3bc,0x32d3b8=512)
trace:reg:NtQueryValueKey (0x28c,(null),2,0x32d1a0,256)
trace:reg:RegQueryValueW L"{176941F9-18E8-47D6-860D-006FF2655608}"
0009:Ret advapi32.RegQueryValueW() retval=00000000 ret=326c46e5
0009:Call KERNEL32.FindResourceA(01560000,00000006,000000d9) ret=326155f6
0009:Ret KERNEL32.FindResourceA() retval=0156dd80 ret=326155f6
0009:Call KERNEL32.LoadResource(01560000,0156dd80) ret=32615606
0009:Ret KERNEL32.LoadResource() retval=0158a6f8 ret=32615606
0009:Call KERNEL32.LockResource(0158a6f8) ret=32615615
0009:Ret KERNEL32.LockResource() retval=0158a6f8 ret=32615615
0009:Call KERNEL32.TlsGetValue(00000007) ret=3260568c
0009:Ret KERNEL32.TlsGetValue() retval=00620000 ret=3260568c
0009:Call KERNEL32.TlsGetValue(00000007) ret=3260568c
0009:Ret KERNEL32.TlsGetValue() retval=00620000 ret=3260568c
0009:Call advapi32.RegOpenKeyExW(80000001,00630024
L"Software\\Policies\\Microsoft\\Office\\12.0\\Common\\Alerts",00000000,0002001f,003240c0)
ret=3260556d
"""
And then it goes on to generate the alert. So for some reason it totally fails
and doesn't even try to do anything after looking up the registry key.
FWIW, here are a few entries from system.reg:
"""
[Software\\Classes\\MSOLAP\\Clsid] 1237579662
@="{176941F9-18E8-47D6-860D-006FF2655608}"
[Software\\Classes\\CLSID\\{176941F9-18E8-47D6-860D-006FF2655608}] 1237579662
@="MSOLAP"
[Software\\Classes\\CLSID\\{176941F9-18E8-47D6-860D-006FF2655608}\\InprocServer32]
1237579662
@="C:\\Program Files\\Common Files\\System\\ole db\\msolap90.dll"
"ThreadingModel"="Both"
"""
I do not see the string "176941F9-18E8-47D6-860D-006FF2655608" anywhere in the
trace logs, except as the return value to RegQueryValueW. (But I don't know a
whole lot about Windows, perhaps that's to be expected.)
I'm happy to do more debugging here, so any ideas appreciated. I don't appear
to have any DLL overrides.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26019
Summary: Aion: face disappears when customizing character
Product: Wine
Version: 1.3.13
Platform: x86
URL: http://na.aiononline.com/
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=33184)
--> (http://bugs.winehq.org/attachment.cgi?id=33184)
bad screenshot
To reproduce:
1. Install Aion, start game
2. Log in
3. Click "Create" in order to enter character creation (any class type)
4. Select Race (any race)
5. Click the Advanced tab on the right
6. Move sliders from side to side
7. Observe the graphics for character's face flicker/disappear while the slider
is being moved.
screenshot attached.
Tested in wine-1.3.13. Doesn't occur on win7.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25902
Summary: Wine builtin IE crash while login to
https://www.alipay.com/
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. Download aliedit.exe from
https://download.alipay.com/aliedit/aliedit/2401/aliedit.exe
2. Install the aliedit ActiveX Control.
$ wine aliedit.exe
fixme:win:DisableProcessWindowsGhosting : stub
fixme:sfc:SfcIsFileProtected ((nil),
L"C:\\windows\\system32\\aliedit\\unins000.exe") stub
fixme:mountmgr:harddisk_ioctl unsupported ioctl 74080
3. Open the login page
$ wine iexplore https://www.alipay.com
then,
1) the "login"/"登录" button won't display . ( Tested ether with or
without aliedit.exe installed )
2) the "password"/"密码" form sometimes display but sometimes doesn't
display . ( Without aliedit installed, the "password" form will never
display )
3) after typed username and password and login, IE maybe crash or not,
if not , it will display and error page.
Here is the log while IE crash:
Attachment : Log: IE crash
and the log while IE doesn't crash:
Attachment : Log: IE not crash
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=23337
Summary: AoW Shadow Magic: Uninstalling in WINE cause freeze
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: felipemoraesbr(a)gmail.com
Age of Wonders shadow magic says something like "could not open AVI", but what
that has to do with an uninstall? Both the WINE uninstall window and AoW SM
window freezes then.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33595
Bug #: 33595
Summary: wine PDF-XChange crash when saving file or find text
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jinleileiking(a)gmail.com
Classification: Unclassified
wine PDF-XChange crash when saving file or find text
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30446
Bug #: 30446
Summary: EasyCut XP installs but crashes when loaded
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: willeknille(a)web.de
Classification: Unclassified
Created attachment 39804
--> http://bugs.winehq.org/attachment.cgi?id=39804
Backtrace of EasyCutXP failing to boot in Wine
EasyCutXP is a radio editing software written for Windows XP. In XP it works
flawlessly but trying to load it in Wine (both 1.4 and 1.5 beta, on 32 bit as
well as on 64 bit hardware using Ubuntu 11.10) doesn't work. A window opens
saying fatal program error. As of my understanding of the backtrace report, it
might have to do with ntdll. Any 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=25768
Summary: Intel App Store doesn't run in wine
Product: Wine
Version: 1.3.11
Platform: x86
URL: http://www.appup.com/applications/applications-Angry+B
irds
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
So apparently Angry Birds is available for PC, if you use Intel's new App Store
thing:
http://www.appup.com/applications/applications-Angry+Birds
$ wget
http://downloadmirror.intel.com/19332/eng/IntelAppUpcenter-windows-installe…
$ wine IntelAppUpcenter-windows-installer.exe
installs fine.
running it though, fails, saying it needs mono/dotnet. If you install mono28
with winetricks, still fails:
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"appSettings" in
state 1
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element
L"system.diagnostics" in state 1
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"trace" in state
3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"listeners" in
state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"system.web" in
state 1
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"membership" in
state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"providers" in
state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"roleManager" in
state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"providers" in
state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 3
Could not load file or assembly 'PresentationFramework, Version=3.0.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.
The entry point method could not be loaded
so, I tried dotnet30. It then wants dotnet35:
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or
assembly 'System.Core, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089' or one of its dependencies. Exception from
HRESULT: 0x80070002
File name: 'System.Core, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089'
giving it dotnet35 gets it still further, but not enough:
fixme:psapi:GetProcessImageFileNameA (0x27c, 0x3918768, 260) stub
fixme:exec:SHELL_execute flags ignored: 0x00000100
Another instance of this application is already running
Aborting...
then it just repeats this until you wineserver -k it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26562
Summary: Assassin's Creed: Brotherhood jerky, has lip synch
problems
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The game installs ok from dvd, and even plays, but
it suffers from a lot of jerkiness and lip synch problems.
http://www.youtube.com/watch?v=ma4AIinaS3k shows how the
opening bits should look (that video seems to be a console, but
gameplay appears identical).
The "matrix" scenes and when your character walks into the second
room (the arena with the falling floor) are very jerky, rather
like how mass effect 2 was slow on first use of shaders.
And the lips of the two guys struggling with a dagger,
and your character talking to the hologram of Princess Leia,
both seem to be out of synch with the sound. There was a jerkiness
during that last bit for me, and it seemed the sound kept going
but the animation dropped out of sync by just exactly the duration of
the jerk.
Rumor has it that disabling glsl might help, but I haven't been able to
verify that yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31773
Bug #: 31773
Summary: Torchlight 2 shadows are rendered incorrectly on some
areas
Product: Wine
Version: 1.5.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ape(a)ape3000.com
Classification: Unclassified
Torchlight 2 shadows are renderer incorrectly on some areas. As a workaround
disabling shadows works fine everywhere. On certain areas the shadows at very
high setting are working well, but on other areas they look really bad.
There's a screenshot about the bug attached.
This bug has been reported to occur at least as early version as 1.5.0, but I
tested this with 1.5.13. I was using NVIDIA binary drivers.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28888
Bug #: 28888
Summary: Alt-tabbing from windowed Kanon makes it think alt is
held down
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: winebugzilla.kyoo(a)xoxy.net
Classification: Unclassified
- Run Kanon http://appdb.winehq.org/objectManager.php?sClass=version&iId=12764
and set it to use windowed mode. Run another program (Firefox, audacious, etc.
Linux version. Not covering the Kanon window.)
- While Kanon is focused, alt-tab to switch to the other program.
- Click in Kanon's window, or the title bar.
- Find you can't left click to advance dialog any more (you can still
right-click for menus). Find that instead of advancing dialog, enter switches
between full screen and windowed.
- Switch to the other program, then alt-tab back to Kanon.
- Find the problem is fixed.
Other info: I'm using XFCE4 with metacity-2.34.1.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14752
Summary: Blood 2 (v. 2.1): mouse input not working
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
CC: vitaliy(a)kievinfo.com
Mouse input with Blood 2 patched to latest version 2.1.233 does not work.
I tested it both with native dinput, dinput8 dlls and builtin variants.
Went back to wine-0.9.25 and still the same issue. So no regression I fear :(
This problem doesn't seem to be releated to the input issues with the B2 demo,
and therefore can't be reproduced there.
Adding Vitaliy Margolen to CC since it is very likely a dinput bug.
Greets,
Tobias
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26860
Summary: Tomb Raider Underworld crashes on startup
Product: Wine
Version: 1.3.18
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: littlesincanada(a)yahoo.co.uk
Created an attachment (id=34239)
--> (http://bugs.winehq.org/attachment.cgi?id=34239)
Trace file
Tomb Raider - Underworld crashes on startup.
This is a regression as it used to run fine.
May or may not be related to #26356 which it also currently suffers from.
Wine compiled from git as of wine-1.3.18-85-g99f6894
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27925
Summary: IBExpert cease work from 1.3.25
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkurt(a)ua.fm
IBExpert (
http://appdb.winehq.org/objectManager.php?sClass=version&iId=9049&iTestingI…
) not running from 1.3.25 release on ubuntu 10.04.
See dump.log and run.log in archive with IBExpert for details.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25924
Summary: UltraNitroRacers: Graphics garbled
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: gaming4jc2(a)yahoo.com
Created an attachment (id=33042)
--> (http://bugs.winehq.org/attachment.cgi?id=33042)
Terminal output
This bug occurs once the game has been fed native quartz and d3dx9 for good
measure. The game will attempt to play (you can hear buttons, cars, etc.) but
the screen will be white with occasional flickering of random... textures?
Attached is log.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18763
Summary: Program error window for DVD Profiler (with no obvious
error)
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.invelos.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stuart(a)houseofanime.org
Created an attachment (id=21519)
--> (http://bugs.winehq.org/attachment.cgi?id=21519)
...encountered a serious problem and needs to close
With the latest release (1.1.22) I'm getting the attached message when running
DVD Profiler, yet it does not appear to affect the operation of the application
in any way.
The operation of the program under wine does not appear to have altered for the
last many wine releases, and has never got worse as far as I can recall (i.e.
any changes have improved functionality / performance).
One might speculate that this is enhanced error handling reporting an existing
error (of which there are several attached to the program), but I have no idea
which one.
The error appear immediately after running the exe, so is very early in the
somewhat long start up for the 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=15868
Summary: Tomb Raider underworld demo big troubles
Product: Wine
Version: 1.1.5
Platform: Other
URL: http://forums.eidosgames.com/showthread.php?t=81768
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: netfab(a)gmail.com
Created an attachment (id=17007)
--> (http://bugs.winehq.org/attachment.cgi?id=17007)
wine tru.exe
Hi,
I tried to run the demo of Tomb Raider Underworld with Wine 1.1.5 :)
The game menu is fine, but when I try to launch the demo level, I have big
troubles (black screen, artefacts), seems to be related with d3d.
I must hit CTRL + C to abort, wine doesn't crash.
I attach the full log compressed with bzip2 (18 Mo unpacked).
The demo can be downloaded from URL.
Just an example :
fixme:d3d_draw:drawStridedFast >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION (0x502)
from glDrawElements @ drawprim.c / 261
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=24849
Summary: toolbar buttons in .chm file viewer are not working
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: test051102(a)hotmail.com
There are still problems displaying simple .chm files under Wine. The toolbar
buttons are now shown correctly. But when using the test.chm file from bug
23622 the forward/ back buttons 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=15808
Summary: wine's system tray should not wake the cpu when idle
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Currently, the Wine system tray polls every 2 seconds for icons whose owner
window has been destroyed. Wine should detect the missing windows without
polling or, if that's not possible, only poll when there are icons in the
systray.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18394
Summary: Touhou 9 - Phantasmagoria of Flower View, patching from
1.00 to 1.50a breaks the game
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: impfx(a)hotmail.de
Playing the version 1.00 was flawless, except already reported bug 10408, and
that the keyboard layout was changed from my default.
Using the patch available at
http://www16.big.or.jp/~zun/data/soft/th09_ver150a.lzh and properly patching
it, resulted in the game not working anymore.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26641
Summary: CivCity Rome 1.1: text and graphics missing
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: le.berred(a)free.fr
After installing CivCity Rome 1.1 (French version) on a recent version of Wine
(1.3.14, but also on 1.3.15 and 1.2.2), using winetricks corefonts to solve the
missing text in menus, it is impossible to play to that game.
Some details are missing (text and graphics AFAIK, see attached screenshot).
It looks like those display problems correspond to the following error
messages:
fixme:d3d:debug_d3dformat Unrecognized 909201952 (as fourcc: R16)
WINED3DFORMAT!
fixme:d3d:getFormatDescEntry Can't find format unrecognized(909201952) in the
format lookup table
fixme:d3d:debug_d3dformat Unrecognized 909200449 (as fourcc: AL16)
WINED3DFORMAT!
fixme:d3d:getFormatDescEntry Can't find format unrecognized(909200449) in the
format lookup table
I tried that game on two different computers, one with an NVIDIA 8600GT and the
other one with an Intel integrated card (X4500HD). The very same problem occurs
on both.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31025
Bug #: 31025
Summary: vbscript parse error
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
wine iexplore http://www.w3schools.com/vbscript/tryit.asp?filename=vbdemo_array
fixme:vbscript:parse_script parser failed on parsing L"5)\nfamname(0)=\"Jan
Egil\"\nfamname(1)=\"Tove\"\nfamname(2)=\"Hege\"\nfamname(3)=\"Stale\"\nfamname(4)=\"Kai
Jim\"\nfamname(5)=\"Borge\"\nFor i=0 To 5\n document.write(famname(i) & \"<br
/>\")\nNext\n"
workaround winetricks wsh57
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21561
Summary: Frontpage 2003 crashes when adding URL or exiting the
program
Product: Wine
Version: 1.1.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spammaster(a)madtracker.net
Created an attachment (id=25981)
--> (http://bugs.winehq.org/attachment.cgi?id=25981)
console output for frontpage
When adding a URL into the design screen in frontpage 2003 or closing the
program invokes a crash.
I have attached the console output.
The bug is reproducible on fresh wineprefixes as well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9853
Summary: Splinter Cell: CT crashes with an unahanfled exception
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: register(a)goodoldalex.net
Created an attachment (id=8329)
--> (http://bugs.winehq.org/attachment.cgi?id=8329)
Wine console log
Splinter Cell: Chaos Theory 1.05 crashes with an "Unhandled exception: page
fault (...)" right on startup.
This affects the cracked version. Originally, SCCT is procted by StarForce
which doesn't allow the game to run at all. Only affects single player
(multiplayer has a different executale, which kinda works).
Sorry if this happens to be a dupe, but I can't know whether other reported
Unhandled exceptions are related to this.
--
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=24960
Summary: BioEdit crashes with "setup_exception_record stack
overflow"
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: f.pinamartins(a)gmail.com
Created an attachment (id=31609)
--> (http://bugs.winehq.org/attachment.cgi?id=31609)
Example large datafile
BioEdit installs and runs fine, but freezes when you try to load a datafile.
Steps to reproduce:
Download and install BioEdit (http://www.mbio.ncsu.edu/BioEdit/bioedit.html);
Run BioEdit;
Open a large datafile (example datafile in attachment - "large_data.fas");
The only error message in the console is:
err:seh:setup_exception_record stack overflow 1532 bytes in thread 0020 eip
7bc3e5aa esp 00230d34 stack 0x230000-0x231000-0x330000
Ctrl+c kills the program.
This does not happen if a smaller file is loaded (example in attachment -
"small_data.fas").
Note: This example is not a particularly large datafile. I just called it large
to distinguish the two examples.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17037
Summary: Wine does not recognise empty DVD-ROMs
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
URL: http://www.invelos.com/Downloads.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stuart(a)houseofanime.org
For app DVD Profiler
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=14707), the
behaviour of drive detection is different under Windows and Wine.
Under Windows, the user can set the system's DVD-ROM drive under 'Tools,
options, system' regardless of whether there is a disc in the drive or not.
Under Wine, the DVD-ROM drive is not available for selection unless there is a
disc in the DVD drive.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32734
Bug #: 32734
Summary: Caesar IV crashes at launch
Product: Wine
Version: 1.5.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: testing.tigerwolf(a)mail.com
Classification: Unclassified
Created attachment 43194
--> http://bugs.winehq.org/attachment.cgi?id=43194
initialization and dll import problems at CaesarIV.exe execution
Caesar IV installation seems to have gone well.
But launching the game by calling CaesarIV.exe fails due to initialization and
dll import problems (cf. caesarIV_exe_backtrace).
Launching Caesar IV using Autorun.exe leads to a crash (cf.
autorun_exe_backtrace)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20068
Summary: Monster Jam: No textures
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johan.palmqvist(a)home.se
Created an attachment (id=23626)
--> (http://bugs.winehq.org/attachment.cgi?id=23626)
In-game screenshot
The textures in Monster Jam (2007 version) are not visible. Most objects
in-game are solid white/grey/brown (see screenshot attachment).
Wine continuously prints "fixme:d3d9:Direct3DShaderValidatorCreate9 stub" while
playing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=31347
Bug #: 31347
Summary: Windows Performance Toolkit "xperf.exe" tool for
Windows on ARM (WoA) needs
KERNEL32.dll.ResolveDelayLoadedAPI
Product: Wine
Version: 1.5.9
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
the "Windows Assessment and Deployment Kit (ADK) for Windows 8 Preview"
contains "Windows Performance Toolkit" that has an MSI installer for ARM = more
toys to play with ;-)
Probably also present in the x86 and x64 version of the toolkit (targeting
Windows 8) but ARM is currently more interesting for me ;-)
--- snip ---
$ pwd
/home/linaro/.wine/drive_c/Windows Kits/8.0/Windows Performance Toolkit
$ wine ./xperf.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
wine: Call from 0x4042c7fc to unimplemented function
KERNEL32.dll.ResolveDelayLoadedAPI, aborting
wine: Unimplemented function KERNEL32.dll.ResolveDelayLoadedAPI called at
address 0x4042c7fc (thread 0009), starting debugger...
Unhandled exception: unimplemented function KERNEL32.dll.ResolveDelayLoadedAPI
called in 32-bit code (0x4042c7fc).
Register dump:
ARM User Mode
Pc:4042c7fc Sp:40d5fbe8 Lr:4042c7fc Cpsr:600f0010(-ZC-)
r0:40d5fbf4 r1:430fc4 r2:42ac23 r3:40d5fbf4
r4:42d6a0 r5:42d8d4 r6:408f4380 r7:40d5fce0 r8:0001
r9:401268 r10:400a6000 Fp:40d5fc44 Ip:42f570
Stack dump:
0x40d5fbe8: 40d5fc04 40d5fc58 40d5fc04 00000043
0x40d5fbf8: 40d5fbf4 00430fc4 0042ac23 40d5fbf4
0x40d5fc08: 0042d6a0 0042d8d4 408f4380 40d5fce0
0x40d5fc18: 00000001 00401268 400a6000 40d5fc44
0x40d5fc28: 0042f570 40d5fbe8 4042c7fc 4042c7fc
0x40d5fc38: 600f0010 40488298 40d5fcac 403f4910
Backtrace:
=>0 0x4042c7fc RtlRaiseException+0x1c(rec=0x40d5fc58)
[/home/linaro/projects/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll
(0x40d5fc44)
1 0x4042c7fc RtlRaiseException+0x1b(rec=0x42fc44)
[/home/linaro/projects/wine/wine-git/dlls/ntdll/signal_arm.c:928] in ntdll
(0x40d5fcac)
2 0x403f4910 stub_entry_point+0x5f(dll=0x0(nil), name=*** invalid address 0x1
***, ret_addr=0x80000100)
[/home/linaro/projects/wine/wine-git/dlls/ntdll/loader.c:197] in ntdll
(0x40d5fcb8)
3 0x0042ac23 in xperf (+0x2ac22) (0x00000000)
4 0x40d5fdb8 (0x00000000)
0x4042c7fc RtlRaiseException+0x1c
[/home/linaro/projects/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll:
ldr r3, [fp, #-16]
929 rec->ExceptionAddress = (LPVOID)context.Pc;
Modules:
Module Address Debug info Name (62 modules)
ELF 8000- 12000 Deferred <wine-loader>
PE 400000- 45e000 Export xperf
PE 10000000-10046000 Deferred perfctrl
...
process tid prio (all id:s are in hex)
00000008 (D) C:\Windows Kits\8.0\Windows Performance Toolkit\xperf.exe
00000009 0 <==
...
System information:
Wine build: wine-1.5.9-267-g8f108a0
Platform: arm
Host system: Linux
Host version: 3.2.0
--- snip ---
The API is documented in MSDN:
http://msdn.microsoft.com/en-us/library/hh829881%28v=vs.85%29.aspx (probably
part of Windows 8).
There is no documentation that tells which part of win32 API is actually
implemented/available for Windows on ARM.
The more installers/PE binaries for ARM one can find the better we know.
If you know of any ARM apps for download, targeting WoA - bring it on, I'd be
happy to have a look at ;-)
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26702
Summary: Desert Gunner crashes in the main menu
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://download.cnet.com/Baghdad-Central-Desert-Gunner
/3000-7563_4-10615037.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=34005)
--> (http://bugs.winehq.org/attachment.cgi?id=34005)
console log
The game loads up to the main menu but clicking on any of the following menu
items (Options, Play, Weapons Chart) result in a crash.
I've tried the game with fullscreen and virtual desktop mode, w/o audio. By
default the game uses OpenGL renderer. The same problem happens if I change the
renderer to D3D.
The problem exists in Wine-0.9.33, 1.0.1 etc.
To reproduce the crash in the demo:
1. Install the demo.
2. winetricks ie6
3. Launch the demo. In the main menu click on <Options>... the game will crash.
Fedora 14
Nvidia GeForce 250 / driver 260.19.36
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16121
Summary: Word 2003 Bold Face Type Bug
Product: Wine
Version: 1.1.8
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: morse.matt(a)gmail.com
Word 2003 in Wine doesn't show bold or face type properly when using Times New
Roman font. It just shows it like regular type but with the 'bold' toolbar
button depressed on the formatting toolbar. When I switched my document to
Arial Narrow font this problem seemed to disappear. It may just be an issue
with this font only. It could also be my video card playing tricks on me as
well but I'm not sure. Here are my hardware and software specs:
OS: Ubuntu 8.04 Hardy Heron
Wine version 1.1.8
Hardware: HP Pavilion dv600t laptop, NVIDIA GeForce Go 7400 graphics card,
Intel Core 2 Duo T5600 1.8ghz cpu, Intel 845GM chipset
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21400
Summary: problem with powerpoint presentation 2007 when
changing slide in normal view (pptx file with many
shapes)
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kokojojobobo(a)gmail.com
I can view the presentation in slide show without problem, but in normal view
when paging down it never displays slides 2 or 3, though the page indicator and
slide sorter show that it's on those pages.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28862
Bug #: 28862
Summary: cannot download watchtower library 2010
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennyb40(a)hotmail.com
Classification: Unclassified
I have an application from Softpedia, which purports be allow one to run
Watchtower Library on a Mac, but it does not work. After I downloaded the
Watchtower CD, when I try to run the program, I get a "encountered a serious
error" message. The error message also suggested that I report the bug to
winehq.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32970
Bug #: 32970
Summary: Installing Microsoft Fix it 50356 fails
Product: Wine
Version: 1.5.23
Platform: x86
URL: http://go.microsoft.com/?linkid=9708107
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 43548
--> http://bugs.winehq.org/attachment.cgi?id=43548
+vbscript trace
Noticed while looking at bug 32758.
fixme:vbscript:parse_script parser failed around L" Dim ary_XP_HKCU(17)\r\n
Dim ary_XP_HKLM(7)\r\n\r\n\t\r\n\t\r\n ''''''''''''''''''\r\n
ary_XP_HKCU(0) = Array(\"AppData\" , \"%USERPROFILE%\\Application Data\")\r\n
ary_XP_HKCU(1) = Array(\"Cache\" , \"%USERPROFILE%\\Local Settings\\Temporary
Internet Files\")\r\n ary_XP_HKCU(2) = A"...
native vbscript works around it.
austin@aw25 ~ $ du -h MicrosoftFixit50356.msi
856K MicrosoftFixit50356.msi
austin@aw25 ~ $ sha1sum MicrosoftFixit50356.msi
1d1251549b68584ef681e06bf7fd11846c82fadb MicrosoftFixit50356.msi
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25923
Summary: UltraNitroRacers: Fails to launch with built-in quartz
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=33041)
--> (http://bugs.winehq.org/attachment.cgi?id=33041)
Terminal output
Upon game launch it freezes at a black screen looping this message with random
numbers in the terminal:
fixme:quartz:parse_header Not a valid header
Once given native quarts it fixes one bug, only to make another... :p
Attached is log.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29691
Bug #: 29691
Summary: Installer fails to Load
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: micet2004-winehq(a)yahoo.de
Classification: Unclassified
Anno 1404 addon 2.1 update
The update installer load. After clicking the next-button the Wine is crashing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19240
Summary: Unhandled exception running latest version of Full
Tilt Poker
Product: Wine
Version: 1.1.24
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: murpe79(a)gmail.com
Created an attachment (id=22259)
--> (http://bugs.winehq.org/attachment.cgi?id=22259)
strace wine FullTiltPoker.exe (Wine 1.1.24)
A new version of Full Tilt Poker was recently pushed, and this version causes
an unhandled exception when run:
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7bc46c8d
I have tested on Ubuntu Jaunty (64-bit) with Wine 1.0.1 from Ubuntu and also
Wine 1.1.24 from WineHQ. Comments from "ray" in the AppDB indicate this is not
distribution or version specific. I have not been able to verify that this
version of FTP works in Windows, but I assume that is the case.
Attached is an strace with Wine version 1.1.24
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17619
Summary: GetDriveTypeW says C: is a network share if /home is an
NFS share, breaking Steam installer
Product: Wine
Version: 1.1.16
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lordhavoc(a)ghdigital.com
Created an attachment (id=19804)
--> (http://bugs.winehq.org/attachment.cgi?id=19804)
Patch to make C: always report as DRIVE_FIXED type
My /home is an NFS share, this means NtQueryVolumeInformationFile returns the
type of ~/.wine/drive_c as a network share, confusing installers (such as
Steam).
I tracked this down to a problem with GetDriveTypeW querying the volume
information and not even calling get_mountmgr_drive_type in some cases (such as
a network share), so any configuration in winecfg had no effect.
I have attached a patch that causes C: to always report as DRIVE_FIXED, which
fixes my problem, and should avoid any problems of this sort in the future.
However this still means that winecfg overrides have no effect on network
shares, this only fixes the most common problem of C: being considered a
network share.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33384
Bug #: 33384
Summary: Basic WPF application fails to handle images
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leonidbrook(a)gmail.com
Classification: Unclassified
I created a simple application that display an image loaded from a file (see
MainWindow.xaml). The file added as a "Resource" to the application project.
Basically, the only thing I added to the base skeleton, is <Image
Source="beta.png"/>.
The application fails at
System.Media.Imaging.BitmapSource.get_DUCECompatibleMILPtr()
with System.InvalidCastException: Specified case is not valid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28664
Bug #: 28664
Summary: qedit/mediadet test crashes on FreeBSD9
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: winegstreamer
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 36837
--> http://bugs.winehq.org/attachment.cgi?id=36837
backtrace
The test was running without $DISPLAY set, but that passes fine for me on
gentoo/debian.
Backtrace attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25994
Summary: Process Hacker: Unimplemented function
ntdll.dll.NtCreateKeyedEvent
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=33136)
--> (http://bugs.winehq.org/attachment.cgi?id=33136)
Terminal output on Wine 1.3.13
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) install Process Hacker
4) copy winsta.dll to system32
5) wine ProcessHacker.exe
Behaviour:
There is Wine's error.
Expected behaviour:
There should be no error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33657
Bug #: 33657
Summary: Garena needs ADMINISTRATOR run
Product: Wine
Version: 1.5.30
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pepe(a)bloodkings.eu
Classification: Unclassified
Created attachment 44553
--> http://bugs.winehq.org/attachment.cgi?id=44553
Stable release Wine log
Garena sometimes needs administrator run, but Garena chat works.
http://imageshack.us/a/img560/6475/snmekobrazovkypozen2013g.png
But other games and apps working successfully.
(Example: Install steam, install cs:go, playing cs:go, playing W3 campaing)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27052
Summary: winedbg and its man page should use "wpid"
consistently for Windows' process ID
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)skierpage.com
I couldn't figure out why winedbg complained "Can't attach process 42db: error
87" when I typed "attach 17115". I know the PID of my Windows executable, as
provided by top, ps, System Activity, etc.
You need to supply the *Wine/Windows PID* of the process, e.g. using the "info
process" command to winedbg, and this *isn't* the UNIX pid. This is mentioned
further down in winedbg(1), but it would be so much clearer if the man page,
the "info process" command and other documentation consistently used "wpid", as
http://www.winehq.org/docs/winedev-guide/debugger does.
There is missing help that also needs to use "wpid":
* winedbg --help's usage output doesn't mention the --auto wpid usage (though I
couldn't get this to work).
* the help command within winedbg doesn't mention "attach wpid"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18744
Summary: Mp3Tag: Column headers in list view incorrectly
redrawn
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.mp3tag.de/en/download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh+winehqdotorg(a)gmail.com
See attachment.
When clicked, the column headers (Filename, Path, ...) change to a selected
state and get a new "pressed" style. When selecting another column, the next
column is successfully selected but the previous one's style is still left
untouched, instead of being reset.
No console 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=32922
Bug #: 32922
Summary: itunes 7 crashes
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: btolfree(a)comcast.net
Classification: Unclassified
Created attachment 43481
--> http://bugs.winehq.org/attachment.cgi?id=43481
error log from wine running itunes 7 in Mint 13
opening iTunes 7 in Mint 13. this error continues to appear and even after
closing the error, it keeps reappearing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33378
Bug #: 33378
Summary: measuring/painting strings needs better tests
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: galtgendo(a)o2.pl
Classification: Unclassified
Regression SHA1: 6ab04040e52465e77558a067309e8a54bdc0f32c
Created attachment 44169
--> http://bugs.winehq.org/attachment.cgi?id=44169
minimal fix for a clipping problem
This is sort of bug 25717 revisited, in that that a problem, that happened
shortly before it was fixed, has popped up again.
I haven't been checking it in awhile, but today I did, then had to trace it
back to 1.5.26.
After a bisect, it came to commit "gdiplus: GdipMeasureCharacterRanges should
treat empty layout extents as infinite when StringFormatFlagsNoClip is
specified.".
Clipping went broken again, resulting in invisible text.
Minimal fix attached and sent to wine-patches.
As I said, it's the clipping again - without resetting < 0.5 to (1<< 23), 'if
(!(format_flags & StringFormatFlagsNoClip) && scaled_rect.Width != 1 << 23 &&
scaled_rect.Height != 1 << 23)' condition doesn't go into effect.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30485
Bug #: 30485
Summary: MeGUI 2112 crashes after first update / restart -
won't restart
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert_mt_walker(a)yahoo.co.uk
Classification: Unclassified
Created attachment 39866
--> http://bugs.winehq.org/attachment.cgi?id=39866
Wine MeGUI console log (first run)
ARCH-Linux x86_64 (fully updated). Clean win32 prefix.
MeGUI (OpenSource GUI wrapper for various video encoding utilities) download
latest build at:
http://sourceforge.net/projects/megui/files/latest/download?source=files
Install:
winetricks dotnet11
winetricks dotnet20
winetricks gdiplus
(all successfully install)
I've also tried installing avisynth 2.5.8 and K-Lite-Mega-Codec-Pack-7.8
(does step makes little difference to the MeGUI program crash).
MeGUI will run. Update itself. Updates are stored in a local /update_cache
folder as zip'd/7z'd archives. Gets to a stage of asking for a system restart.
Whether you say "yes" or "no" (and manually shutdown MeGUI with the "Exit" menu
option) the program eventually crashes. The Wineserver shuts down. Starting
MeGUI again results in an immediate crash.
This a deal breaker for the software. The download MeGUI zip archive needs to
be updated to extract the tools in the /update_cache folder. Otherwise there
will not be any encoders available to use. Earlier installable executable
version of MeGUI exhibits an identical crash when updated...
Bob
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20395
Summary: Wolfenstein (2009): MP mouse input not handled
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nwarrenfl(a)gmail.com
The game runs fine (good framerates), however the game (MP part) is unplayable
because the game doesn't react at all to mouse movements. The mouse is however
working in the menu.
After debugging the user32 channel, i found this:
fixme:win:RegisterRawInputDevices (pRawInputDevices=0x229eb74, uiNumDevices=1,
cbSize=12) stub!
Maybe this stub is the problem, i tried the patch from bug #10318, however it
didn't fix the problem.
I'll attach the 2 debug logs, the first one with +user32 and the second with
+x11drv.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29025
Bug #: 29025
Summary: Riven prison elevator buttons inoperative
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdbiem101(a)embarqmail.com
Classification: Unclassified
Created attachment 37373
--> http://bugs.winehq.org/attachment.cgi?id=37373
image of the elevator buttons
When you click on one of the buttons in the prison elevator it is supposed to
make a noise and show a pressed button. Instead the button does nothing like it
was not even pressed. I have verified the same in wine version 1.2.3 and
1.3.12.
The first attachment is an image of the buttons. The 3 lower round buttons are
the ones that don't move. The upper lever works fine.
The Riven version I am using is from gog.com. I will purchase Riven for the
developer who is willing to fix this bug (It is only $5.99).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10080
Summary: City of Heroes crashes when costume selection menu
appears
Product: Wine
Version: 0.9.47.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthew.b.gerber(a)gmail.com
When I request the costume selection menu - either by attempting to access the
Icon Tailor or by bringing it up directly - City of Heroes reports a fatal
video driver error:
"pbuffer creation error: Couldn't query pixel formats."
CityOfHeroes.exe then exits gracefully, so no backtrace is generated.
To ensure clarity - the crash is not on entering the costume *editor*;
character creation works fine. It's on attempting to display the window that
shows you all of your character's costumes and allows you to select one.
OS: Ubuntu 7.0.4
CPU: Core 2 Duo
GPU: NVIDIA GeForce 6800 Ultra
--
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=28676
Bug #: 28676
Summary: Arcadia crashes without openGL installed
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wineappdb(a)imhotep.org.uk
Classification: Unclassified
Arcadia (Steam version) crashes when attempting to launch on Ubuntu without the
mesa libraries installed.
Mesa is not installed by default, and the crash gives no indication that it is
due to a lack of OpenGL libraries.
Wine should give an error message when openGL calls are attempted when the
libraries are not present.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27721
Summary: Sound Recorder fails with memory error on any
operation that changed sound length
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: Nachanon_Vetjasit(a)hotmail.com
Run Windows Sound Recorder (sndrec32.exe) picked from Windows installation (any
version, Win9x to XP)
Click record button
Wait for 20 sec
Click stop button
Sound Recorder will display an memory error
"Not enough memory available to complete this operation. Quit one or more
application to increase available memory, and then try again."
Wine console displays nothing about it.
Note that all operation that changed sound length will also fail with the same
error.
Using wine 1.3.23 (source) on Debian GNU/Linux 5.0 (i386: Intel Pentium 4,
2.6GHz)
Compiled without GStreamer, OpenCL, XInput2, and OSS Support.
Realtek ALC880/Intel HDA onboard audio.
With wine audio settings: ALSA Driver, Full Hardware Acceleration, 44100Hz
16bit Stereo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28197
Summary: Intl.cpl failed to start
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: fracting(a)gmail.com
Created an attachment (id=36114)
--> (http://bugs.winehq.org/attachment.cgi?id=36114)
Log: start intl.cpl
Use the latest git version of Wine to avoid Bug 28122 .
copy a native intl.cpl,syssetup.dll,sfcfiles.dll from WinXP, start intl.cpl
with
$ wine control intl.cpl
Log is like this:
fixme:nls:GetGeoInfoW 993 8 0x33dba0 300 0
fixme:nls:GetGeoInfoW 994 8 0x33dba0 300 0
fixme:nls:GetGeoInfoW 995 8 0x33dba0 300 0
fixme:nls:GetGeoInfoW 996 8 0x33dba0 300 0
fixme:nls:GetGeoInfoW 998 8 0x33dba0 300 0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27231
Summary: Portal fails to start
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: viraptor(a)gmail.com
I tried to launch Portal 1 via Steam. The producer's logo works, then on the
light/gray screen the "Loading" text is mixed up (stripes + shifted so it says
"ngLoadi"). After a couple of seconds Portal closes itself (Stream stays
installed).
I'm running on core i3 with integrated gpu.
Logs attached.
Is there any other information I can provide?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25563
Summary: World of warcraft crash
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amzuk(a)ya.ru
After updating wine to 1.3.9 WoW does not start. (terminal output in
attachment)
Launcher works perfectly.
Repair.exe hangs after repair start. (output in attachment)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14200
Summary: Crash in Arcanum after some time of playing
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luinnar(a)mail.ru
CC: luinnar(a)mail.ru
Created an attachment (id=14478)
--> (http://bugs.winehq.org/attachment.cgi?id=14478)
output of wine
Hi,
There is a crash in the game Arcanum (1.0.7.0) after about 30-60 minuts of
playing. There are no crashes on Windows in Arcanum.
See the attached output of wine 1.0 after the crash.
Used system: Debian Etch r3.
Run command: wine arcanum.exe -no3d -doublebuffer
Wine was built from the sources.
Thanks and Regards,
Luinnar.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10877
Summary: Chessmaster 9000 graphics problems in wined3d
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: julianlubenov(a)abv.bg
The problem is that the "chessmaster 9000" game can't display most of it's
graphics. When you enter to the game room or class room no 3d graphics are
displayed because of problem in the IWineD3DSwapChainImpl_Present function. The
messages in the console are:
fixme:d3d:IWineD3DSwapChainImpl_Present Unhandled present options
0x5afe90/0x5afe90
err:d3d:IWineD3DSwapChainImpl_Present Cannot change the destination window of
the owner of the primary context
The err message is critical. Because the destination window of the primary
context can't be changed no graphics are displayed in the destination window.
The fixme message is problem too because if the error with the destination
window is corrected the graphics probably won't be displayed correctly.
--
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=21284
Summary: iGuidance 2009 does not run
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fry.kun(a)gmail.com
Install completes successfully, but when running MapLoader.exe, it doesn't 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=21183
Summary: software Mirascan
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lorenzo.lucesoli(a)poste.it
Mirascan is a a Benq software, running under windows Xp.
In Wine cause Program Error (see attach).
Can you help me?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20378
Summary: VideoRedo TVsuite fails to start
Product: Wine
Version: 1.1.31
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonass(a)lysator.liu.se
Created an attachment (id=24147)
--> (http://bugs.winehq.org/attachment.cgi?id=24147)
output from "wine VideoReDo3.exe"
VideoRedo TVsuite fails to start. Program installs fine but can't run
VrdConfigWizard.exe which seems to be needed by the main program.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14588
Summary: Everyday Shooter: fails to run with Steam
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: piekarzarkadiusz(a)gmail.com
In Steam, when I click on Everyday Shooter to start it, it pops up on the Gnome
applications panel, but nothing else happens. I am not able to play it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20718
Summary: Regression - Hamana doesn't work anymore
Product: Wine
Version: 1.1.33
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: live385(a)gmail.com
Created an attachment (id=24762)
--> (http://bugs.winehq.org/attachment.cgi?id=24762)
log of the problem
Hamana (App id 5206) doesn't work anymore, even if the Microsoft GDI+ libraries
are added. The window is completely blacked out with some glitches and the
program doesn't work. Log attached, hoping that is useful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20615
Summary: Saab EPC: hangs upon startup with DIB-4 error popu
Product: Wine
Version: 1.1.32
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marek(a)komar.com.pl
Created an attachment (id=24587)
--> (http://bugs.winehq.org/attachment.cgi?id=24587)
Console output
Saab EPC (Electronic Parts Catalogu) hangs upon start with a popup window
giving an error "DIB-4: Unable to retreive Bitmap Bits".
A workaround has been identified as per
http://forum.winehq.org/viewtopic.php?p=12116
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21028
Summary: Guild Wars runs too slow
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bwathke(a)gmail.com
I just installed Guild Wars Trilogy and everything works. But I am getting 7 or
lower FPS. Ive got Ubuntu 9.10 wine 1.1.33 and Nvidia GeForce 6200 256MB. I
play many other games with better graphics with NO lag. My ping is in green and
VERY rarely orange (200-340 Ping) I can set the graphics low and it gets worse
at medium-high (NOT fastest or best) Its the best performance (Low is 4 FPS
Best is 3 FPS Medium and High are 7 FPS) Everything else is fine like I said.
Thanks for reading 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=18847
Summary: Wrong desktop color palette upon game exit
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Hi,
i don't know, if other games are affected by wrong desktop color palette upon
game exit, but in Quake3, it's easily reproducible.
When running Quake3 without Punkbuster (pb dir renamed or removed), desktop
colors are preserved when i quit the game (colors are exactly the same as
before running Quake3).
When running Quake3 with pb dir, desktop colors are weird when i quit the game.
Colors looks like if i setup gamma correction from 1.0 to 3.5 in desktop
display setting.
No such problem in WinXP ;)
There is also one difference in console output. When running with pb dir(i.e.
weird colors), there is extra console output:
fixme:win:EnumDisplayDevicesW ((null),0,0x146dae8,0x00000000), stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22118
Summary: Picasa 3.6 is unable to connect to IMAPI2
Product: Wine
Version: 1.1.41
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens.kuespert(a)gmx.de
Overall Picasa works fine, except the creation of CD-Images.
On the console it says:
err:ole:CoGetClassObject no class object {2735412e-7f64-5b0f-8f00-5d77afbe261e}
could be created for context 0x17
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21742
Summary: Half Life: not able to save keyboard assignment
Product: Wine
Version: 1.1.38
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andlinux(a)yahoo.com
When I start Half Life 1 and I go to options and change the forward, backward,
strafe keys and save that and go back to the game, then the keys are changed
back to what it was in the beginning.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21258
Summary: Puntenboek.exe "serious error" crash on exit
Product: Wine
Version: 1.1.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: belgobass(a)hotmail.com
Created an attachment (id=25559)
--> (http://bugs.winehq.org/attachment.cgi?id=25559)
serious error message on crash
puntenboek works but doesn't allow for saving work on exit. A serious error
message then appears (attached screenshot).
This application has a fairly limited audience. It is an on-line mark book and
report creator used in (some) schools in Belgium. It is downloadable from here:
http://myrosoft.com/FR/PBDownload.php however it requires a password for
downloading. I have uploaded it here:
[url]http://www.sendspace.com/file/ono5w6[/url]
I am using Puppy Linux 4.3.1 as an operating system and running Wine from a
pet. It is the latest available pet version (but not the latest Wine version).
The pet Wine version is 1.1.28
The application works fine on Windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20756
Summary: Some characters inside Dexon Console aren't visible
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: correo.cuervo(a)gmail.com
Created an attachment (id=24834)
--> (http://bugs.winehq.org/attachment.cgi?id=24834)
Screenshot from first dialog box
I'm started Dexon Console, but I can't read the text inside the dialog and
button boxes.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22513
Summary: comdlg32.dll print dialog fails in PageSetupDlgA when
running make test with up to date sources from git
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peter.kovar(a)gmail.com
Created an attachment (id=27594)
--> (http://bugs.winehq.org/attachment.cgi?id=27594)
Can't open printer L"Cups-PDF"
../../../tools/runtest -q -P wine -M comdlg32.dll -T ../../.. -p
comdlg32_test.exe.so printdlg.c && touch printdlg.ok
err:commdlg:pagesetup_change_printer Can't open printer L"Cups-PDF"
wine: Unhandled page fault on read access to 0x00000024 at address 0x68753314
(thread 0009), starting debugger...
F12 x86-64
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21883
Summary: OpenGL rendering on wrong part of virtual desktop if
window gets moved
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: domen.vrankar(a)gmail.com
This is probably a minor issue, but maybe it fixes a bigger bug.
I'm using wine 1.1.39 with default settings on ubuntu 9.10 with wine virtual
desktop enabled.
I downloaded a sample program from http://www.songho.ca/opengl/gl_fbo.html
(fbo.zip direct link: http://www.songho.ca/opengl/files/fbo.zip).
In the archive file there are sources and executable. If you run the executable
on ubuntu this happens:
program runs without problems, but when you move the window inside which cube
is rendered, it starts rendering outside of the window on the virtual desktop -
on the position where the window was before.
What should happen:
If you move the window while running the program in Windows vista 32bit home
the window moves correctly and nothing is wrong with rendering after that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21740
Summary: Application sends invalid value (0) to state_cullmode
Product: Wine
Version: 0.9.38.
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: knight666(a)gmail.com
Hi,
when launching the game Real-Time Lovers 4, Wine hangs and doesn't start the
game. Instead, it fills the log with the following fixme:
fixme:d3d:state_cullmode Unrecognized/Unhandled WINED3DCULL value 0
I can't figure out where this is happening.
I've attached a log with trace and error on for d3d.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21735
Summary: Rainbow Six Vegas 2 crashes with code
"err:seh:raise_exception Unhandled exception code
80000003 flags 0 addr 0x119dd2f3"
Product: Wine
Version: 1.1.38
Platform: x86-64
URL: http://rainbowsixgame.us.ubi.com/agegate.php?destURL=/
home.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.thomas.riker(a)gmail.com
While playing a mission in Rainbow Six Vegas 2, it will exit with the error
code in the summary. I was not able to complete a mission, because it always
exits. My appDB is at
http://appdb.winehq.org/objectManager.php?sClass=version&iId=11643&iTesting…
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21706
Summary: Rosetta Stone Demo Version 3.OS Install Disc Freezes
Wine 1.1.37 on Ubuntu 9.10
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: rusivi1(a)gmail.com
Created an attachment (id=26238)
--> (http://bugs.winehq.org/attachment.cgi?id=26238)
WINEDEBUG=+relay wine RosettaStone.exe
name@name-laptop:~$ sudo lsb_release -rd
[sudo] password for name:
Description: Ubuntu 9.10
Release: 9.10
name@name-laptop:~$ wine --version
wine-1.1.37
Rosetta Stone Demo Version 3.OS Install Disc Freezes upon install screen w/
Wine 1.1.37 on Ubuntu 9.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20813
Summary: efax messenger 4.4 starts, runs, but always errors
upon closing.
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sanchiro(a)gmail.com
I have J2GPLUS.EXE, the executible used to run J2 Global's Efax system, to let
me fax out over email instead of using a stand-alone fax and phone line
combination. It installed OK on my Ubuntu 9.10 system, and I can open it, and
open files within it, but immediately upon closing J2GPLUS.EXE errors, posts a
warning that I need to check configuration settings at winehq.org and then
proceeds to close without any collateral damage or other incident. It can then
be restarted as well, to repeat the same events after opening, or not opening
any .tif or .efx files.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20361
Summary: WangWang 2009 not able to run after install
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
URL: http://www.taobao.com/wangwang/
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: avengermojo(a)gmail.com
after install the aliwangwang application, not able to run with the following
error
2009-10-14 15:49:50,498 ERROR Database.Connection db key auth fail! 11 database
disk image is malformed
2009-10-14 15:49:50,528 WARN IMDB.DBManager global db crashed, drop success!
2009-10-14 15:49:51,267 ERROR AliWWApplication Fail to create PluginMgrV2
-2147221164
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21793
Summary: msi should escape dialog text that contains ampersands
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: Installer
Severity: trivial
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=26356)
--> (http://bugs.winehq.org/attachment.cgi?id=26356)
H&R Block At Home 2009 installer screenshot
Running the H&R Block At Home 2009 Deluxe installer on wine-1.1.39, I notice
that the install dialog text renders text with ampersands, like "H&R Block", as
"H_R_ Block". A screenshot is attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21560
Summary: CFS3: No joystick recognized
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: normandy(a)web.de
Created an attachment (id=25978)
--> (http://bugs.winehq.org/attachment.cgi?id=25978)
+imm log
Though my stick(s) are working in several other applications (IL-2 Sturmovik,
Falcon 4, joytester.exe and so on) it is not recognized by Microsoft's Combat
Flight Simulator 3. The ComboBox to select a joystick in the game is greyed
out.
The game uses IMM/IME for input, dunno much about this. I had to use native
msxml components to start the application.
A +joystick log gives no additional info. There is no default output related.
As I don't have ANY clue, I attached a +imm log: starting the app, checking
settings->joystick and closing it.
Sticks tested: Saitek Cyborg, Impact, X-45 or X-52
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=17667
Summary: Visio 200 Displays Windows Problem Dialogue Then Crashes
on Ubuntu Intrepid
Product: Wine
Version: 1.1.16
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r.rafique(a)gmail.com
Wine Details:
Version: 1.1.6
Installations: ies4Linux 2.99, Visio 2003
System details:
Distro: Ubuntu Intrepid
Kernel: 2.6.27-13-generic i686
Desktop Env: gnome, compiz, emerald
Actual Results:
When I open a drawing created by someone else on another system Visio
displays standard windows crash dialogue (please see attachment) and then
closes.
Other information:
Pastebin output of "wine visio.exe" is present at:
http://pastebin.com/f132a7845
Also, I noticed this with wine-1.0.1 (default from Ubuntu repos) as well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20142
Summary: Can't move past first screen in TaxCut 08
Product: Wine
Version: 1.1.28
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joe(a)nahmias.net
Created an attachment (id=23726)
--> (http://bugs.winehq.org/attachment.cgi?id=23726)
log of wine output
I re-tried running TaxCut 08 using wine 1.1.28, and although I get farther than
in the past, I can't do anything useful. The difficulty arises when you first
start the app, it displays a (bypassable) registration information screen that
(presumably) submits information to the vendor over the web. However, neither
clicking the "Register Later" button, nor filling out the form and clicking the
"Submit" button seems to do anything -- which, therefore, blocks any use of the
application (clicking the menus does not work).
I'm attaching a log of the errors/warnings that wine generated while I tried
this. It was generated using the command `wine /usr/local/wine/drive_c/Program\
Files/TaxCut08/Program/TaxCut.exe 2>&1 | tee wine_taxcut08.log`.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20717
Summary: setup application doesn't work
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sapfeer(a)gmail.com
Created an attachment (id=24761)
--> (http://bugs.winehq.org/attachment.cgi?id=24761)
Log was created by issuing "WINEDEBUG=ddeml WINEPREFIX=~/.winecleanprefix wine
setup.exe"
When I'm trying to issue some setup application, it freezes after some setup
files has been copied without any error messages
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20514
Summary: Micro Machines V3: Crashes after publisher &
developers logo
Product: Wine
Version: 1.1.32
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezekiel000(a)lavabit.com
After the publishers and the developers logo the intro video is skipped and
then the game crashes with this error in the terminal:
fixme:win:EnumDisplayDevicesW ((null),0,0x32f78c,0x00000000), stub!
Running Ubuntu 9.10 amd64 wine 1.1.32 nVidia 8200 onboard with version
185.18.36 of nVidia offical drivers.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21660
Summary: Wacom bounding rectangle top coordinates ignored
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wintab32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azathothgr(a)gmail.com
Created an attachment (id=26156)
--> (http://bugs.winehq.org/attachment.cgi?id=26156)
DUMPCONTEXT for TopX/Y = 10000 and BottomX/Y defaults
When setting TopX/Y and BottomX/Y with xsetwacom the resulting bounding box
gets ignored. This makes the cursor draw in a different location than where it
is displayed.
Looking at the tablet context I see that TopXY and BottomXY get mapped directly
to InOrgX/Y and InExtX/Y, while OutOrgX/Y is always 0 and OutExtX = InExtX ,
OutExtY = -InExtY .
I tested this with artrage studio pro, and Gimp for windows, with an intuos3. I
couldn't get gimp to use the tablet properly, but the context was exactly the
same as in artrage.
The function ScaleForContext in dlls/wintab32/context.c seems to use InExt and
OutExt as extents (right - left coordinate) while they're being set as absolute
coordinates. Also the OutExt for the Y axis is always negative, but negative Y
values do not work at all.
Replacing ScaleForContext with a simple linear mapping from [InOrg , InExt] to
[OutOrg, OutExt], returning an absolute value of the result to cope with the
negative Y axis, and removing Y axis flipping later on the same file, seems to
fix the issue:
ScaleForContext :
replace with :
LONG Out;
Out = (LONG)(OutOrg + ( ( In - InOrg) * (float)(OutExt - OutOrg)) / (InExt
- InOrg));
return abs(Out)
AddPacketToContextQueue:
remove :
/* flip the Y axis */
if (ptr->context.lcOutExtY > 0)
packet->pkY = ptr->context.lcOutExtY - packet->pkY;
else if (ptr->context.lcOutExtY < 0)
packet->pkY = abs(ptr->context.lcOutExtY + packet->pkY);
This even works correctly for negative TopX/Y values and out of bounds BottomXY
values, which can map the entire tablet area to a portion of the screen.
I have a few questions however. Where do OutOrg and OutExt get set, and why is
OutExtY always negative ? And most importantly, are the above changes correct?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21478
Summary: Wine crash with Billi Banni 1. Klasse
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.mertes(a)gmx.at
Created an attachment (id=25863)
--> (http://bugs.winehq.org/attachment.cgi?id=25863)
Messages when instaling and starting Billi Banni 1. Klasse
Wine crashes with Billi Banni 1. Klasse (in english: Billi Banni 1st class)
Installing the program seems to work, although there were some warnings
("fixme" and "mmap() failed" - see attachment).
When the program is started (and "Start" is selected with the mouse) wine
crashes (see attachment),
Greetings Thomas
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21319
Summary: foobar (with plugins) crashes after some time playing
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
After a some time playing foobar crashes. I see that foobar messages crash on
the same addres. I`ll attach here it's dumps
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20649
Summary: wine-gecko component cannot set the correct page code
nor allow user to select one
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amaciel81(a)gmail.com
Hi,
Today, I discovered a minor glitch in Steam that may affecting others
applications that depend of wine-gecko (I think it depends, but I'm not sure).
When I try use Steam in Portuguese (probably it affects others western European
languages too), it can render correctly the special characters. Playing around
with Firefox on Linux and Steam in Windows XP, I discovered a couple of
interesting things.
The first one is, the problem occurs when the HTML render part of the program
is set up to use "Western European" encoding (the correct is Unicode UTF-8).
The second one is, wine-gecko can neither select automatically the correct
encoding (when either Firefox and Steam in Windows XP can) nor allow user to
select it manually - the encoding menu just doesn't work.
Well, I'm sending some screenshots to explain the problem.
Thanks a lot,
Alexandre
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20278
Summary: Windows can open also \\.\COMx\ (see the last back
slash)
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martin(a)hinner.info
Windows XP can open devices (e.g. a com port) also as \\.\COMx\ (see the last
back slash), Wine works only with \\.\COMx
This is really ugly, but maybe Wine should behave same 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=20167
Summary: MS-WORD 2007, when running with "export
LANG=he_IL.UTF8", I can't use calibri font
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nirmisgav(a)gmail.com
MS word 2007, I start program with LANG=he_IL.UTF8 to enable RTL support,
but in this mode (when writing English or Hebrew letters it doesn't matter), If
I select Calibri for example, it falls back to Arial in the first letter I
write on the document.
I even tried to select the text and then change font- doesn't work.
If I choose "Times New Roman" it selects it ok and write with it, but then if I
choose "Calibri" again, I fall back to "Times New Roman" (on the first letter),
so it appears to fall back to the last working font.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21794
Summary: H&R Block At Home 2009 Deluxe dialogs are inoperable
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=26357)
--> (http://bugs.winehq.org/attachment.cgi?id=26357)
H&R Block At Home 2009 output
After installing H&R Block At Home 2009 Deluxe, a registration dialog page
appears, which cannot be dismissed by pressing any of the buttons on the page.
Installing ie6 from winetricks allows the dialog to work successfully. Terminal
output and screenshot are 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=21337
Summary: d3d bug in the game Truck Racing by Renault Trucks
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bovis88(a)yahoo.com
This is a report concerning the game, Truck Racing by Renault Trucks.
Everything in the game works will up until the point of this error - all of the
menus display nicely and the graphics are smooth.
Having gone through the prelimenary menus and having made it to the part of the
game where actual racing is to occur, the graphics become shaky. I receive the
attached error and am not able to see the the background, the track, or the
truck. The foreground display of the menu, lap time, speed, etc. still works,
and control of the vehicle is still possible.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21207
Summary: Falcon 4.0: Textures mixed up after app lost focus
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
I've got some graphics errors with "Falcon 4.0AF".
Quite often, when there is some gnome-notification or I minimize the game, it
seems to mix it's textures/texture indexes. There is no related output on the
default command line?
Here's some screenshot after the app lost focus: http://tinyurl.com/y9dh2fh
I will add some logfiles later, one without being messed up and one created
when intercepting the bug.
I looked around a while now, but I simply don't know what to google for. There
has to be such a bug already!?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16887
Summary: Black screen during flashbacks in F.E.A.R.
Product: Wine
Version: 1.1.12
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zarquon(a)t-online.de
I get a black screen during the "flashbacks" in F.E.A.R. v1.08 retail (for want
of a better word, it happens from time to time, very frequently in the later
levels). You can still see your HUD and your crosshair, and if you're attacked
you see the red blotches indicating the direction of the attacker, also the
game physics/movement still works (so you can often leave that section if you
stumble around for long enough), but while it lasts you're completely blind.
I have WINE-1.12 running as 32-bit application on a 64-bit x86_64 Gentoo
system, using an Nvidia GF7900GS and 100.14.19 drivers (I've had problems with
newer ones). I can provide a savegame demonstrating the issue for v1.08 retail
of the game (UK Gold edition), assuming savegames can be transferred without
the full profile. Since it's rather large (150kB zipped), I didn't just attach
it; let me know if I should, otherwise I'll just wait if/until someone contacts
me about it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21584
Summary: app does not work on wine config'd with win vista
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: annacegu(a)yahoo.com.au
Created an attachment (id=26035)
--> (http://bugs.winehq.org/attachment.cgi?id=26035)
4D systems workshop runtime error on wine vista
I am trying to run a windows app, which works on windows vista natively.
HOwever when I try to run it under wine (on Ubuntu 9.10) it crashes. Please
find the 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=20878
Summary: Error GLXBadContextTag in Innovate Motorsports
Logworks 3
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: me(a)benvm.be
Created an attachment (id=25025)
--> (http://bugs.winehq.org/attachment.cgi?id=25025)
last 2000 lines of +relay,+synchronous
I'm trying to run Logworks 3 from Innovate Motorsports
see: http://www.innovatemotorsports.com/support.php
The splash screen is shown correctly. When the actual application is loaded,
the main window pops up very breefly but then wine crashes with the following
error code:
failed to create pixmap
X Error of failed request: GLXBadContextTag
Major opcode of failed request: 153 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 12160
Current serial number in output stream: 12160
I'm not sure whether this is a bug in wine or in Xorg.
I'd help out but I know very little about X an even less about wine.
I'm on debian sid, running wine 1.1.32 from the debian repo. I also tried with
the packages from lamaresh.net without luck.
Attached are the last 2000 lines of:
env WINEDEBUG=+relay,+synchronous WINEPREFIX="/home/ben/.wine" wine "C:\Program
Files\LogWorks3\LogWorks3.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=21462
Summary: Operation: Inner Space crashes upon start and causes a
page fault
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: ranguvar(a)archlinux.us
After installing the game "Operation: Inner Space" with Wine, and upon
attempting to run the main executable "INSPACE.EXE" with Wine, the game window
opens, but freezes shortly. The following output is present on the console:
fixme:x11drv:X11DRV_GetDeviceCaps (0x688): CAPS1 is unimplemented, will return
0
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!!
wine: Unhandled page fault on read access to 0xffffffff at address
0x146f:0x00000e53 (thread 001b), starting debugger...
A message box then pops up, saying: "The program winevdm.exe has encountered a
serious problem and needs to close."
Closing that window causes more console text, which I put up here:
http://pastebin.com/f335cb3d8
If there is anything else I can do to help debug, please let me know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20511
Summary: Cannot uninstall Mathematica 5.1: installer does
nothing
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cmt.miniBill(a)gmail.com
Created an attachment (id=24430)
--> (http://bugs.winehq.org/attachment.cgi?id=24430)
Logfile of wine uninstall run
As the title goes.
Installer opens and looks like having completed successfull, but nothing
happened really.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19991
Summary: Battlefield Heroes: crash immediately after level load
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roothorick(a)new.rr.com
Created an attachment (id=23517)
--> (http://bugs.winehq.org/attachment.cgi?id=23517)
wine output.
Install per details on AppDB entry, run, pick character, PLAY NOW. The game
loads, your character spawns, and the immediate frame after: "This program has
encountered a serious problem and needs to close." The "Close" button is
unclickable, too, leaving me to ^C it and never get a backtrace. With some
trickiness to get around the anti-debugger voodoo, I managed to get a backtrace
by attaching winedbg seconds before the crash happens. Will be second
attachment.
In the log I did NOT attach, and ^C immediately after the crash.
If it helps any: Radeon HD 4850, Catalyst 9.8. Gentoo amd64.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20178
Summary: Full scren in TVUPlayer.
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tomasz(a)komorow.net
When i'm runnging TVUPlayer, everithing works just fine, but when I enter
fullscreen mode, it goes to full screen, but it shakes, and i can't close full
screen mode.
I think it might be a KDE issue, so please check it first on another desktop
enviroment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19992
Summary: No video with Shadow of Destiny
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ssjgoku75x(a)aol.com
When playing Shadow of Destiny, there is no video at all. When I select "Play",
nothing shows up. Please help! 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=18281
Summary: Tom Clancy's EndWar: Menu is not drawn right
Product: Wine
Version: 1.1.20
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
In endwar main menu is not drawn right as you may see in screenshoot:
http://appdb.winehq.org/appimage.php?iId=24283
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21058
Summary: TeamViewer: "ghost window" appearing when starting a
session
Product: Wine
Version: 1.1.34
Platform: x86
URL: http://www.teamviewer.com/de/download/tv5.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: caliga(a)arcor.de
When a presentation window is opend on a TeamViewer on Wine (that is: somebody
on a 2nd machine starts a presentation to the wine machine), that window is
completely screwed up.
What 'screwed up' means, depends on the settings for "allow decoration" and
'allow control' in winecfg.
There will be two windows that are actually one. Also, there are two taskbar
entries. And the initial size of the window may be wrong. It can be resized
then, and if you pick the 'real' one, you can actually see the presentation ;)
This is probably caused by changing the window styles using SetWindowLong()
while the window is still hidden. Maybe when it is finally shown, wine shows it
once with the old styles and also with the new styles!?
This can be reproduced with all TeamViewer 5 Builds up to the current
(5.0.7572).
However, it will probably be worked arround (by showing the window earlier) in
an upcoming release, but you might still want 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=21228
Summary: DVD Rebuilder doesn't work anymore in wine 1.1.35
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: malky.ua(a)gmail.com
Created an attachment (id=25505)
--> (http://bugs.winehq.org/attachment.cgi?id=25505)
log for clean wine + vbrun6
DVD Rebuilder Pro 1.28.2 cannot encode anymore in wine 1.1.35. (It worked in
1.1.33 perfectly
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7738&iTestingI…
). There is "Run-time error 70: Permission denied" on the "Encode" step. I
tried some encoders (ProCoder, CCE , HC ) but none of them helped.
I tested both clean wine + vbrun6 (see log as attachment) and recommendation
for old version of wine (
http://appdb.winehq.org/objectManager.php?sClass=version&iId=7738&iTestingI…
) ( it was laconic - only "fixme:storage:StgCreateDocfile Storage share mode
not implemented." )
DVD Rebuilder worked perfectly in wine 1.1.33 so I'm very disappointed by
this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12153
Summary: Mathcad 2000K hangs using signal processing pack
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kc8ldo(a)arrl.net
Created an attachment (id=11550)
--> (http://bugs.winehq.org/attachment.cgi?id=11550)
Terminal window output during application run
Mathcad 2000 Pro generates a buch of ole control errors when running.
Also when the signal processing function pack is loaded by loading up the
signal processing handbook the application hangs when you try the “remez”
example. This handbook uses an external dll file.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21055
Summary: TeamViewer: Screen grabbing is painfully slow
Product: Wine
Version: 1.1.34
Platform: x86
URL: http://www.teamviewer.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: caliga(a)arcor.de
In general, TeamViewer runs amazingly well with wine.
However, screen capturing done by TeamViewer is awfully slow.
The screen is grabbed if
- you do a presentation from wine to 2nd machine
- you do a remote support from 2nd machine to wine (currntly not working:
#12067)
The screen is grabbed like this:
BitBlt(MemDC, left, top, width, height, ScreenDC, 0, 0, SRCCOPY);
On my machine, this takes about 1.1 seconds, but may very well depend on the
graphics board and driver in use.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20156
Summary: Emoticons in Instant messages in Message Labs OmniPod
cause a program error
Product: Wine
Version: 1.1.29
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: plastikman(a)gmail.com
Created an attachment (id=23752)
--> (http://bugs.winehq.org/attachment.cgi?id=23752)
Emoticon Error Message
Message Labs POD is a corporate Hosted IM application that only has a native
windows client. There is a java applet but it is lacking many features.
Installation and functionality of message labs POD works. when sending and
receiving messages with Emoticons An error message pops up saying "Internal
application error"
I have attached a screenshot of the IM window with the error message displayed
Since this is a paid for service please contact me directly if you need access
to the EXE and if you need a login for the service.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14505
Summary: Falcon Allied Force crash durning loading mission
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: qwiat(a)pld-linux.org
Created an attachment (id=14829)
--> (http://bugs.winehq.org/attachment.cgi?id=14829)
wine's output
Falcon Allied Force crash durning loading mission with message:
"Buffer overrun detected"
In menu almost everything works good, but loading mission (any kind) fails.
Tested on Falcon Allied Force with any of most recent patches.
"Windows versions": 98 and XP
Color depth: 16 and 32
Game version: Falcon AF + most recent patches (including 1.0.13)
Video driver: nvidia
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21721
Summary: Colin McRae Rally 3 can't play menu background videos
(WMV)
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t6tiar00(a)students.oamk.fi
Colin McRae Rally 3 can't play menu background videos (WMV) even if Windows
Media Player 9 and codecs are installed. WMP can play most of the game videos
without problems, though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20592
Summary: Adobe Flash CS3 Professional Cannot Start.
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: afante2006(a)yahoo.co.jp
Created an attachment (id=24569)
--> (http://bugs.winehq.org/attachment.cgi?id=24569)
bug log
Adobe Flash CS3 Professional simply cannot start.
In my essential Adobe Creative Suite CS3 tools, only Dreamweaver CS3 and
Fireworks CS3 can 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=20246
Summary: Roxio Easy Media Creator 7.5 Starts to install program
then stops
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris.bennell(a)blueyonder.co.uk
Seems to get about half way then get message saying that could not finish
install try again later. When I try again I get message 1607. Unable to install
shield scripting runtime. In programs folder Roxio folder showers 21 folders
installed?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17515
Summary: Garrysmod: Srcds anomalies , crashes, surface propeties
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://garrysmod.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laurikoivunen(a)hotmail.com
Running a game server called garrysmod *0 *1 srcds *2 on wine *3 gives some
anomalies during gameplay.
*0 http://store.steampowered.com/app/4000
*1 (Garry's Mod version 10/11 or how you want to call it)
*2 Source Dedicated Server (windows version) Download:
http://storefront.steampowered.com/download/hldsupdatetool.exe
*3 (tested with wine version 0.9 - 1.1.15) (Also tested with crossover's office
and gaming versions)
For example:
- Missing friction/physics simulation in certain rooms for the player (white
room for example) in certain maps (gm_construct)
- A car called "Jalopy" crashes the server / has no physics / cannot be driven
etc
- Players get stuck to certain areas e.g. the "white room"
These bugs naturally don't appear in windows and the developer of this game has
indirectly refused to fix these problems as he doesn't support wine.
This bug can be reproduced just by installing the server (
http://wiki.garrysmod.com/wiki/?title=Dedicated_Server_Setup#Linux ) and
starting the server with parameters "srcds.exe -console -game garrysmod +map
gm_construct" and going ingame and to the white room.
Some of the bugs can also be seen by spawning a pod (press q while
ingame->navigate to vehicles tab->spawn a "pod" by pressing the spawn
button->move the pod with "physgun" or throw it to water and it disappears )
Note: The game server is free unlike the game itself.
It seems that this bug is related to wine's file functions as using a GCF-based
wine srcds garrysmod server doesn't have this problem (at all).
(GCF-Based server would be a recommended way of hosting the server as it
doesn't rely too much on wine anymore but it is much more "laggier" as all the
GCF-files need to be examined for every file access)
GCF info: http://developer.valvesoftware.com/wiki/GCF
Wine or srcds don't report anything about these problems in normal operating
mode (or srcds in debug), these can just be seen ingame. I wont paste logs as
they grow enormous because of the load of files that need to be loaded during
the server startup. I'm asking for some parameters so the log file wouldn't
exceed 200-400mb so that I could upload it.
I am willing to help any way possible, my wine srcds server is always ready for
testing and/or debugging. I can be reached through wine's IRC channel with nick
Python1320 (or any other major IRC Network) or through MSN.
Post notes:
- The platform test has been mainly debian/ubuntu or their variants using
clean pre-compiled repository and self-compiled unmodified wine installations.
- Only used EXT3 file system.
- For some weird reason, some users are NOT getting this problem (Only one
confirmed person with no bug using latest wine 1.1.14 from debian precompiled
repositories against 6 people who HAVE this problem) with their servers even
though they have the same system and configurations I have as far as I have
been able to check.
- More info on request
PS: This is my first bug report. So, it's more or less formal and/or messy.
Forgive me :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20922
Summary: Wine generates invalid ARB vertex programs
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.cencora(a)gmail.com
Created an attachment (id=25082)
--> (http://bugs.winehq.org/attachment.cgi?id=25082)
Assassin's Creed game output, the bad program starts at line 979
When emulating sin/cos instructions in vertex programs, lines like these are
created:
MUL TA.x, R0.x, C4.w.w;
MAD TA.x, TA.y, C4.w.x, TA.x;
The problem is the double swizzle (i.e. C4.w.w C4.w.x).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17505
Summary: Riven: mouse cursor is drawn on a checkerboard
background
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: skuller(a)skuller.ath.cx
Created an attachment (id=19612)
--> (http://bugs.winehq.org/attachment.cgi?id=19612)
Mark nearly black samples as entirely transparent
When running the DVD version of Riven in Wine, in-game mouse cursor is drawn on
a semi-transparent checkerboard background [1]. This bug seems to be related to
the Xcursor code path in dlls/winex11.drv/mouse.c, since when I remove
libXcursor.so.1 out of the way so that Wine falls back to the original pixmap
cursor handling code, in-game cursor is drawn correctly [2].
[1] http://skuller.ath.cx/tmp/riven1.png
[2] http://skuller.ath.cx/tmp/riven2.png
As far as I understand the code, checkerboard pattern results from the way
inverted colors are emulated in the create_cursor_image() function. Riven
creates a 32 bit bitmap with an empty alpha channel, with transparent pixels
(as defined by AND mask) being nearly black (but not quite, 0x040404 to be
precise). Then the sampled grayscale value of 0x04 is mapped to the alpha
channel and the pixel color is inverted, resulting in a semi-transparent
background (which is very visible — perhaps X supports only discrete values
for alpha?).
Attached patch attempts to fix this issue by checking for small grayscale
samples being mapped to the alpha channel (less than 5% opacity) and marking
the resulting pixel entirely transparent for such samples.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21149
Summary: Wine catch "Unhandled page fault" when
LexproClient.exe runs
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikhailtyurin(a)gmail.com
I've installed LexproClient software. Installation is OK, no exceptions, no
backtraces. But when I try to run already installed ditribution I catch error
with page "Unhandled page fault on read access to 0x003e4847 at address
0x7bc1f7fc".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20200
Summary: Screen does not get repainted in Pronto Xi until
window is moved
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)truong.id.au
In Pronto Xi, part of the program's window is not painted until the window is
moved, hence forcing a redraw of the 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=20063
Summary: Serif PagePlus 8.0 graphical rendering ruined, program
unusable
Product: Wine
Version: 1.1.29
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
Created an attachment (id=23618)
--> (http://bugs.winehq.org/attachment.cgi?id=23618)
Screen shot of PagePlus with unusable screen
Serif PagePlus 8.0, a desktop publishing application, is unusable because of
strange rendering quirks. I can't describe it very clearly, but the attached
screenshot, taken from one of the "Wizard" newsletter examples, shows that at
best only the first line or so of each paragraph is rendered.
Interactively the graphics behaves very strangely, there appear to be many
layers of graphical objects, and clearly wine renders these layers differently
from Windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21677
Summary: Build a lot is crashing while starting
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=26194)
--> (http://bugs.winehq.org/attachment.cgi?id=26194)
Crash log
As the summary says, the game just crash while stating. I'm ataching the
console 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=21095
Summary: Scrollbar position not always on the left
Product: Wine
Version: 1.1.32
Platform: x86
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: silkensedai(a)online.fr
Created an attachment (id=25309)
--> (http://bugs.winehq.org/attachment.cgi?id=25309)
The toolbar that doesn't want to stay left aligned
Hi,
In the application PcKent (French medical software), sometimes it happens when
the screen is redrawn that an horizontal scrollbar that should be positioned
left gets positioned somewhere else (middle or right).
This is annoying because the most important information is on the left. on the
right we have information that is seldom viewed.
I can test further the application, and I don't have its source code. The
creator might want to help though (and perhaps I might convince him to provide
a native Linux or Mac OS X version of his application using wine libraries).
Attached, a screenshoot of the scrollbar (and its widget). i don't know if you
might be able to help but it's better than nothing.
PCKent Website: http://www.evidence-sarl.com/france/pck2_accueil.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=20225
Summary: try to login in WoW private server nordschlacht
itemmall
Product: Wine
Version: 1.1.30
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bdgraue(a)web.de
Created an attachment (id=23859)
--> (http://bugs.winehq.org/attachment.cgi?id=23859)
error i get oin konsole
i downloaded and installed the Norschlacht itemmall,
http://nordschlacht.game-host.org/itemmall.htm
you need it to buy itmes for your charakter. installation worked, but in the
itemmall i cant login, every time i try to, it fails and i get an error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.