X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=ChangeLog;h=ad408eaf95161c1bbde79b61f52abd448cf1c711;hb=f075b2126dff4d88bc2811281f0d27e7c0581ab4;hp=7309f6c6a0e850404bccb3f780389040c1cec354;hpb=6a1bbf45331bb11e37fb929a839748b3a73db07e;p=freeglut diff --git a/ChangeLog b/ChangeLog index 7309f6c..ad408ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +********** Hey Emacs, please use -*- fundamental -*- mode! ********** + Changes to Freeglut: Before and on October 22, 2002: @@ -843,11 +845,63 @@ an API function and had it print out the name of the function whose call created the error condition. Removed some other "freeglut_assert_ready" invocations from functions which are only called from other functions which already check for initialization. - +*************************************************************************** +* Changes on December 31, 2004. +*************************************************************************** + +(220) Fixed bug #1079530 (glutGetProcAddress and geometric objects). + +(221) Fixed bug #1087642 (glutDeviceGet(GLUT_DEVICE_KEY_REPEAT) +unimplemented). + +(222) Fixed bug #1045054 (KeyReleaseMask typo). + +(223) Fixed bug #1040435 (glutBitmapString() bug). + +(224) Fixed first bug of #1064195 (two things when using signals): +Don't issue a warning about select when a non-blocked signal was +caught. This makes sense and is more compatible with GLUT. + +*************************************************************************** +* Changes on January 1, 2005. +*************************************************************************** + +(225) Added eMbedded Visual Tools project/workspace files to +distribution. + +(226) Renamed "configure.in" to the officially preferred +"configure.ac". + +(227) Make "gcc -Wall -pedantic -Werror" happy. + +(228) Modernized configure.ac a bit and added a rule to Makefile.am to +update libtool. Note that all gcc compiler warnings are now on by +default. + +(229) Added missing files from "src" subdirectory to dist. + +*************************************************************************** +* Changes on January 3, 2005. +*************************************************************************** +(230) Removed acconfig.h, it is deprecated and we don't need it. +(231) Cleaned up and autoconf'd the header inclusion story a bit. +(232) Improved error message a bit when no suitable visual could be found +(X11 only). +(233) Fixed part of bug #926883 (Video mode matching code, memory leaks, +fullscreen), i.e. memory leak caused by not freeing the mode lines returned +by XF86VidModeGetAllModeLines +(234) Fixed part of bug #926883 (Video mode matching code, memory leaks, +fullscreen): Now we first try to get an exact mode match, ignoring the +refresh rate if none could be found. This way the X11 part and the WinDoze +behave similarly. NOTE: We still don't behave like GLUT, because it has a +wider notion of "best" match. We have to refactor and extend freeglut quite +a bit to do that. +(235) Fixed part of bug #926883 (Video mode matching code, memory leaks, +fullscreen), i.e. issue warnings when XF86VidModeFOO fails.