aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix the implementation of the skew transformRémi Tétreault2016-11-024-19/+135
| | | | | Also fix a bug where when calling scale with 3 parameters, cx was not set with the right value.
* Merge pull request #538 from RmiTtro/make-fx-at-reverse-awareUlrich-Matthias Schäfer2016-11-024-283/+1279
|\ | | | | Make SVG.FX.at reverse aware
| * Make the code in the FX module simplerRémi Tétreault2016-11-014-283/+1279
|/ | | | | | | | | | | | | | | | | Here are the changes that have been made: - The loop counter is now incrementing (from 0 to loops) - The loop counter increment even when loops is true - Add absPos, the absolute position of an animation which is its position in the context of its complete duration (including delay and loops) - Make the methods speed, pause/resume affect the delay - The method step no longer needs to recalculate the value of situation.start - Add a second parameter to the method at to allow it to receive an absolute position - Fix the bug where the method at invert the passed position while the animation is running backward Also, I modified the tests of the FX module that required timing to use Jasmine Clock, so now it takes less than 1 second to run all the tests!
* changelogUlrich-Matthias Schäfer2016-11-011-1/+2
|
* Merge pull request #543 from RmiTtro/individual-transform-separated-by-commaUlrich-Matthias Schäfer2016-11-014-9/+46
|\ | | | | Make matrixify work with transformation chain separated by commas
| * Make matrixify work with transformation chain separated by commasRémi Tétreault2016-11-014-9/+46
|/ | | | | | According to the SVG spec, transformation chain can be separated by whitespace and/or commas. The method matrixify was not working with transformation chain separated by commas. This commit should fix that bug.
* update links in package to the new project homedotnetCarpenter2016-10-251-3/+4
|
* update README links to point to the new project homedotnetCarpenter2016-10-252-16/+21
|
* fix spellingdotnetCarpenter2016-10-231-1/+1
|
* Changed author emailwout2016-10-231-2/+2
|
* bump 2.3.62.3.6dotnetCarpenter2016-10-214-5/+10
|
* added test for silently fixing wrong point parameters to SVG.PointArray + ↵dotnetCarpenter2016-10-202-2/+9
| | | | better descriptions for SVG.PointArray tests
* fix leading/trailing space test casedotnetCarpenter2016-10-202-4/+4
| | | | | odd number of points is invalid in SVG See https://svgwg.org/svg2-draft/shapes.html#DataTypePoints
* handle leading and trailing spacesdotnetCarpenter2016-10-204-4/+9
|
* replace call to filter function with better regexdotnetCarpenter2016-10-203-5/+5
|
* correct naming of testUlrich-Matthias Schäfer2016-10-201-1/+1
|
* speed up travis tests by caching the node_modules folder - should shave off ↵dotnetCarpenter2016-10-201-0/+4
| | | | 23 seconds of test run time
* hotfix (#529)Ulrich-Matthias Schäfer2016-10-204-5/+10
|
* fix wrong doc for local testing (#537)Jon Ege Ronnenberg2016-10-181-3/+2
| | | | | | * fix wrong doc for local testing * fix html ending - thanks @RmiTtro
* changelogUlrich-Matthias Schäfer2016-10-191-1/+2
|
* Merge pull request #536 from RmiTtro/fx-speed-like-other-libUlrich-Matthias Schäfer2016-10-184-31/+203
|\ | | | | Make SVG.FX.speed act more like others animations libraries
| * Change the SVG.FX attribute spd to _speedRémi Tétreault2016-10-174-41/+41
| | | | | | | | | | This change is to follow the convention already put forward by the _target attribute.
| * Add speed to SVG.Element and also add documentation to speedRémi Tétreault2016-10-173-7/+35
| |
| * Make the tests of timeToPos() and posToTime() easier to understandRémi Tétreault2016-10-171-6/+6
| |
| * Make tests relating to speed easier to understandRémi Tétreault2016-10-171-42/+90
| |
| * Make speed(0) pause the animationRémi Tétreault2016-10-174-6/+15
| |
| * Make SVG.FX.speed act more like others animations librariesRémi Tétreault2016-10-164-29/+116
| | | | | | | | | | | | For example, a call .speed(2) would make the animation 2 times faster. If you then call .speed(4), this would make the animation 4 times faster. And a call .speed(1) would make it go back to normal speed.
* | Fix Build and Test sectionJon Ege Ronnenberg2016-10-171-1/+11
|/ | | Fix command to build and added a small section about testing
* changelogUlrich-Matthias Schäfer2016-10-161-2/+3
|
* Merge pull request #534 from RmiTtro/fix-afterall-testUlrich-Matthias Schäfer2016-10-161-1/+1
|\ | | | | Fix the test of SVG.FX.afterAll
| * Fix the test of SVG.FX.afterAllRémi Tétreault2016-10-151-1/+1
| |
* | use default linux image, change name of nvm node version to stable instead ↵dotnetCarpenter2016-10-161-4/+6
|/ | | | of node - it is the same version but stable is a better name, build the source before testing in case someone only push changes to the source and don't build
* changelog updatedUlrich-Matthias Schäfer2016-10-161-3/+6
|
* Merge pull request #532 from RmiTtro/fix-fx-loopUlrich-Matthias Schäfer2016-10-164-8/+165
|\ | | | | Make SVG.FX.loop modify the last situation instead of the current one
| * Rebuild of the libraryRémi Tétreault2016-10-152-4/+7
| |
| * Add tests for SVG.FX.loopRémi Tétreault2016-10-151-1/+153
| |
| * Make SVG.FX.loop modify the last situation instead of the current oneRémi Tétreault2016-10-151-3/+5
|/
* Fixed error in READMEWout2016-10-131-2/+2
|
* Update LICENSE.txtWout2016-10-131-2/+2
| | | Updated date in license
* bump 2.3.52.3.5Ulrich-Matthias Schäfer2016-10-134-6/+6
|
* Merge pull request #529 from dotnetCarpenter/pointarrayUlrich-Matthias Schäfer2016-10-125-27/+40
|\ | | | | string from PointArray is now correctly parsed (fixes #525)
| * update README for version 2.3.5 which I believe this PR will be part ofdotnetCarpenter2016-10-121-0/+1
| |
| * all tests pass - All your base are belong to usdotnetCarpenter2016-10-127-657/+23
| |\ | |/ |/|
* | fixed id in test which is different in headless browserUlrich-Matthias Schäfer2016-10-121-2/+2
| |
* | Removed wrong tests in sugar.js, fixed remaining tests. Made fill and stroke ↵Ulrich-Matthias Schäfer2016-10-126-648/+23
| | | | | | | | a nop when no argument given
* | remove redundant testUlrich-Matthias Schäfer2016-10-121-8/+0
| |
| * re-include dist folderdotnetCarpenter2016-10-121-1/+1
| |
| * remove dist folder from PRdotnetCarpenter2016-10-121-1/+1
| |
| * sorry the last commit was nonsens. This one is proper tested.dotnetCarpenter2016-10-123-20/+12
| |
| * changing implementation according to review by @FuzzymadotnetCarpenter2016-10-122-16/+8
| |