summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-03-01 13:47:34 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-03-01 13:47:34 +0100
commitc4373581ab49dff509a857eb4e896f00fc81add6 (patch)
tree750b7f32d058d20343f2d743da34566f2570560b /CHANGELOG.md
parentfe15a167813ddc27cccfa91962ab7a1171225dc9 (diff)
downloadsvg.js-c4373581ab49dff509a857eb4e896f00fc81add6.tar.gz
svg.js-c4373581ab49dff509a857eb4e896f00fc81add6.zip
update changelog
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1863f8..e6a8a71 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- added `text()` method to `SVG.Path` to create a textPath from this path (#705)
- added `SVG.HTMLNode` which is the object wrapped around html nodes to put something in them
- added `dispatch()` method on `SVG.Element` which returns the dispatched event for event cancelation (#550)
+- added `isRoot()` on `SVG.Doc` (#809)
- added `random` option and `randomize()` method to `SVG.Color` -> __TODO!__
- added `precision()` method to round numeric element attributes -> __TODO!__
@@ -27,6 +28,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- removed feature to set style with css string (e.g. "fill:none;display:block;")
- removed `loaded()` and `error()` method on `SVG.Image` (#706)
- removed sub-pixel offset fix
+- removed `SVG.Nested` (#809)
### Changed
- gradients now have there corresponding node as type and not only radial/linear
@@ -60,6 +62,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- SVG.Elements constructor now tries to import svgjs:data from the node
- `SVG.on()` calls the listener in the context of the passed object. el.on always uses the svg.js object as context
- `SVG.on()/off()` and `el.on()/off()` now accepts multiple comma or space seperated events e.g. "mousedown, foo bar" (#727)
+- merged `SVG.Doc` and `SVG.Nested`, added `isRoot()` on `SVG.Doc()` (#809)
### Fixed
- fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__