These are great stats to hear! Does anyone know of an easy way to
view these stats visually, ie with a bar graph over a specified time
interval, pick your components/resolutions, etc? That would be really
nice.
You can create graphs with the GD library in php.
http://www.web-max.ca/PHP/misc_7
On 8/25/06, Dan Kegel <[EMAIL PROTECTED]> wrote:
Here are some bug stats, first for Wine as a whole, then for a couple
subsystems:
I used the bugzilla query that basically said: (resolution == FIXED &&
resolution changed to FIXED && resolution changed after 200x &&
resolution changed before 20
On Fri, 2006-08-25 at 21:45 +0200, Frank Richter wrote:
> AFAICS tooltip can contain multiple "tools". Each tool is given a
> rectangle. So perhaps make one tool per icon, with matching rectangle?
Yeah, they can do that. That's the easy part. The hard part is just
managing the whole thing. Right n
On 8/25/06, Dan Kegel <[EMAIL PROTECTED]> wrote:
Here are some bug stats, first for Wine as a whole, then for a couple
subsystems:
Overall:
313 fixed in first half of 2006:
http://bugs.winehq.org/buglist.cgi?product=Wine&changedin=&chfield=resolution&chfieldfrom=2006-01-01&chfieldto=2006-05-31&c
Here are some bug stats, first for Wine as a whole, then for a couple
subsystems:
Overall:
313 fixed in first half of 2006:
http://bugs.winehq.org/buglist.cgi?product=Wine&changedin=&chfield=resolution&chfieldfrom=2006-01-01&chfieldto=2006-05-31&chfieldvalue=FIXED
333 fixed this summer:
http://bu
On 8/25/06, Alexandre Julliard <[EMAIL PROTECTED]> wrote:
> Just so I know, what is the warning? Does sizeof() return
> a 64-bit integer on those platforms?
Not on 32-bit platforms, but it's defined as long instead of int so we
still get a printf format warning.
The incredibly ugly solution I'
"Dimi Paun" <[EMAIL PROTECTED]> writes:
> Just so I know, what is the warning? Does sizeof() return
> a 64-bit integer on those platforms?
Not on 32-bit platforms, but it's defined as long instead of int so we
still get a printf format warning.
--
Alexandre Julliard
[EMAIL PROTECTED]
On Fri, August 25, 2006 2:55 pm, Alexandre Julliard wrote:
> It's causing warnings on some platforms, like MacOS.
Just so I know, what is the warning? Does sizeof() return
a 64-bit integer on those platforms?
--
Dimi Paun <[EMAIL PROTECTED]>
Lattica, Inc.
I moved back to the standard dri drivers on my laptop and noticed the problem
aswell. I have a fix for it which I'll submit soon.
Roderick
> --- Roderick Colenbrander <[EMAIL PROTECTED]> wrote:
> > What program are you using? Could you also attach a log 'WINEDEBUG=+wgl,
> > +opengl wine program.
On 25.08.2006 00:11, Frank Richter wrote:
> The problem is probably that a game installer may rely on the DX
> redistributable package to install those DLLs. I don't know if that runs
> on Wine, but if it doesn't, well, the DLL won't get where it should, too.
FIY, my last three patches fix some is
On 25.08.2006 21:10, James Liggett wrote:
> On Fri, 2006-08-25 at 20:19 +0200, Frank Richter wrote:
>> Hm, wouldn't it be more economic to try to use one tooltip for all icons?
>>From a purely memory-consumption standpoint, yes. But there are still
> issues with that. One is that we'd have to handl
On Fri, 2006-08-25 at 20:19 +0200, Frank Richter wrote:
> Hm, wouldn't it be more economic to try to use one tooltip for all icons?
>From a purely memory-consumption standpoint, yes. But there are still
issues with that. One is that we'd have to handle every mouse event to
see where the cursor is t
"Dimi Paun" <[EMAIL PROTECTED]> writes:
>> crypt32/tests: Avoid sizeof in traces.
>
> This is non-obvious -- why is that?
It's causing warnings on some platforms, like MacOS. Actually there
was a big cleanup some time ago, this one just crept back in since
then.
--
Alexandre Julliard
[EMAIL PRO
On Fri, August 25, 2006 2:34 pm, Alexandre Julliard wrote:
> Author: Alexandre Julliard <[EMAIL PROTECTED]>
> Date: Fri Aug 25 18:37:38 2006 +0200
>
> crypt32/tests: Avoid sizeof in traces.
This is non-obvious -- why is that?
--
Dimi Paun <[EMAIL PROTECTED]>
Lattica, Inc.
On 25.08.2006 07:44, James Liggett wrote:
> +icon->tooltip = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL,
> + WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
> + CW_USEDEFAULT, CW_USEDEFAULT,
> +
Alexandre Julliard wrote:
>
> I committed the patches and enabled the warning. Thanks for your work!
>
Thanks, Alexandre. I'm very grateful to you for your kind help and
encouragement, too.
-- Andy.
Dan Hipschman wrote:
> The strings are allocated in the lexer (parser.l):
>
> yylval.str = xstrdup(kw);
>
> The patch that was actually committed (using xstrdup) is most consistent.
Thank you for enlightening me on that, Dan. And I am also grateful that the
patch I submitted was kindly
And BTW, the MSDN example is at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/tooltip/tooltip.asp
On Fri, 2006-08-25 at 13:00 +0300, Oleg Krylov wrote:
> I've been working on the simmilar patch and I want make several
> comments on the patch
>
> > +
> > +/* create icon tooltip */
> > +icon->tooltip = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL,
> > +
On Fri, Aug 25, 2006 at 11:08:03AM +0100, Andrew Talbot wrote:
> What confused me - especially with my ignorance of yacc - is that I couldn't
> find a corresponding xmalloc() that assigns the char * variables that the
> above free() frees. make_var() gains storage for a var_t type, but the
> free()
On Thursday 24 August 2006 14:04, Christoph Frick wrote:
> at least this reminds me, that i wanted to test homm3 with wine as the
> native version no longer works with current
> linux/glibc/64-bit/godknowswhy.
http://appdb.winehq.org/appview.php?iVersionId=574 :)
It's missing DirectPlay for mult
Hi,
I have just updated my wine installation from CVS, and my OpenGL game is now
crashing:
X Error of failed request: GLXBadPixmap
Major opcode of failed request: 129 (GLX)
Minor opcode of failed request: 17 (X_GLXVendorPrivateWithReply)
Serial number of failed request: 441
Current s
--- Roderick Colenbrander <[EMAIL PROTECTED]> wrote:
> What program are you using? Could you also attach a log 'WINEDEBUG=+wgl,
> +opengl wine program.exe'?
It was the World of Warcraft Trial(?) Client (US version) 1.11.0, run with the
-opengl parameter,
i.e.
$ wine WoW.exe -opengl
I was also u
In light of the recent discussion about moving to GIT I would like to
let send this email to everyone on wine lists.
Since Christian's last update to his getwinegit script I have tried to
improve it to be more general and work in my special setup. I sent him
this same email but I haven't heard a
Jeff Latimer wrote:
have. However after that I end up with this:
[EMAIL PROTECTED] wing]$ git rebase --continue
You must edit all merge conflicts and then
mark them as resolved using git update-index
I also have the options of git rebase --abort and git rebase --skip
which I am not sure of
Jeff Latimer wrote:
Mike I suppose that the problem is that wrapping your mind around git
and working out how to handle patches, especially as it takes time to
get them accepted, revert them and manage trees etc is difficult. I
don't know about other but I have had a number of perplexing and
On Fri, 2006-08-25 at 19:30 +0900, Mike McCormack wrote:
>
> Maybe we should move this to the Wiki too?
Maybe. But it changes seldom enough, and I think it will be
ugly to get all the formatting right in the Wiki format.
--
Dimi Paun <[EMAIL PROTECTED]>
Lattica, Inc.
Andrew Talbot <[EMAIL PROTECTED]> writes:
> Currently, there are just eight write-strings violations remaining in the
> codebase: six in mshtml/nsembed.c (lines 271, 353, 356, 367, 432 and 1237),
> one in mshtml/nsservice.c (line 454) and one in widl/parser.c (line 848).
> So I would advocate that
Hello,
On 8/25/06, James Liggett <[EMAIL PROTECTED]> wrote:
Add support for tooltips for system tray icons.
This patch partially based on the original systray implementation by Kai Morich
<[EMAIL PROTECTED]>.
I've been working on the simmilar patch and I want make several
comments on the pat
Could you also try a log of glxinfo?
Roderick
On Friday 25 August 2006 08:43, Chris Rankin wrote:
> --- Roderick Colenbrander <[EMAIL PROTECTED]> wrote:
> > What program are you using? Could you also attach a log 'WINEDEBUG=+wgl,
> > +opengl wine program.exe'?
>
> It was the World of Warcraft Tri
Hi,
What program are you using? Could you also attach a log 'WINEDEBUG=+wgl,
+opengl wine program.exe'?
Roderick
On Thursday 24 August 2006 22:47, Chris Rankin wrote:
> Hi,
>
> I have just updated my wine installation from CVS, and my OpenGL game is
> now crashing:
>
> X Error of failed request:
31 matches
Mail list logo