Skip to content

v1.0.0

Compare
Choose a tag to compare
@Ghustavh97 Ghustavh97 released this 16 Sep 11:32
· 179 commits to master since this release

[1.0.0] - 2020/9/16

⚠️ Contains breaking changes.

Breaking Changes

  • svgfixer.fix(source, destination, options) => SVGFixer(source, destination, options).fix().
    • It was changed from a wrapper function to a method function for SVGFixer.
    • It still returns a Promise.
    • fix() no more takes in parameters, those should be passed into SVGFixer().
  • svgfixer.SVGFixer() class => SVGFixer().
    • The .setOptions(options) method has been removed, options should now be passed in class constructor as the 3rd parameter.
    • The .setSourceAndDest() method has been removed, source and destination should now be passed in class constructor as the 1st and 2nd parameters.
    • The .process() method has been removed, use .fix() instead.
    • SVGFixer() does not require the new operator anymore.
  • fixConcurrency has been removed, might be reimplemented on later versions.