Comparing version 1.7.4 to 1.7.6
@@ -0,1 +1,12 @@ | ||
**Version 1.7.6** | ||
- Fix: make the cacheCanvas created on the fly if not available [#3705](https://github.com/kangax/fabric.js/pull/3705) | ||
**Version 1.7.5** | ||
- Improvement: draw textbackgroundColor in one single pass when possible @stefanhayden [#3698](https://github.com/kangax/fabric.js/pull/3698) | ||
- Improvement: fire selection changed event just if text is editing [#3702](https://github.com/kangax/fabric.js/pull/3702) | ||
- Improvement: Add object property 'needsItsOwnCache' [#3703](https://github.com/kangax/fabric.js/pull/3703) | ||
- Improvement: Skip unnecessary transform if they can be detected with a single if [#3704](https://github.com/kangax/fabric.js/pull/3704) | ||
**Version 1.7.4** | ||
@@ -2,0 +13,0 @@ |
@@ -28,3 +28,3 @@ <!-- | ||
## Version | ||
1.7.4 | ||
1.7.6 | ||
@@ -31,0 +31,0 @@ ## Test Case |
@@ -5,3 +5,3 @@ { | ||
"homepage": "http://fabricjs.com/", | ||
"version": "1.7.4", | ||
"version": "1.7.6", | ||
"author": "Juriy Zaytsev <kangax@gmail.com>", | ||
@@ -8,0 +8,0 @@ "contributors": [ |
@@ -16,3 +16,4 @@ (function(){ | ||
iText.enterEditing(); | ||
equal(selection, 0, 'should not fire on enter edit'); | ||
equal(selection, 1, 'will fire on enter edit since the cursor is changing for the first time'); | ||
selection = 0; | ||
@@ -148,3 +149,4 @@ iText.selectAll(); | ||
iText.enterEditing(); | ||
equal(selection, 0, 'should not fire on enter edit'); | ||
equal(selection, 1, 'should fire on enter edit'); | ||
selection = 0; | ||
@@ -151,0 +153,0 @@ iText.selectAll(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
11287592
55990