[Wgui-cvs] wgui BUGS,1.14,1.15 CHANGES,1.152,1.153 README,1.19,1.20
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2004-12-07 21:18:06
|
Update of /cvsroot/wgui/wgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10897 Modified Files: BUGS CHANGES README Log Message: Documentation Updates. Index: README =================================================================== RCS file: /cvsroot/wgui/wgui/README,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** README 7 Jun 2004 18:54:15 -0000 1.19 --- README 7 Dec 2004 21:17:56 -0000 1.20 *************** *** 1,12 **** ! 0.3.3 ! This release only contains a few minor changes, the most notable of which is the addition of the CRangeControl class, ! which is now the base class for the CProgressBar and CScrollBar controls. - This is to be the last 0.3.x release. The next release will hopefully be the 0.4.0 release which will have some fairly significant - changes to the drawing code. The intention of these changes is to fix several bugs (like the Z-Order bug), improve performance, - and enable us to add some new cool features. Due to problems with VC6, use of the VC.NET and .NET 2003 compilers is suggested for building on Windows. We've now included the Bitstream Vera font family as the default font for wGui. --- 1,13 ---- ! 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. + (VC6 will work, but it gives *a lot* of useless warnings) We've now included the Bitstream Vera font family as the default font for wGui. Index: CHANGES =================================================================== RCS file: /cvsroot/wgui/wgui/CHANGES,v retrieving revision 1.152 retrieving revision 1.153 diff -C2 -d -r1.152 -r1.153 *** CHANGES 1 Sep 2004 18:57:30 -0000 1.152 --- CHANGES 7 Dec 2004 21:17:56 -0000 1.153 *************** *** 22,25 **** --- 22,26 ---- + Bugfix CTextBox: The mouse cursor is no longer changed to an IBeam when over an text box if it's also over a floating window + Bugfix CToolTip: Tooltips will not appear if the mouse is being held over a floating window + + TestApp2 no longer uses fullscreen mode. This will likely change back in the future as the CFrame class develops. Index: BUGS =================================================================== RCS file: /cvsroot/wgui/wgui/BUGS,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** BUGS 7 Jun 2004 18:54:05 -0000 1.14 --- BUGS 7 Dec 2004 21:17:55 -0000 1.15 *************** *** 1,6 **** ! Known bugs for 0.3.3 ! - Bug #825743 - Popup menu Z-order can run into problems when popups overlap. This has been partially fixed, but may still flicker. ! - Floating windows may flicker in debug builds and on slower machines - 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.0 ! - 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 |