diff --git a/changelog.txt b/changelog.txt index 6dcb9637..1ea02eb6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,16 @@ OPENSEADRAGON CHANGELOG * BREAKING CHANGE: Renamed EventHandler to EventSource (#225) * BREAKING CHANGE: MouseTracker event handler method signatures changed to 'handlerMethod( tracker, eventData)' (#23) +* BREAKING CHANGE: Event names changed for consistency: changed to lower case, compound names hyphenated, and "on" prefixes removed (#226): +* Viewer "animationstart" changed to "animation-start" +* Viewer "animationfinish" changed to "animation-finish" +* Button "onPress" changed to "press" +* Button "onRelease" changed to "release" +* Button "onClick" changed to "click" +* Button "onEnter" changed to "enter" +* Button "onExit" changed to "exit" +* Button "onFocus" changed to "focus" +* Button "onBlur" changed to "blur" * MouseTracker now passes the original event objects to its handler methods (#23) * MouseTracker now supports an optional 'moveHandler' method for tracking mousemove events (#215) * Fixed: Element-relative mouse coordinates now correct if the element and/or page is scrolled (using new OpenSeadragon.getElementOffset() method) (#131)