X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=ChangeLog;h=7f3f7061a3b48af4bc8a1c6547839632def2d8de;hb=90a9927d3b46439645e1c1d1aa9709bc106451be;hp=7309f6c6a0e850404bccb3f780389040c1cec354;hpb=6a1bbf45331bb11e37fb929a839748b3a73db07e;p=freeglut diff --git a/ChangeLog b/ChangeLog index 7309f6c..7f3f706 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,162 @@ 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. + +(236) Reworked the X11 part of glutSetCursor, fixing bug #764187 (Variable +mouse pointers don't work) on the way: + * Use slightly more compatible cursor shapes for GLUT_CURSOR_RIGHT_ARROW + and GLUT_CURSOR_LEFT_ARROW. + * Refactored and fixed the erroneous code for GLUT_CURSOR_NONE. + * Removed the incorrect use of XFreeCursor and use a cache of cursors + instead. Cursors are never freed now, we could do this e.g. via + reference countig if this is really needed. + * Fixed error handling. + * Unknown cursor types are an error now. + * Now the window state always corresponds to the wanted cursorID, even in + the case of GLUT_CURSOR_FULL_CROSSHAIR. + +************************************************************************** +* Changes between January 3 and April 15, 2005. +************************************************************************** +(237) Moved the "#include "config.h"" statement to the header file + +(238) Changed the "assert" checks to more dignified statements that print + useful error messages before exiting. Also added initialization + checking to all GLUT interface functions. + +(239) Changed some menu code around to remove duplicate code. + +(240) Implemented the ability to attach a menu to multiple windows. + +(241) Implemented the "GLUT_AUXn" color buffers for X11 and Windows + +(242) Improved the cursor handling marginally; also removed some duplicate + cursor code + +************************************************************************** +* Changes on April 15, 2005. +************************************************************************** +(243) Changed some comments in "freeglut_internal.h" as a test for the new + pCVSc project. + +(244) Changed the names of the "fgStructure.Window" and ".Menu" variables + to ".CurrentWindow" and ".CurrentMenu" to make maintenance easier. + +(245) Tried implementing Yuri D'Elia's game mode changes. + +************************************************************************** +* Changes in late April 2005 +************************************************************************** +(246) Added French version of README (called LISEZ-MOI") and a Windows-specific + version of README describing how to operate under MSVC + +(247) Changed definitions of "FETCH_WCB" and "INVOKE_WCB" to allow compilation + with GCC 4.0 + +(248) Changed the Makefile path to the "include" directory to allow for + off-directory compilation + +(249) Added some initializations and changed a hard-coded number of mouse + buttons to a defined constant + +(250) Added code to the Windows timing to allow for millisecond granularity + in the execution time + +(251) Fixed a reported bug in the fullscreen mode + +(252) Added window exit event handling to the Windows code; also put in a note + about adding window entry event handling + +************************************************************************** +* Changes in early May 2005 -- in the run-up to 2.4.0 +************************************************************************** +(253) Added handling for negative position specifications for subwindows + +(254) Made the display string handling in "freeglut_init.c" ever so slightly + more general + +(255) Changed the key repeat flag initialization from "GL_TRUE" to + "GLUT_KEY_REPEAT_ON" to make it consistent with its use elsewhere. + +(256) Removed the unused joystick function "fghJoystickParseElement" + +(257) Added a comment to "glutCreateWindow" about why "freeglut" does not + match GLUT when "glutInit" is not called. +(258) Removed an unused "Pixmap" variable +(259) Changed the "shapes" demo to the OpenGLUT "shapes" demo, which is much + niftier. +(260) Necessary compilation fixes for newer GCCs (e.g. 3.3.5, 4.0). + Side effect: The shapes demo has a new 'i' key now. +(261) Fixed a cuboctahedron vertex, implemented wire mode for that shape. +************************************************************************** +* 8 May 2004 -- 2.4.0 Release Candidate 1 Released +************************************************************************** +(262) Fixed the "vfprintf" for Windows so that error messages get printed + out again +(263) Implemented Takeshi Nishimura's menu fixes. Menus should work now.