2008/6/7 Israel Chauca <[EMAIL PROTECTED]>:

>  The changes I have are mostly to build a universal binary and to get
> better builds of the included engines.
>
> Maybe I missunderstood, but I was expecting some engine built, there was
> none.
>

There should have some or some features of Scid will not work.

>
> Can you confirm that you compiled 3.6.24 RC1 ?
>
> Version "3.6.24" is reported by scid, it doesn't display the "RC1" though.
>

Right, I never append RCx because people should understand what they got
with file names.


>
> On the main window, the squares of the top (a8-h8) row are 2px smaller
> (65x63) than the rest and those of the left column (a1-a8) are 1px smaller
> (64x65) too. Look as if the whole chess table has been moved one px to the
> left and two up.
>

At line 917 of board.tcl you will see :

    # Windows seems to draw the squares off by one:
    if {$::windowsOS} { incr x1; incr y1; incr x2; incr y2 }
    $w.bd coords sq$i $x1 $y1 $x2 $y2
  }

could you try changing it to

    # Windows seems to draw the squares off by one:
    if {1} { incr x1; incr y1; incr x2; incr y2 }
    $w.bd coords sq$i $x1 $y1 $x2 $y2
  }

and tell us what is the result ?
This would mean windows and MacOs have the same "bug", even if my guess is
that there is something miscoded somewhere.


>
> The online live games worked fine, except that I couldn't find the timeseal
> file.
>

Timeseal is a closed source exec : you need to get from FICS web site.


> When I'm observing more than one board, the main board switches between
> them on every new move, it would be nice if there where a list or some way
> to manage multiple boards.
>

Multiple games observation is not allowed in Scid, and I will not implement
it : are there any volunteers ?

Pascal
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Scid-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/scid-users

Reply via email to