Skip to content

Releases: jzecca/color-curve-adjust

v3.0.1

20 Oct 22:29
Compare
Choose a tag to compare

Changes

  • Any combination of channels can now be adjusted using the optional channels argument (defaults to rgb).
  • TypeScript support
  • Add licence
  • Now bundled with Parcel
  • Move CI from Travis + Coveralls to Github Actions + Codecov

Breaking changes

  • Drop support for Node < 12

  • Only one exposed method (back to v1.0.0 behavior):

    -curveAdjust.rgb('#5a2149', curve);
    +curveAdjust('#5a2149', curve);

v2.0.0

24 Jun 13:22
Compare
Choose a tag to compare

Changes

  • Each channel can now be adjusted independently using .red(), .green() and .blue() methods.

Breaking changes

  • Default behavior has been moved to .rgb() method

    -curveAdjust('#5a2149', curve);
    +curveAdjust.rgb('#5a2149', curve);