Permalink
Browse files

v1712 (#3987)

  • Loading branch information...
1 parent 95b1cac commit 8e25a716960aa8a2e93722421e417bf1e205a484 @asturur asturur committed on GitHub Jun 7, 2017
Showing with 245 additions and 187 deletions.
  1. +13 −0 CHANGELOG.md
  2. +1 −1 HEADER.js
  3. +1 −1 ISSUE_TEMPLATE.md
  4. +2 −1 README.md
  5. +125 −94 dist/fabric.js
  6. +8 −8 dist/fabric.min.js
  7. BIN dist/fabric.min.js.gz
  8. +94 −81 dist/fabric.require.js
  9. +1 −1 package.json
View
@@ -1,3 +1,16 @@
+**Version 1.7.12**
+
+- Fix: removed possible memleaks from window resize event. [#3984](https://github.com/kangax/fabric.js/pull/3984)
+- Fix: restored default cursor to noTarget only. unselectable objects get the standard hovercursor. [#3953](https://github.com/kangax/fabric.js/pull/3953)
+- Cache fixes: fix uncached pathGroup, removed cache creation at initialize time [#3982](https://github.com/kangax/fabric.js/pull/3982)
+- Improvement: nextTarget to mouseOut and prevTarget to mouseOver [#3900](https://github.com/kangax/fabric.js/pull/3900)
+- Improvement: add isClick boolean to left mouse up [#3898](https://github.com/kangax/fabric.js/pull/3898)
+- Fix: can start selection on top of non selectable object [#3892](https://github.com/kangax/fabric.js/pull/3892)
+- Improvement: better management of right/middle click [#3888](https://github.com/kangax/fabric.js/pull/3888)
+- Fix: subTargetCheck on activeObject/activeGroup was firing too many events [#3909](https://github.com/kangax/fabric.js/pull/3909)
+- Fix: After addWithUpdate or removeWithUpdate object coords must be updated. [#3911](https://github.com/kangax/fabric.js/pull/3911)
+
+
**Version 1.7.11**
- Hotfix: restore path-groups ability to render [#3877](https://github.com/kangax/fabric.js/pull/3877)
View
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
-var fabric = fabric || { version: "1.7.11" };
+var fabric = fabric || { version: "1.7.12" };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
View
@@ -25,7 +25,7 @@ Remove the template from below and provide thoughtful commentary *and code sampl
<!-- BUG TEMPLATE -->
## Version
-1.7.10
+1.7.12
## Test Case
http://jsfiddle.net/fabricjs/Da7SP/
View
@@ -255,7 +255,7 @@ For example:
### Staying in touch
-Follow [@fabric.js](http://twitter.com/fabricjs) or [@kangax](http://twitter.com/kangax) on twitter.
+Follow [@fabric.js](http://twitter.com/fabricjs) or [@kangax](http://twitter.com/kangax) or [@AndreaBogazzi](http://twitter.com/AndreaBogazzi) on twitter.
Questions, suggestions — [fabric.js on Google Groups](http://groups.google.com/group/fabricjs).
@@ -273,6 +273,7 @@ Get help in Fabric's IRC channel — irc://irc.freenode.net/#fabric.js
- [Maxim "hakunin" Chernyak](http://twitter.com/hakunin) for ideas, and help with various parts of the library throughout its life
- [Sergey Nisnevich](http://nisnya.com) for help with geometry logic
- [Stefan Kienzle](https://twitter.com/kienzle_s) for help with bugs, features, documentation, github issues
+- [Andrea Bogazzi](https://twitter.com/AndreaBogazzi) for help with bugs, features, documentation, github issues, and much more.
- [And all the other GitHub contributors](https://github.com/kangax/fabric.js/graphs/contributors)
### MIT License
Oops, something went wrong.

0 comments on commit 8e25a71

Please sign in to comment.