aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
Commit message (Collapse)AuthorAgeFilesLines
* bump 2.6.42.6.4Ulrich-Matthias Schäfer2018-02-071-1/+1
|
* bump 2.6.32.6.3Ulrich-Matthias Schäfer2017-07-211-1/+1
|
* bump 2.6.22.6.2Ulrich-Matthias Schäfer2017-06-051-12/+12
|
* updated jasmine to 2.6.0 and added @RmiTtro as maintainerdotnetCarpenter2017-04-261-6/+5
|
* fixed a bug in path parser which made it stop parsing when hitting z command ↵Ulrich-Matthias Schäfer2017-04-251-1/+1
| | | | (#665)
* added `options` to `on()`, back to sloppy mode2.6.0Ulrich-Matthias Schäfer2017-04-211-1/+1
| | | | | - added `options` object to `SVG.on()` and `el.on()` (#661) - back to sloppy mode because of problems with plugins (#660)
* bump 2.5.32.5.3Ulrich-Matthias Schäfer2017-04-171-1/+1
|
* patch release for strict mode2.5.2dotnetCarpenter2017-04-111-1/+1
|
* change my email from gmail to svgjs.comdotnetCarpenter2017-03-311-1/+1
|
* bump 2.5.12.5.1Ulrich-Matthias Schäfer2017-03-271-1/+1
|
* onclick events are now bound with SVG.on, prefixed globals, relax tests to ↵Ulrich-Matthias Schäfer2017-03-211-1/+2
| | | | work with svgdom, image loading uses eveents now, can now run jasmine tessts with svgdom when jasmine globally available
* Release 2.5.02.5.0Ulrich-Matthias Schäfer2017-03-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ### Added - added a plot and array method to `SVG.TextPath` (#582) - added `clone()` method to `SVG.Array/PointArray/PathArray` (#590) - added `font()` method to `SVG.Tspan` - added `SVG.Box()` - added `transform()` method to boxes - added `event()` to `SVG.Element` to retrieve the event that was fired last on the element (#550) ### Changed - changed CHANGELOG to follow the conventions described in [“Keep a CHANGELOG”](http://keepachangelog.com) (#578) - make the method plot a getter when no parameter is passed for `SVG.Polyline`,`SVG.Polygon`, `SVG.Line`, `SVG.Path` (related #547) - allow `SVG.PointArray` to be passed flat array - change the regexp `SVG.PointArray` use to parse string to allow more flexibility in the way spaces and commas can be used - allow `plot` to be called with 4 parameters when animating an `SVG.Line` - relative value for `SVG.Number` are now calculated in its `morph` method (related #547) - clean up the implementation of the `initAnimation` method of the FX module (#547, #552, #584) - deprecated `.tbox()`. `.tbox()` now map to `.rbox()`. If you are using `.tbox()`, you can substitute it with `.rbox()` (#594, #602) - all boxes now accept 4 values or an object on creation - `el.rbox()` now always returns the right boxes in screen coordinates and has an additional paramater to transform the box into other coordinate systems - `font()` method can now be used like `attr()` method (#620) - events are now cancelable by default (#550) ### Fixed - fixed a bug in the plain morphing part of `SVG.MorphObj` that is in the FX module - fixed bug which produces an error when removing an event from a node which was formerly removed with a global `off()` (#518) - fixed a bug in `size()` for poly elements when their height/width is zero (#505) - viewbox now also accepts strings and arrays as constructor arguments - `SVG.Array` now accepts a comma seperated string and returns array of numbers instead of strings - `SVG.Matrix` now accepts an array as input - `SVG.Element.matrix()` now accepts also 6 values - `dx()/dy()` now accepts percentage values, too but only if the value on the element is already percentage - `flip()` now flips on both axis when no parameter is passed - fixed bug with `documentElement.contains()` in IE - fixed offset produced by svg parser (#553) - fixed a bug with clone which didnt copy over dom data (#621)
* version 2.4.0 - new feature: path animation2.4.0dotnetCarpenter2017-01-141-1/+1
|
* version 2.3.7 - maintenance release2.3.7dotnetCarpenter2017-01-141-1/+1
|
* Wrapping up for 2.3.7 releasedotnetCarpenter2017-01-141-2/+1
|
* Updated docswout2017-01-141-5/+5
|
* speedup build for testsdotnetCarpenter2016-11-131-0/+1
|
* added `npm run test:quick` which aim at being fast rather than correct - ↵dotnetCarpenter2016-11-131-0/+2
| | | | great for git hooks
* added code coveragedotnetCarpenter2016-11-131-2/+4
|
* update links in package to the new project homedotnetCarpenter2016-10-251-3/+4
|
* Changed author emailwout2016-10-231-2/+2
|
* bump 2.3.62.3.6dotnetCarpenter2016-10-211-3/+7
|
* bump 2.3.52.3.5Ulrich-Matthias Schäfer2016-10-131-1/+1
|
* reinstate version number - changed it by mistakedotnetCarpenter2016-10-121-1/+1
|
* Merge branch 'unittest' of https://github.com/dotnetCarpenter/svg.js into ↵dotnetCarpenter2016-10-121-1/+1
|\ | | | | | | unittest
| * 3.0.0-0dotnetCarpenter2016-10-121-1/+1
| |
* | use 'npm version' instead of setting versions manuallydotnetCarpenter2016-10-121-1/+2
|/
* switch back to firefox for testingdotnetCarpenter2016-10-081-2/+0
|
* halt dev of chrome base solutiondotnetCarpenter2016-10-081-1/+2
|
* Many of the failing tests are rounding errors. Different browsers delivered ↵dotnetCarpenter2016-10-051-0/+1
| | | | different results. Thats why we took chrome as base.
* cli unit test setup donedotnetCarpenter2016-10-041-2/+0
|
* trying out karma-fixturedotnetCarpenter2016-10-041-0/+2
|
* using the dist version of svg.js for testing because the code is not meant ↵dotnetCarpenter2016-10-041-54/+0
| | | | to be executed individually (syntax errors)
* try to run test with individual files instead of the concated version so it ↵dotnetCarpenter2016-10-041-1/+56
| | | | is easier to track down the source file
* fixed gulp clean task not returning a PromisedotnetCarpenter2016-10-041-2/+1
|
* update dependenciesdotnetCarpenter2016-10-041-6/+14
|
* Version bumpwout2016-08-041-1/+1
|
* fixed #514 and #5162.3.3Ulrich-Matthias Schäfer2016-08-021-1/+1
| | | | | - removed `SVG.Text.clone()` which is inherited by `SVG.Element.clone()` - make element visible when call bbox on a clone
* bump 2.3.22.3.2Ulrich-Matthias Schäfer2016-06-211-1/+1
|
* bump 2.3.12.3.1Ulrich-Matthias Schäfer2016-05-051-1/+1
|
* added svg.js.d.tsrdfriedl2016-03-311-0/+1
|
* bump 2.3.02.3.0Ulrich-Matthias Schäfer2016-03-301-1/+1
|
* Email address fixwout2016-03-281-1/+1
|
* bump 2.2.52.2.5Ulrich-Matthias Schäfer2015-12-291-1/+1
|
* bump 2.2.42.2.4Ulrich-Matthias Schäfer2015-12-121-1/+1
|
* bump 2.2.32.2.3Ulrich-Matthias Schäfer2015-11-301-1/+1
|
* bump 2.2.22.2.2Ulrich-Matthias Schäfer2015-11-281-1/+1
|
* bump 2.2.1Ulrich-Matthias Schäfer2015-11-181-1/+1
|
* Bump to 2.2.02.2.0Ulrich-Matthias Schäfer2015-11-061-1/+1
|
* UMD-Wrappper with possibility to add custom window object (#352)Ulrich-Matthias Schäfer2015-10-251-2/+1
|