summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorSaivan <savian@me.com>2018-03-02 12:14:42 +1100
committerSaivan <savian@me.com>2018-03-02 12:14:42 +1100
commit1582edb4236628fbc7875242f159c16283b769c2 (patch)
tree1d915c21fce7ce3997edaedd92f4f1a8d8968d9d /CHANGELOG.md
parent13cf84b716cd3e06330fa0ea6f077bbe7de0eb88 (diff)
downloadsvg.js-1582edb4236628fbc7875242f159c16283b769c2.tar.gz
svg.js-1582edb4236628fbc7875242f159c16283b769c2.zip
Implemented new transformations
This commit implements the new transformation model, but it also needs to modify a few tests to fit the new format. This is still a work in progress.
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 ebbc678..e0ee5cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,6 +16,8 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- added `SVG.HTMLNode` which is the object wrapped around html nodes to put something in them
- added `random` option and `randomize()` method to `SVG.Color` -> __TODO!__
- added `precision()` method to round numeric element attributes -> __TODO!__
+- added a linter during the npm build process
+- added `npm build:dev` to let you develop without getting too annoyed
### Removed
- removed `SVG.Array.split()` function
@@ -59,6 +61,9 @@ 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()` and `el.on()` now accepts multiple comma or space seperated events e.g. "mousedown, foo bar" (#727)
+- Matrices now apply transformations like `scale`, `translate`, etc... by left multiplying them to simplify transformations
+- Transforming an element is now much simpler
+-
### Fixed
- fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__