forked from hammerjs/hammer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c6c3d4
commit 5e63590
Showing
3 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
# Changelog | ||
|
||
### 1.1.0dev, 2014-04-07 | ||
- Rewritten event core event handler. | ||
- Rewritten calculation of velocity and direction. | ||
- Added `EVENT_TOUCH` and `EVENT_RELEASE` event types. These events are triggered inside Hammer to do actions when the touches change. This makes some gestures more precise. | ||
### 1.1.0, 2014-04-23 | ||
- Rewritten event core event handler. Fixes some issues with the last event data, and more triggers. | ||
- Added `EVENT_TOUCH` and `EVENT_RELEASE` event types. These events are triggered inside Hammer when the touches change. This makes some gestures more precise and gives you more control. | ||
- Refactored the calculation of velocity and interimDirection/Angle. | ||
- Refactored some gestures. | ||
- Added CHANGELOG.md! | ||
- Added more unit tests. | ||
- Added code docs, YUIdoc style. | ||
- New gesture event: `gesture`. This is a lowlevel gesture which passes all data. Disabled by default. | ||
- Dropped `NO_MOUSEEVENTS` check. This still could be done by the `prevent_mouseevents` option, defined at the `touch` gesture. | ||
- The gestures `touch` and `release` are now triggered on every new touch/release instead of start/end. | ||
- Removed `transform_within_instance`. | ||
- Changed the name of the option `stop_browser_behavior` to `behavior`. | ||
- Fixed support of the fakeMultitouch plugin for IE PointerEvents | ||
- Removed the options `transform_within_instance`, it wasn't a common use-case and could be easily fixed in the event callback. | ||
- Renamed the option `stop_browser_behavior` to `behavior`. | ||
- Fixed support of the fakeMultitouch plugin for IE PointerEvents. | ||
- Improved performance of the showTouches plugin. | ||
- The Showtouches plugin doesn't require an IE check anymore. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "hammerjs", | ||
"version": "1.1.0dev", | ||
"version": "1.1.0", | ||
"main": "hammer.js", | ||
"ignore": [ | ||
"tests", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "hammerjs", | ||
"version": "1.1.0dev", | ||
"version": "1.1.0", | ||
"main": "hammer.js", | ||
"scripts": [ | ||
"hammer.js" | ||
|