http://bugs.winehq.org/show_bug.cgi?id=8625
Summary: DVD Shrink : app vanishes on GUI events
Product: Wine
Version: 0.9.38.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amurphy7701(a)yahoo.com
This bug appeared with wine 0.9.35
It is still there on 0.9.38
Description :
The app launches well, and most of the times you can start to use it normally
(analysis, encoding, ...) but it seems that on some events like passing over a
button (which focues) with the mouse, crashes the app, so it simply vanishes,
without popup error.
This behaviour never happened with 0.9.34
By the way, my config is not customized (no dll replacement, win2000 profile)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7571
------- Additional Comments From inckie(a)gmail.com 2007-06-06 15:25 -------
Created an attachment (id=6640)
--> (http://bugs.winehq.org/attachment.cgi?id=6640&action=view)
EnumFontFamilies() logs
You're right, I overlooked many things last time. Okay, so I just run the tests
on Windows again, and then on Wine, with and without my patch. For <empty>
DEFAULT_CHARSET, I got the following with Arial Black and Trebuchet MS:
Windows:
font.c:1180: enumed font "Arial Black", charset 0, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 161, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 162, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 186, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 238, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 204, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 0, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 161, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 162, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 186, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 238, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 204, weight 400, italic 0
Wine, without patch:
font.c:1180: enumed font "Arial Black", charset 0, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 238, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 204, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 161, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 162, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 186, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 186, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 0, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 238, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 204, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 161, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 162, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 186, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 186, weight 400, italic 255
Wine, with patch:
font.c:1180: enumed font "Arial Black", charset 0, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 186, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 162, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 161, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 204, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 238, weight 400, italic 0
font.c:1180: enumed font "Arial Black", charset 0, weight 400, italic 0
font.c:1180: enumed font "Trebuchet MS", charset 0, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 186, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 162, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 161, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 204, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 238, weight 400, italic 255
font.c:1180: enumed font "Trebuchet MS", charset 0, weight 400, italic 255
>From these I noticed some things:
* on Windows, many fonts enumerate VIETNAMESE_CHARSET (163) last and/or
RUSSIAN_CHARSET (204) just after;
* on Windows, only the fonts that only enumerate charset 0 have this one as
their last enumerated charset;
* without the patch, Wine does repeat BALTIC_CHARSET (186) as the last
enumerated charset with many fonts;
* with the patch, only DEFAULT_CHARSET is repeated, both at the beginning and
at the end;
* with or without the patch, I couldn't see Wine enumerating "charsets that are
not supposed to be enumerated";
* the last enumerated charset (or, for that matter, the order of the
enumeration) doesn't seem to be the real cause, as most fonts on Windows (at
least in this box) enumerate either VIETNAMESE_CHARSET or RUSSIAN_CHARSET last;
* Finally, a "grep 204" on the <empty> DEFAULT_CHARSET section of the Wine log
after applying the patch yielded 55 lines (Arial Black and Trebuchet MS
included, as you can see), and thus my patch does not lose RUSSIAN_CHARSET;
With the patch, the only charset that ever gets duplicated is DEFAULT_CHARSET,
but not for all fonts, and not the same number of times for all fonts; some
interesting examples to look at in the two Wine logs are:
* Kochi Gothic (no duplication)
* Liberation Sans (three DEFAULT_CHARSET duplications with the patch, three
BALTIC_CHARSET duplications without it)
* Loma (no duplication with the patch, two THAI_CHARSET duplications without
it)
* Shado (three DEFAULT_CHARSET duplications with the patch, three
ARABIC_CHARSET duplications without the patch).
I'm looking into this now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8624
Summary: IMGBURN-Destination field in build mode doesn't allow
anything but the drive letter
Product: Wine
Version: 0.9.34.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amurphy7701(a)yahoo.com
New versions of IMGBURN allow to build an ISO from files on the disk.
In build mode, with a file as destination, you get a field where the
destination ISO file should be displayed.
But you only get the drive letter, and an error if you try to launch the
building process.
For example, if you want to save to z:\tmp\dummy.iso, and you use the dialog to
enter this path, only the "z" remains in the field, even if in the history the
complete path is there.
Moreover, even if it is possible to enter manually the path in the field, when
you launch the building process, it still gives an error about the validity of
the full qualified path.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8623
Summary: Winsock Errors with uTorrent
Product: Wine
Version: 0.9.38.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthaeus123(a)gmail.com
For the last couple of Beta builds of uTorrent. I have been unable to connect to
any peers through the uTorrent and WINE. So, I am unable to upload or download
anything.
I ran uTorrent through the console, and while running I got a bunch of fixme
winsock error messages. I will attach all these messages. BTW I wasn't sure what
catagory it would belong to so sorry if I selected the wrong one.
I'm running ubuntu 7.04, if that helps.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8350
------- Additional Comments From regus_patoff(a)razzolink.com 2007-06-06 14:41 -------
Addition to comment 8. DNS9 loads the splash screen then gives Runtime error!
abnormal program termination.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8350
------- Additional Comments From regus_patoff(a)razzolink.com 2007-06-06 14:38 -------
fixme:reg:RegSetKeySecurity :(0x6c,4,0x388e00): stub
err:ole:xCall RpcChannelBuffer SendReceive failed, 800706c0
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x800706c0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5774
------- Additional Comments From furex.furetto+wine(a)gmail.com 2007-06-06 14:37 -------
Roger Alexander, git version cloned, built and now running.
I'll report back, as usual.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8617
juan_lang(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-misc |wine-setupapi
------- Additional Comments From juan_lang(a)yahoo.com 2007-06-06 13:29 -------
It's almost certainly in setupapi, changing component accordingly. I'm not sure
what device class that's supposed to be though, it's not mentioned in devguid.h,
and google didn't produce anything.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.