Opentk/Documentation/Release.txt

28 lines
796 B
Plaintext
Raw Normal View History

The Open Toolkit 0.9.3 Beta Release notes
This version introduces joystick support and improves improves the mouse and
keyboard interfaces.
Please report bugs any bugs you encounter at http://www.opentk.com.
2008-01-15 16:39:32 +00:00
2008-01-15 16:39:32 +00:00
API changes
2008-01-15 16:39:32 +00:00
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:
void ButtonHandler(MouseDevice sender, MouseButton button)
{
}
2009-02-13 22:19:43 +00:00
to:
2009-02-13 22:19:43 +00:00
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.