http://bugs.winehq.org/show_bug.cgi?id=10974
Summary: wine prefers loopback devices over regular files
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmh(a)aybabtu.com
Created an attachment (id=9920)
--> (http://bugs.winehq.org/attachment.cgi?id=9920)
fix loopback handling
When using a loopback device as a wine drive, wine will prefer to use the
loopback device (e.g. /dev/loop0) for volume access rather than the regular
file it's based on (e.g. ~/foo.iso).
>From dlls/ntdll/directory.c:
else if (!stat( entry->mnt_fsname, &st ) && S_ISREG(st.st_mode))
{
/* if device is a regular file check for a loop mount */
if ((device = strstr( entry->mnt_opts, "loop=" )))
{
char *p = strchr( device + 5, ',' );
if (p) *p = 0;
return device + 5;
}
}
I'm not sure if this has any advantage, but it has a big inconvenient. It's
almost certain that /dev/loop0 is owned by root and not world-readable, and
it's also mostly certain that wine isn't being run as root. If the image is
user-owned, by using the loop device we lose the ability to read it.
This typicaly causes breakage that is difficult to figure out. For example,
see
http://appdb.winehq.org/objectManager.php?sClass=version&iId=727&iTestingId…
Note: I'm filing this separate from bug 10957 because it's an unrelated issue.
The patch I'm attaching here collides with the one I sent for bug 10957, but
takes both situations into account.
--
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=11183
Summary: Sam and Max doesn't start
Product: Wine
Version: 0.9.53.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michele.scandura(a)gmail.com
This should be a regression of bug n°8601. Tried to start sam'n max culture
shock (not the demo, the full game without fixed exe) and says it's been
modified by a virus.
Wine is ubuntu hardy's latest version
--
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=11125
Summary: s.t.a.l.k.e.r does not start
Product: Wine
Version: 0.9.52.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: asdmin(a)gmail.com
Created an attachment (id=10163)
--> (http://bugs.winehq.org/attachment.cgi?id=10163)
printout
Is there anybody who has a clue on this error message? This appears whenever i
want to start stalker, installed and started as the appdb howto spefifies.
--
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=10606
Summary: L/R volume of a sound source changes improperly in
S.T.A.L.K.E.R.
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ambro(a)b4ever.net
When there is a continous source nearby and I look left or right from it, the
L/R channels are supposed to change volumes. However this doesn't work properly
in Wine.
The channels are of same volume when looking directly at the source. Then say I
look away left from the source and the sound volume decreases on the left
channel and reaches its minimum at around 35 degrees away from the source. This
it the same as in Windows.
However when looking further away towards 90 degrees, in Windows the volume in
the left channel increases back to a certain point and I think it gains some
sort of effect. But not in Wine, in Wine the left volume just stays at the
minimal level.
This happens with both ALSA and OSS. Default rate is 44100, default bits 16.
Audio chip is Intel HD audio.
--
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=10605
Summary: Gun sounds coming from a distant source in
S.T.A.L.K.E.R.
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ambro(a)b4ever.net
The gunshot sounds and other weapon sounds (reloads, switching guns,
binoculars) seem to come from a distant source, but the volumes should be the
same for both left and right channels.
I mean the L and R volumes change as I look around - looking in a certain
direction both channels are the same, and the volume shifts as I look more left
or right.
However the footsteps sound right.
This happens with both ALSA and OSS. Default rate is 44100, default bits 16.
Audio chip is Intel HD audio.
I've attached a log with +dsound - I started the game, loaded a savegame, then
shot a few rounds in each direction, first towards the source, than left,
right, and away from. Then I minimized it and hit ctrl+c.
--
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=10266
Summary: Numpad keyboard handling is strange, Del key produces
two events
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peter(a)cendio.se
The current handling of the numeric keypad is strange in two aspects:
1) The Decimal / Comma / Del key (key 104) behaves very strange: It produces
*both* a Backspace and a comma character on my machine, when Shift is active.
2) In general, the interaction with Shift is odd. This is a quite complicated
area. Windows, QT, GTK all uses different models, but Wine does not follow
either of them. I'm suggesting that Wine should follow the QT model, which has
also been implemented in rdesktop. For details, see
http://www.cendio.com/~astrand/keyboards/numpad.txt. Patch will follow.
--
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=10100
Summary: Photoshop Elements 4 and 5 HTML welcome dialog displays
scroll bars
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: wine-shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
It looks like if the scrollable area would be equal to the client area if the
scroll bars were not present.
--
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=9930
Summary: Leaves on Oblivion's trees are rotated
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chris.kcat(a)gmail.com
Created an attachment (id=8433)
--> (http://bugs.winehq.org/attachment.cgi?id=8433)
Rotated leaves
Affects both the trees and bushes. Some appear to be rotated 90 degrees
clockwise, and others counter-clockwise. They sway as expected, they're just
off. See image.
--
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=9708
Summary: Application hangs with "fixme:ole" error
Product: Wine
Version: 0.9.45.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexander.nagorny(a)gmail.com
I ran russian accounting program called 1C. Installation went fine, but during
startup of this application console shows "fixme:ole:GetHGlobalFromILockBytes
cbSize is 7873024" and program hangs.
--
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=9348
Summary: [winmm.waveOutReset] wrong function implementation ?
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bug-track(a)fisher-privat.net
Created an attachment (id=7633)
--> (http://bugs.winehq.org/attachment.cgi?id=7633)
WINEDEBUG=fixme-all,+relay
Seems like Olympus DSSPlayer2002 use winmm.dll for sound coversion from *.dss
to *.wav but instead of doing this it silently return to the programm ( if oss
backend is used ). With alsa backend the programm will freaz at this poin:
........
0009:Ret KERNEL32.ReleaseSemaphore() retval=00000001 ret=0118586e
0009:Call KERNEL32.ReleaseSemaphore(000000d0,00000001,00000000) ret=0118586e
0009:Ret KERNEL32.ReleaseSemaphore() retval=00000000 ret=0118586e
0009:Call KERNEL32.SetEvent(000000f0) ret=0118587f
0009:Ret KERNEL32.SetEvent() retval=00000001 ret=0118587f
0009:Call KERNEL32.WaitForSingleObject(000000e8,ffffffff) ret=0119b447
0009:Ret KERNEL32.WaitForSingleObject() retval=00000000 ret=0119b447
0009:Call winmm.waveOutReset(00008000) ret=0119b454
0009:Call msacm32.drv.wodMessage(0000ffff,0000000c,001f1218,00000000,00000000)
ret=7e9fb189
0009:Call winmm.waveOutReset(00008001) ret=7c947bcd
0009:Call winealsa.drv.wodMessage(00000000,0000000c,7e9fcbfb,00000000,00000000)
ret=7e9fb189
0009:Call KERNEL32.CreateEventW(00000000,00000000,00000000,00000000)
ret=7ca29f20
0009:Ret KERNEL32.CreateEventW() retval=00000144 ret=7ca29f20
0009:Call KERNEL32.WaitForSingleObject(00000144,ffffffff) ret=7ca29fd5
May be i'm wrong about this dll but still don't know where is the problem.
--
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=11015
Summary: Save games not ordered properly.
Product: Wine
Version: 0.9.49.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gosam(a)menara.ma
This bug affects two Paradox games that I play : Victoria and Hearts Of Iron 2
in their various patches and addons.
The bug is simple, the game loading screen shows save games not ordered, when
they should be ordered by file creation date.
Attached is a screenshot to illustrate.
I can't test things with 0.9.51 since both games crash for me on startup for
any version > 0.9.48
For the component I just guessed.
--
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=10394
Summary: No$gba Open file dialog non-resizable (OFN_ENABLESIZING
not implemented)
Product: Wine
Version: 0.9.49.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
The "Open file" dialogs of any No$gba builds over version 2.4b do not allow the
user to resize the file dialog in Wine. (This feature was added in 2.4c, and
works in Windows)
When opening the Open file dialog, the user receives this fixme:
fixme:commdlg:GetFileName95 Flags 0x00800000 not yet implemented
Which tells that OFN_ENABLESIZING isn't implemented.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9599
Summary: Caesar3 hackled sound
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tijl(a)ulyssis.org
CC: M.B.Lankhorst(a)gmail.com
In the Sierra game Caesar3 sound playback is distorted (stuttering) with OSS
(FreeBSD impl) and DirectSound acceleration set to Full. When set to Emulation,
everything is ok.
--
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=10818
Summary: ssl under linux does not work
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ki_pohl(a)yahoo.com
We are using meeting maker installation. Client is version 8.6.2 for windows.
When using protocol TCP the server is discovered and sign in works properly.
When using protocol ssl the server is discovered but when trying to sign in we
get the following error message :
Could not sign in bc the server spl was not found.
We run into this problem under Ubuntu 7.10 32 bit (no firewall) and Fedora Core
7 64 bit. The ubuntu machine was a dual boot machine. When running the same
meeting maker client in Windows XP, both tcp and ssl worked.
In my understanding, the server discovery uses the udb port while the ssl
connection uses the ssl port.
--
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=10362
Summary: Lotus Notes: time is 1 hour ahead after time change
Product: Wine
Version: 0.9.44.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: webe3(a)myrealbox.com
I am running wine 0.9.44 on a Debian testing thinkpad. I am running Lotus
Notes 7.0.2 under wine. I am in Eastern time. Since the time change last
weekend, notes is displaying times on emails 1 hour ahead. My system time is
correct. Notes is set to use the system time. When I boot into windows, the
time is correct in notes. I can set my system time to other timezones and
notes always displays time 1 hour ahead.
--
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=9383
Summary: Test Drive: Unlimited No Sound with ALSA
Product: Wine
Version: CVS
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
Created an attachment (id=7676)
--> (http://bugs.winehq.org/attachment.cgi?id=7676)
-d3d,+tid,+dsound,+dsalsa,+alsa
The sound is working with OSS. With ALSA there is no sound at all and the game
crashes randomly.
--
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=10221
Summary: "make test" fails on d3d9/tests/visual.c
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On my Compaq Presario R3000 running Ubuntu Feisty, "make test"
fails because of the following errors in d3d9/tests/visual.c:
visual.c:2271: Test failed: quad 1 has color 00000000, expected 0x00ffffff
visual.c:2273: Test failed: quad 2 has color 00000000, expected 0x00ffff00
visual.c:2275: Test failed: quad 3 has color 00000000, expected 0x000000ff
visual.c:2277: Test failed: quad 4 has color 00000000, expected 0x00ffffff
visual.c:2345: Test failed: quad 1 has color 00000000, expected 0x0000ff00
visual.c:2349: Test failed: quad 3 has color 00000000, expected 0x00ff0000
--
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=11492
Summary: Perfect world entering world wait infinite
Product: WineHQ Apps Database
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alakhai(a)fastwebnet.it
Created an attachment (id=10644)
--> (http://bugs.winehq.org/attachment.cgi?id=10644)
WINEDEBUG=+sock
I installed the game perfect world on linux. I started and it worked, after i
choose the character to play with the game wait infinite on "Entering on realm"
i made a debug output with WINEDEBUG="+sock"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11223
Summary: uTorrent 1.8 alpha not working - getaddrinfo problem
Product: Wine
Version: 0.9.52.
Platform: Other
URL: http://forum.utorrent.com/viewtopic.php?id=31998&p=1
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: protomank(a)gmail.com
uTorrent 1.8 changed to getaddrinfo into the tracker hostname code.
In wine it just gives hostname not found, as if it could not detect the IP
address.
As uTorrent is one of the most used apps in wine, it would be interesting to
fix the bug before final 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=10688
Summary: PSP 7.0 installation blows up
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: c.charoux(a)gmail.com
Created an attachment (id=9530)
--> (http://bugs.winehq.org/attachment.cgi?id=9530)
snap of terminal layout
installation begins and stops with error messages on the terminal
see attached pieces
psp700fv.exe is the french psp installer running well under MS
--
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=11576
Summary: FIFA 2008 Demo: nothing seen during gameplay
Product: Wine
Version: 0.9.54.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: suawek(a)interia.eu
Created an attachment (id=10746)
--> (http://bugs.winehq.org/attachment.cgi?id=10746)
Screenshot 1
FIFA 2008 Demo works very good. all menus, sounds and other things are OK. But
when I try to start a match, the game loads, but after that the screen looks
like shown on the screenshot. I am able to get into menu, which even during
gameplay works perfectly. Also HUD is displayed properly.
The same thing happens in FIFA 2008 (full version) even in practice mode.
Attached screenshots show :
1 - movies before the match
2 - the match
3 - menu activated during the match
My OS: Ubuntu 7.10
Graphic card: ATI Radeon 9600 (newest drivers from ATI website installed
correctly)
Wine: 0.9.54
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11147
Summary: Stalker mouse movement
Product: Wine
Version: 0.9.53.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: beast(a)plitka.mine.nu
Since version 0.9.51, mouse in STALKER moves to left normal, to right at double
speed. in other games all ok
--
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=10873
Summary: Various display issues in/with Delphi
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ionic(a)ionic.de
Created an attachment (id=9765)
--> (http://bugs.winehq.org/attachment.cgi?id=9765)
Font size set to 12 in Delphi/WINE.
Hey all,
after the installation of Delphi worked without noteworthy problems, I am now
experiencing a couple of issues with WINE drawing/printing things, which might
be easily fixable due to the fact that they are just graphical problems.
First one: in Delphi one can set various font sizes for elements like Labels,
Panel and so on, which works fine in Windows. But WINE shows a strange behavior
here: when changing from font size 12 to 14 WINE does nothing, whereas in
Windows the font size really grows. Also, you could set the the size to 100 (I
did for testing purposes in the screenshots), but WINE does not change any size
but uses still the 12pt size, it seems that something is broken there within
WINE.
Well that's happening in the "designer" mode, but it seems to be the same on
runtime, so I guess there might be also other applications hitting that bug
with binary programs (Screenshots flagged with "Runtime") ...
Second one: properties changed in the object inspector should be bold when they
are not set to the default value. That's a nice feature which helps people to
see which property *they* changed and makes it easy to revert bad decisions.
However, WINE does not print them in bold font or anything
This bug is not limited to object inspector though, NO fonts in Delphi's
"design" mode are bold, even when set to that, but instead WINE ignores it,
even in the compiled program later on.
This does NOT hit the editor in Delphi which is able to show wonderful bold
text.
You can find plenty examples for this bug in the "Delphi-Size-xx" screenshots.
Third issue: that is a little bit more complicated indeed and might not be
easily to fix in contrast to the first ones.
As you may or may not know (at least you will see it) Delphi has something like
a box with verbose compiler messages at the bottom side of the editor.
Now one can double click on the first message and the editor is jumping to that
specific line where an error or a warning occured, setting the background of
that line to red for better visibility.
We fix that issue (or not ;)) and double click on the second entry in that
box... this time the editor should jump to the second error line and so on,
like above, but there are some problems with WINE.
When clicking on the second entry the editor is NOT jumping to the second
erratic line but to the first one and the first entry remains
"activated"/highlighted in that box.
It is possible to override/"fix" that behavior by clicking into that box one
time and then selecting the entry one wants to have a closer look at and THAN
double click on it/in the box.
Well, as that might be possible, it's not very comfortable and not the default
behavior and should be fixed as well. :)
So that are my three points so far, I could not find any other bugs yet. ;)
You will have some screenshots attached both with WINEs (version 0.9.51 with
that little msi patch of truiken) behavior and the one under a natively running
Windows (not on the same boxes, though, but that should not cause any problems)
in the next comment. (By the way, why does Bugzilla allow only one attachment
in the first Bug Commit?)
-Ionic
(The entries in the StringGrid you see there in two of the screenshots are just
plain fiction; neither the names nor the attributes given there correspond to
the reality. (I included this to prevent privacy legality actions.))
--
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=10981
Summary: Anti-Grain Geometry GDI Demo does not run
Product: Wine
Version: 0.9.52.
Platform: PC
URL: http://www.antigrain.com/demo/index.html
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
The Anti-Grain Geometry GDI Demo cannot run due to the following unimplemented
gdiplus functions:
GdipGraphicsClear (the one it actually crashes on)
GdipFillEllipse
GdipCreateAdjustableArrowCap
GdipDrawImagePointRectI
GdipCloneImage
--
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=10551
Summary: When emulating Sprint-Layout the mouse doesn't catch
obercts
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P4
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chiliov(a)yandex.ru
Sprint Layout - a very good and simple CAD program for PCB design. On windows
OS it works fine, but when emulated the mouse doesn't catch tracks, routes and
pads. I must make a group with the mouse to move something, and that decreases
the productivity a lot. Here's the Sprint-layout homepage:
http://www.abacom-online.de/uk/html/sprint-layout.html
See what you can do. Regards!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.