summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-07-07 09:43:02 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-07-07 09:43:02 +0200
commitb9ce105304f8d381ea7731cd12c2b9c499b4f37c (patch)
treef01a20b9bc3bff84d7f0c80b8e0bd744d70d2db8 /CHANGELOG.md
parentf1bd0b48ea9cc3a499c02c524924e81eb97e9a6e (diff)
downloadsvg.js-b9ce105304f8d381ea7731cd12c2b9c499b4f37c.tar.gz
svg.js-b9ce105304f8d381ea7731cd12c2b9c499b4f37c.zip
reworked textPath (see #705)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b18c88b..f1203f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
### Added
- added `SVG.$()` and `SVG.$$()` which will query for one/multiple elements
+- added `text()` method to `SVG.Path` to create a textPath from this path (#705)
- added `random` option and `randomize()` method to `SVG.Color` -> __TODO!__
- added `precision()` method to round numeric element attributes -> __TODO!__
@@ -39,6 +40,10 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- changed `style()` to `css()`. Now accepts array as input and returns object when no argument given (#517)
- ids are not generated upon creation anymore. Instead they are generated when requested (#559)
- `SVG.extend()` now expects exactly one module or an array of modules
+- `SVG.Text.path()` now returns an instance of SVG.TextPath (#705)
+- `SVG.Text.path()` does not move all contents to the textPath (#705)
+- `SVG.TextPath` now inherits from `SVG.Text` and can be manipulated the same way (#705)
+- `SVG.Text.textPath()` now returns all textPaths in the text element (#705)
### Fixed
- fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__