diff --git a/Documentation/Changelog.txt b/Documentation/Changelog.txt index 28065f77..3a3a99f7 100644 --- a/Documentation/Changelog.txt +++ b/Documentation/Changelog.txt @@ -3,11 +3,27 @@ --------------------- OpenTK 0.9.2 -> 0.9.3 --------------------- + + OpenTK + + GameWindow + + Added cancelable Closing event. + + Exit() method is now thread-safe. + + Removed ExitAsync() method - use Exit() instead. + Graphics + Fixed version strings in GL.SupportsExtension(). + Input + Added support for the MouseDevice.Move and .WheelChanged events and improved MouseDevice interface (patches by ALyman). + + Platform + + MacOS support. + + Suppressed build warnings for unused methods and fields in the platform bindings. + ++ Examples + + Fixed the JuliaSetFractal and Framebuffer Object examples when the video cards don't support GLSL and FBOs, respectively. + ++ General + + Set mime-type and eol-style properties for .cs and .txt files. + + Replaced stray tabs with spaces in several files. + --------------------- diff --git a/Documentation/Release.txt b/Documentation/Release.txt index 527fdad7..1e1641c7 100644 --- a/Documentation/Release.txt +++ b/Documentation/Release.txt @@ -1,9 +1,11 @@ The Open Toolkit 0.9.3 Beta Release notes -This version introduces joystick support and improves improves the mouse and -keyboard interfaces. +This release introduces Mac OS X support, improves the MouseDevice and +GameWindow APIs and fixes several occurences of bitrot in the codebase. -Please report bugs any bugs you encounter at http://www.opentk.com. +Work will now focus on joystick and GL3.0 support. + +Please report any issues you may encounter at http://www.opentk.com. @@ -11,7 +13,7 @@ API changes The MouseDevice.ButtonDown and .ButtonUp events have changed signatures to better conform to the BCL conventions. This is a breaking change. Please change your relevant -event handlers signatures from: +event handler signatures from: void ButtonHandler(MouseDevice sender, MouseButton button) { @@ -25,4 +27,7 @@ void ButtonHandler(object sender, MouseButtonEventArgs e) The MouseDevice.XDelta, .YDelta and .WheelDelta properties have been deprecated and will be removed at a later version. Please use the Move and WheelChanged events -instead, or track mouse deltas manually. \ No newline at end of file +instead, or track mouse deltas manually. + +GameWindow.ExitAsync() is no longer available. Please use GameWindow.Exit(), +instead. \ No newline at end of file