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.