http://bugs.winehq.org/show_bug.cgi?id=11364
Summary: WinRar doesn't fully utilize two CPU cores in
multithreading mode
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://rarlabs.com/download.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
WinRar doesn't fully utilize two cores of an SMP system if it has detected
them. On average WinRar's CPU usage is around 140-160% on a dual core SMP
system, while the best usage will be 200%.
Anyway thank you for resolving bug 7551.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14268
Summary: carto exploreur 3 - crash
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aiglefr(a)free.fr
CC: dmitry(a)codeweavers.com
since this commit :
commit df76fe6f0cdd55568ba67489cc725813804061fd
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Tue Jun 24 16:11:40 2008 +0900
gdi32: Perform the world transform separately from font scaling.
carto exploreur3 : http://www.bayo.com/cartographie/index.php?prod=1
( no free download)
crash with this message :
wine: Unhandled page fault on write access to 0x00ff0004 at address 0x7ef9f426
(thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7ef9f426
if i comment this line ( near line num 4422 ) in
dll/gdi32/freetype.c
4415 if (!is_identity_FMAT2(&font->font_desc.matrix))
4416 {
4417 FT_Matrix worldMat;
4418 worldMat.xx = FT_FixedFromFloat(font->font_desc.matrix.eM11);
4419 worldMat.xy = FT_FixedFromFloat(font->font_desc.matrix.eM21);
4420 worldMat.yx = FT_FixedFromFloat(font->font_desc.matrix.eM12);
4421 worldMat.yy = FT_FixedFromFloat(font->font_desc.matrix.eM22);
4422 // pFT_Matrix_Multiply(&worldMat, &transMat);
4423 needsTransform = TRUE;
4424 }
carto exploreur works 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=12284
Summary: floppy images not supported or ioctl 7000 not supported
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arekm(a)maven.pl
Can't use programs that are trying to create bootable floppy drive.
My setup:
[arekm@tarm ~/.wine/dosdevices]$ ls -al a*
lrwxrwxrwx 1 arekm users 8 mar 29 23:32 a:: -> ../a.img
where a.img is floppy disk image (note: I have no real floppy hardware in this
machine - laptop)
Now:
$ wine SMU3218.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls"
fixme:win:SetLayeredWindowAttributes (0x10028,0x00000000,255,2): stub!
fixme:ntdll:server_ioctl_file Unsupported ioctl 70000 (device=7 access=0 func=0
method=0)
fixme:win:SetLayeredWindowAttributes (0x2004a,0x00000000,255,2): stub!
and the program reports that it's unable to determine floppy disk type.
I guess the problem is in unsupported ioctl or just lack of floppy images.
The program is http://carme.pld-linux.org/~arekm/SMU3218.exe (1.5MB)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14369
Summary: beware stack overflow into TEB
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14666)
--> (http://bugs.winehq.org/attachment.cgi?id=14666)
try to warn when stack overflows into TEB
It's too easy to overflow the stack and thus overwrite the TEB, particularly
when using external tools such as valgrind(memcheck) and printf :-) Try to
detect and give a warning. Patch is attached, and will be sent to
wine-patches(a)winehq.org.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14368
Summary: enable more-robust debugging of signals and exceptions
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jreiser(a)BitWagon.com
Created an attachment (id=14665)
--> (http://bugs.winehq.org/attachment.cgi?id=14665)
ease debugging at lowest level of signals and exceptions
The code which handles signals and exceptions can be made more robust by using
symbols for some bare numeric constants (EXCEPTION_WRITE_FAULT,
EXCEPTION_EXECUTE_FAULT, EXCEPTION_READ_FAULT). Debugging can be made easier
with a *printf() that uses only a few hundred bytes of stack space, in contrast
to the several kilobytes required by the *printf() of glibc. With glibc it is
too easy to overflow the stack of only 12 KiB. Patch is attached, and will be
sent to wine-patches(a)winehq.org.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11906
Summary: werkkzeug3 TE does not work
Product: Wine
Version: 0.9.56.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ripzonetriton(a)gmail.com
Created an attachment (id=11203)
--> (http://bugs.winehq.org/attachment.cgi?id=11203)
log
It installs/uninstalls fine but doesn't start properly and does not work.
Here is the download link: http://www.werkkzeug.com/
It's free to download but you have to follow a registration link.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10860
Summary: Poor graphics performance in Myst Online: Uru Live due
to software emulation
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diafero(a)arcor.de
Myst Online: Uru Live
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=9810) works
mostly fine using Wine, but what's noticeable is that the graphics is much
slower that on Windows. There I can use the best graphics settings and as long
as I'm alone in my age, the graphics is fluent (with my GeForce 8500 GT). On
Linux, I've got the lowest settings and it stutters all the time.
The reason seems to be that wine uses software emulation - I get the following
error many many times:
"fixme:d3d_draw:drawPrimitive Using software emulation because not all material
properties could be tracked"
and the CPU load is between 70% and 100%, depending on what is rendered.
--
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=14563
Summary: picasa can't play mp3 files during slideshows
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://picasa.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
To reproduce:
1) install and run picasa for windows 2.7
2) Tools / Options / Slideshow
3) check
"Play MP3 tracks during slideshow"
4) under
"Select folder of mp3 tracks", browse to where you have mp3's, then click ok.
5) Select some image, play it as a slideshow.
There won't be any music. On the console, you see
fixme:mci:MCI_LoadMciDriver Couldn't load driver for type L"MPEGVIDEO".
If you don't have a windows installation accessible from Wine,
you perhaps forgot to create a [mci] section in system.ini
You can reproduce this with the attached tiny C program; to run it,
find a .mp3 file (say, foo.mp3), and run
wine a.exe play foo.mp3 from 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=9500
Summary: [StarCraft] Hitting the Browse button hangs the game
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rzadzins(a)wit.edu.pl
When I want to create a game, exactly when I try to browse for maps, after
hitting the browse button starcraft hangs (but responds to alt-f4 and exits
eventually). This didnt happen in 0.9.42, not sure about 0.9.43, happens every
time in 0.9.44.
--
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=9610
Summary: Non-Windows(XP) behaviour for using themes in apps
Product: Wine
Version: 0.9.44.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stuart(a)houseofanime.org
DVD Profiler takes information from Windows XP and higher to determine
different themes within the program; specifically a choice between Blue,
Silver, and Olive (mapping to NormalColor, Metallic and Homestead
respectively). In addition, my standard XP install gives DVD Profiler some more
options, including Obsidian.
Attached are XP and Linux comparisons for Blue, Olive, and Obsidian (XP on top,
Linux below). When taking shots from each OS, ONLY the theme from within the
application was changed (under the view menu item) - I made no change to the
actual themes in display properties (Window XP) or Winecfg.
Also attached is a screen shot of the application when it originally opens with
the 'blue' theme (its welcome screen). Note how the welcome screen displays the
correct colours, which change appropriately when you change the theme in DVD
Profiler.
I also copied the contents of the Resources/Themes directory from XP to Wine to
see the effect. It gave additional Theme options in Winecfg, but made no
difference when the same test was performed within DVD Profiler.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.