http://bugs.winehq.org/show_bug.cgi?id=14648
Summary: SigmaPlot (9,10 and 11) y-axis title rotated and shifted
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: conboy(a)chem.utah.edu
In SigmaPlot 9, 10 and 11, the y-axis label is rotated 180 degrees and shifted
to the lower left of where is should be. This problem is not related to bug:
14527 90º rotated text not shown, as the problem still persists in the
current wine version 1.1.2. This problem has been present for the past 3-years
at least.
A demo version of the program can be found at
http://www.systat.com/downloads/?sec=d008
The demo version of SigmaPlot 11 will all install. I had the best success with
win version set to Win 98. However, in order to get the program to run, you
need to install DCOM98 and then the program functions properly. At this point
problems with ole errors are eliminated but the DEMO version will not work do
to a problem with the temporary license. To get around this you need to copy
the SigmaPlot folder (demo version) from a windows machine (huge pain I know)
and then everything works.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15848
Summary: application's splash screen causes wine to hang with
100% cpu usage
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://www.pokertracker.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wtipton(a)hmc.edu
Created an attachment (id=16979)
--> (http://bugs.winehq.org/attachment.cgi?id=16979)
last 1000 lines of WINEDEBUG=+all output
PokerTracker (trial version available at www.pokertracker.com) hangs on
start-up. The application used to work with wine but stopped when a new
version (of PokerTracker) began displaying a fancy transparency-using splash
screen. Now, the splash screen itself just shows up as a grey box and the
program hangs there indefinitely using the whole CPU.
A 30 second or so trace (WINEDEBUG=+all) clocks in at around 100MB.
Presumably, it's stuck in a loop anyway, so I'll attach the last 1000 lines or
so. Let me know if I can post anything that will be more helpful.
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=10872
Summary: World In Conflict silently exits on start
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
URL: http://www.gamershell.com/download_20763.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
You need the securom stuff properly installed, else the demo wont launch.
There appears a screen with something said about having not a capable graphic
card to run the game. Just ignore this message (click cancel). After this
actually the intro movie starts but in current git it just exists without crash
or anything,
0f6e826fe02611f7c033405041888d6e083512d8 is first bad commit
commit 0f6e826fe02611f7c033405041888d6e083512d8
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Dec 5 12:35:47 2007 +0100
kernel32: Remove the no-exec fault workaround, it shouldn't be needed
anymore.
:040000 040000 dfe395974058b1a756d34cf47a8198f0c20c950f
91c584a33b06595f23e86bf3ebde483f1be113ed M dlls
--
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=19885
Summary: America's Army 3.0 fails to start
Product: Wine
Version: 1.1.28
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zonena(a)cs.rpi.edu
Created an attachment (id=23334)
--> (http://bugs.winehq.org/attachment.cgi?id=23334)
Console log
When starting AA 3.0, both from Steam and separately, it crashes during the
splash screen with a seh:setup_exception_record stack overflow.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29667
Bug #: 29667
Summary: Dragon Age: Origins DVD authenticity checks fail
(DVD_LAYER_DESCRIPTOR big endian values need to be
converted host endianness before being returned to
caller)
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
continuation of bug 26459
After all DVD structures are correctly byte-padded, the DVD authenticity checks
still fail.
The loader checks various fields in the DVD_LAYER_DESCRIPTOR returned from
IOCTL_DVD_READ_STRUCTURE.
DVD_LAYER_DESCRIPTOR description (there are several similar online resources):
http://www.osronline.com/ddkx/storage/k306_3mia.htm
--- snip ---
typedef struct _DVD_LAYER_DESCRIPTOR {
UCHAR BookVersion : 4;
UCHAR BookType : 4;
UCHAR MinimumRate : 4;
UCHAR DiskSize : 4;
UCHAR LayerType : 4;
UCHAR TrackPath : 1;
UCHAR NumberOfLayers : 2;
UCHAR Reserved1 : 1;
UCHAR TrackDensity : 4;
UCHAR LinearDensity : 4;
ULONG StartingDataSector;
ULONG EndDataSector;
ULONG EndLayerZeroSector;
UCHAR Reserved5 : 7;
UCHAR BCAFlag : 1;
UCHAR Reserved6;
} DVD_LAYER_DESCRIPTOR, *PDVD_LAYER_DESCRIPTOR;
--- snip ---
The problematic part are the following fields:
--- snip ---
StartingDataSector
Specifies the first block that contains user data. This member can have one
of the following values:
Value Meaning
0x30000 An initial block value of 0x30000 indicates that the media type
is DVD-ROM or DVD-R/-RW
0x31000 An initial block value of 0x30000 indicates that the media type
is DVD-RAM or DVD+RW
EndDataSector
Specifies the last sector of the user data in the last layer of the media.
EndLayerZeroSector
Specifies the last sector of the user data in layer zero. If this media
does not use the opposite track path method and contains multiple layers, this
value is set to zero.
--- snip ---
"Text" version of SCSI Multi-Media Commands - 6 (MMC-6) PDF:
http://hackipedia.org/Hardware/SCSI/Multimedia/SCSI%20Multimedia%20Commands…
A bit hard to read due to formatting, I reformatted the relevant clause:
--- quote ---
3.8 Bit and byte ordering
This sub-clause describes the representation of fields in a table that defines
the format of a SCSI structure (e.g., the format of a CDB).
If a field consists of more than one bit and contains a single value (e.g., a
number), the least significant bit (LSB) is shown on the right and the most
significant bit (MSB) is shown on the left (e.g., in a byte, bit 7 is the MSB
and is shown on the left; and bit 0 is the LSB and is shown on the right).
The MSB and LSB are not labeled if the field consists of 8 or fewer bits.
If a field consists of more than one byte and contains a single value, the byte
containing the MSB is stored at the lowest address and the byte containing the
LSB is stored at the highest address (i.e., big-endian byte ordering).
...
--- quote ---
These ULONGs need to be byte-swapped (host endianness) before being returned to
caller.
The internal info string (containing formatted DVD_LAYER_DESCRIPTOR values):
"DVD-ROM, ReadOnly, OTP, 2, 0x30000, 0xfcffff, 0x22577f, silver media, ,"
The game loader code verifies the "StartingDataSector" value against 0x300 and
0x310 which fails because Wine doesn't do endianness conversion.
Code:
http://source.winehq.org/git/wine.git/blob/f082eac97c3ec71de58eea85bb4de5a1…
Wine's "__APPLE__" code already does it right, using OSReadBigInt32() for big
endian to host endianness conversion.
Code:
http://source.winehq.org/git/wine.git/blob/f082eac97c3ec71de58eea85bb4de5a1…
With that fix in place at least the DVD_LAYER_DESCRIPTOR data is now properly
verified.
The internal info string will now look like this:
"DVD-ROM, ReadOnly, OTP, 2, 0x300, 0xfffffc00, 0x7f572200, silver media, ,"
Though it still fails - another bug ;-)
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=28638
Bug #: 28638
Summary: Magic the Gathering - Duels of the Planeswalkers 2012:
Sound only works in Emulated mode
Product: Wine
Version: 1.3.29
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aersunstrike(a)googlemail.com
Classification: Unclassified
Running Magic: The Gathering - Duels of the Planeswalkers 2012 (from Steam)
with Full DirectSound acceleration causes no audio to be played. Changing the
Prefix to use Emulation DirectSound fixes the issues.
Tested on Mac OS X 10.7.1 (MacBook Pro 13-inch Mid 2010 - Uses Intel HD Audio)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13017
Summary: Photoshop CS2, info window - missing info.
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rylleman(a)gmail.com
Created an attachment (id=12779)
--> (http://bugs.winehq.org/attachment.cgi?id=12779)
hidden values, info window.
The measure portion of the info window has the wrong size so that only the X:
and W: values are visible. You can't resize the window height to reveal the Y:
and H: values. (You can resize the width of the window but that does not help).
My system is Ubuntu Studio 8.04, AMD64. (No Compiz or other desktop effects
running.)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15574
Summary: PhotoShop CS2: Photoshop Save As.. dialog ignores
filename input on jpegs and names them ".jpg"
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: login(a)greenstorm.net
1) Open a jpeg image
2) Create a new layer
(This forces Photoshop to default to saving as a PSD. You should be able to do
anything that can't be saved as a jpeg instead of creating a new layer instead)
3) File-->Save As...
4) Use the pulldown tab to select JPEG.
5) Click the Filename field.
6) Hit Home to unselect ".jpeg"
7) Type a filename
8) Hit enter to save the file.
At this point, Photoshop saves your file with the name ".jpg" (it starts with a
., so it's hidden, but it's there. You'll notice is more the second time you
try it in the same folder, and Photoshop asks you if you want to overwrite the
file named ".jpg"
Workaround:
If you stop at step 7, click the filename field and hit Home again, then hit
enter, Photoshop will save your image with the correct filename.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13359
Summary: Adobe Reader 8 plugin crashes on EULA in Firefox 3
[dogfood]
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://adobe.com
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
If you install Adobe Reader 8 (used to be called Acrobat Reader),
and then try to load a .pdf in Firefox 3, it seems to have
trouble. When I tried it just now, I got a crash:
fixme:shdocvw:navigate_url Unsupported args (Flags 0x33e020:3; TargetFrameName
0x33e010:8)
fixme:urlmon:URLMonikerImpl_BindToObject use running object table
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
fixme:shdocvw:bind_to_object BindToObject failed: 80004005
fixme:shdocvw:navigate_url Unsupported args (Flags 0x33e044:3; TargetFrameName
0x33e034:8)
fixme:urlmon:URLMonikerImpl_BindToObject use running object table
fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE
fixme:shdocvw:BindStatusCallback_OnProgress status code 11
fixme:shdocvw:BindStatusCallback_OnProgress status code 14
fixme:system:SetProcessDPIAware stub!
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x021f8886).
Backtrace:
=>1 0x021f8886 in jsd3250 (+0x8886) (0x0033c970)
2 0x60596396 in xul (+0x106396) (0x0033ca54)
3 0x605e9017 in xul (+0x159017) (0x0033caa4)
4 0x7db9befd load_gecko+0x1fd(silent=0x0) [dlls/mshtml/nsembed.c:446] in
mshtml (0x0033cf34)
5 0x7db9ce55 NSContainer_Create+0x25(doc=0x15f8d8, parent=0x0)
[dlls/mshtml/nsembed.c:1643] in mshtml (0x0033cf94)
6 0x7db68ff4 HTMLDocument_Create+0x224(pUnkOuter=0x0, riid=0x15f438,
ppvObject=0x15f45c) [dlls/mshtml/htmldoc.c:1550] in mshtml (0x0033cfe4)
7 0x7db94760 ClassFactory_CreateInstance+0x20(iface=0x15eab0, pUnkOuter=0x0,
riid=0x15f438, ppvObject=0x15f45c) [dlls/mshtml/main.c:155] in mshtml
(0x0033d004)
Since this is having trouble on the EULA screen, adding keyword
'installer' (though that's debatable).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27381
Summary: Fallout New Vegas hangs by save - backtrace
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: daiman(a)seznam.cz
Under Wine ver. from 1.3.19 (at the moment to 1.3.21) Fallout New Vegas
immediately hangs during the save (backtrace).
If I downgrade to 1.3.18 it works fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.