Update of /cvsroot/wgui/wgui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15853
Modified Files:
BUGS README
Log Message:
documentation fixes and updates for the 0.4.1 release
Index: README
===================================================================
RCS file: /cvsroot/wgui/wgui/README,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** README 7 Dec 2004 21:17:56 -0000 1.20
--- README 29 Sep 2005 04:01:40 -0000 1.21
***************
*** 1,10 ****
! 0.4.0
!
! This version has been a long time in coming, but it's worth it. Core to the version bump were a number of fundamental
! changes to the drawing code. The big difference is that each CWindow now has it's own SDL surface to draw to, which
! is then copied to the window surface when the screen updates. This fixes a number of Z-Order problems we had before
! and simplifies the drawing code itself. As such the API around the drawnig code has changed a bit, especially in relation
! to the coordinate systems used to draw.
Due to problems with VC6, use of the VC.NET and .NET 2003 compilers is suggested for building on Windows.
--- 1,10 ----
! 0.4.1
+ The most noticeable changes for this release involve the CFrame class. Frames now have a neat transparancy effect
+ when you drag them. A CMessageBox class based on the CFrame now allows for simple message boxes. The plan for
+ the next release is to extend this even further into same common dialogs, like a file selector.
+ Unfortunately, there's still a problem with the popup menus that can cause a crash. I've removed a call to the
+ Draw() method from the InsertMenuItem() method, which seems to have fixed the problem, even if it doesn't make
+ much sense. This may end up causing some drawing problems while adding menu items, but I'm working on figuring it out.
Due to problems with VC6, use of the VC.NET and .NET 2003 compilers is suggested for building on Windows.
Index: BUGS
===================================================================
RCS file: /cvsroot/wgui/wgui/BUGS,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** BUGS 12 Dec 2004 19:45:05 -0000 1.16
--- BUGS 29 Sep 2005 04:01:40 -0000 1.17
***************
*** 1,6 ****
! Known bugs for 0.4.0
! - There appears to be some problem with the CMenu class. TestApp1 segfaults on Fedora Linux, but commenting out the code that creates the
! submenus for the popup menu seems to fix it. So this code has been commented out for the 0.4.0 release.
- The CFrame class is far from complete. Currently the title bar does not draw correctly, and the frame doesn't clip it's child controls.
- The wGui library is currently built to the src directory instead of the lib directory when using GNU Make
--- 1,5 ----
! Known bugs for 0.4.1
! - There appears to be some problem with the CMenu class. I've commented out a call to the Draw() method from InsertMenuItem() which seems to fix things, but this may cause some drawing problems. I will get to the bottom of this eventually.
- The CFrame class is far from complete. Currently the title bar does not draw correctly, and the frame doesn't clip it's child controls.
- The wGui library is currently built to the src directory instead of the lib directory when using GNU Make
|