summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* Release 3.0.03.0.0Ulrich-Matthias Schäfer2018-12-011-1/+59
|
* applied fixes from 2.x branchUlrich-Matthias Schäfer2018-12-011-5/+0
|
* fix playgrounds, delete unneeded filesUlrich-Matthias Schäfer2018-12-011-1/+2
|
* Get rid of HTMLNode and Bare in favor of DomUlrich-Matthias Schäfer2018-11-241-0/+2
| | | | | - words() and element() added to Dom - svg() now returns the _parent_ of the imported element, when outerHTML is true (which means an element gets replaces)
* rename `doc()` to `root()` and `toDoc()` to `toRoot()` as dicussed in (#932)Ulrich-Matthias Schäfer2018-11-191-0/+1
|
* changed image callback according to (#931)Ulrich-Matthias Schäfer2018-11-171-0/+1
|
* cleanup a few filesUlrich-Matthias Schäfer2018-11-171-6/+2
|
* remove native() methods, add methods of types directly to elemenetUlrich-Matthias Schäfer2018-11-121-0/+1
|
* reworked parents so that it is useful now, changelogUlrich-Matthias Schäfer2018-11-121-1/+3
|
* added possibility to pass in additional attribues to element creators (#796)Ulrich-Matthias Schäfer2018-11-081-1/+2
| | | | | | e.g. - `canvas.rect({x:100})` or - `canvas.rect(100, 100, {x:100})`
* added possibility to pass attribues into a constructor like: `new ↵Ulrich-Matthias Schäfer2018-11-081-0/+1
| | | | SVG.Rect({width:100})`
* `fill()` and `stroke()` return the fill and stroke attribute when called as ↵Ulrich-Matthias Schäfer2018-11-081-0/+1
| | | | getter (#789)
* added `ax(), ay(), amove()` to change texts x and y values directly (#787)Ulrich-Matthias Schäfer2018-11-081-0/+1
|
* `SVG.Text.rebuild()` now takes every font-size into account (#512)Ulrich-Matthias Schäfer2018-11-081-0/+1
|
* implements `round()` (#916)Ulrich-Matthias Schäfer2018-11-081-0/+1
|
* add test for array getter of attrUlrich-Matthias Schäfer2018-11-081-0/+1
|
* size function of circle now only accepts one argument (#788)Ulrich-Matthias Schäfer2018-11-081-1/+3
|
* add styletagsUlrich-Matthias Schäfer2018-11-081-0/+1
|
* added insertAfter/Before, introduce attrHooks, move few methods, ↵Ulrich-Matthias Schäfer2018-11-081-0/+2
| | | | SVG.Text.textPath returns first textPath child now
* clone() does not insert the clone into the dom anymore, added beziere() and ↵Ulrich-Matthias Schäfer2018-11-071-0/+2
| | | | steps() to generate easing functions
* update changelowUlrich-Matthias Schäfer2018-11-071-5/+4
|
* changelog updateUlrich-Matthias Schäfer2018-10-181-0/+1
|
* Fixed recommendations by @Fuzzyma regarding transformsSaivan2018-03-051-1/+2
| | | | | | | | | | | | This commit fixes a number of issues with transformations: - Removed move/dmove/etc... on groups - Sugar was being passed origin instead of ox, oy - Updated the changelog - Removed parseMatrix in favor of new SVG.Matrix() - .matrix is the getter for a matrix, not .transform - added a [02:24:41] Using gulpfile ~/Desktop/svg/svg.js/gulpfile.js [02:24:41] Starting 'lint'... [02:24:43] Finished 'lint' after 2.32 s directive
* Integrated the transformations into the changes in 3.0.0Saivan2018-03-041-0/+2
|\
| * removed `size()` from `SVG.Text` to avoid name clashUlrich-Matthias Schäfer2018-03-031-0/+2
| |
* | Fixed some tests involving transforms and elementsSaivan2018-03-021-2/+5
|\|
| * update changelogUlrich-Matthias Schäfer2018-03-011-0/+3
| |
| * updated changelogUlrich-Matthias Schäfer2018-02-271-1/+2
| |
* | Implemented new transformationsSaivan2018-03-021-0/+5
|/ | | | | | 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.
* improved SVG.on and el.on (#727)Ulrich-Matthias Schäfer2017-07-281-0/+2
| | | | | - `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)
* The dom is checked for an svgjs:data attribute which is imported when ↵Ulrich-Matthias Schäfer2017-07-281-0/+1
| | | | creating an element
* add new default constructor (#714)Ulrich-Matthias Schäfer2017-07-251-0/+1
|
* Lots of breaking changes. Read below! (#646, #716)Ulrich-Matthias Schäfer2017-07-251-0/+7
| | | | | | | | | | - added `SVG.HTMLNode` which is the object wrapped around html nodes to put something in them - moved `defs()` method from `SVG.Parent` to `SVG.Element` - `SVG()` can be called with css selector, node or svg string, now. Without an argument it creates a new `SVG.Doc()` (#646) - `add()`, `put()`, `addTo()`, `putIn()` now excepts all arguments accepted by `SVG()` - `SVG.Nested` is not `overflow:visible` by default - all `SVG.*` objects now can have a node as parameter when constructing - `SVG()` does not set a default size anymore
* use `children` instead of `childNodes` (#710), renamed `previous()` to `prev()`Ulrich-Matthias Schäfer2017-07-101-0/+2
|
* renamed `fill()` method on `SVG.Gradient` and `SVG.Pattern` to `url()` (#708)Ulrich-Matthias Schäfer2017-07-071-0/+1
|
* renamed `SVG.Stop` constructor `at()` on `SVG.Gradient` to `stop()` (#707)Ulrich-Matthias Schäfer2017-07-071-2/+3
|
* reworked textPath (see #705)Ulrich-Matthias Schäfer2017-07-071-0/+5
|
* Merge branch 'master' into 3.0.0Ulrich-Matthias Schäfer2017-07-061-12/+35
|\ | | | | | | | | | | | | | | Conflicts (All resolved): dist/svg.js dist/svg.min.js package.json src/doc.js
| * bump 2.6.22.6.2Ulrich-Matthias Schäfer2017-06-051-3/+2
| |
| * changelog, gitignoreUlrich-Matthias Schäfer2017-06-041-0/+1
| |
| * Update CHANGELOG and rebuild the libRémi Tétreault2017-05-271-0/+1
| |
| * Fixed links to releasesJon Ege Ronnenberg2017-05-271-11/+14
| |
| * fixed `SVG.FX.step` so that the animation doesn't stop if an afterAll ↵Rémi Tétreault2017-05-141-0/+1
| | | | | | | | callback call animate (#677)
| * revert the previous commitRémi Tétreault2017-05-021-1/+1
| | | | | | | | remove the typeof check in the initialisation of SVG.Matrix
| * allow SVG.Matrix to be passed SVG.NumberRémi Tétreault2017-05-011-0/+1
| |
| * fixed `SVG.FX.once` so that it add its callback on the last situation ↵Rémi Tétreault2017-04-301-1/+2
| | | | | | | | instead of the current one
| * updated jasmine to 2.6.0 and added @RmiTtro as maintainerdotnetCarpenter2017-04-261-0/+11
| |
| * fixed a bug in path parser which made it stop parsing when hitting z command ↵Ulrich-Matthias Schäfer2017-04-251-0/+5
| | | | | | | | (#665)
* | `SVG.extend` now expects exactly one module or an array of modulesUlrich-Matthias Schäfer2017-04-251-0/+1
| | | | | | | | | | | | Conflicts: dist/svg.js dist/svg.min.js
* | fixed a bug in path parser which made it stop parsing when hitting z command ↵Ulrich-Matthias Schäfer2017-04-251-0/+5
| | | | | | | | | | | | | | | | | | | | (#665) Conflicts: bench/runner.html dist/svg.js dist/svg.min.js package.json