From 272e08d8c7828f058babc62a773bb6b77065fde0 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 2 Sep 2024 00:59:19 -0700 Subject: [PATCH] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 35 ++++++++++++++++++++++++++++++ packages/diff/CHANGELOG.md | 12 ++++++++++ packages/jimp/CHANGELOG.md | 23 ++++++++++++++++++++ plugins/plugin-blur/CHANGELOG.md | 12 ++++++++++ plugins/plugin-color/CHANGELOG.md | 23 ++++++++++++++++++++ plugins/plugin-print/CHANGELOG.md | 13 +++++++++++ plugins/plugin-rotate/CHANGELOG.md | 12 ++++++++++ plugins/plugin-shadow/CHANGELOG.md | 12 ++++++++++ 8 files changed, 142 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c3ac92f..2cfa2bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +# v1.1.2 (Mon Sep 02 2024) + +### Release Notes + +#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312)) + +This PR changes the `brightness` function to behave like the css brightness function and other implementations. Previously it was doing something odd. Instead of multiplying the color channel by the multiplier value, it multiplied against the inversion of the current color. + +In the current version a value of `1` won't change the colors at all. Values above 1 will brighten the colors, values below 1 will darken the colors. + +--- + +#### 🐛 Bug Fix + +- fix incorrect usage in docs [#1318](https://github.com/jimp-dev/jimp/pull/1318) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `jimp`, `@jimp/plugin-blur`, `@jimp/plugin-shadow` + - Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `@jimp/plugin-rotate` + - Rotate short circuit [#1317](https://github.com/jimp-dev/jimp/pull/1317) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `@jimp/plugin-color` + - Fix pixelate not working well with alpha channel [#1314](https://github.com/jimp-dev/jimp/pull/1314) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `jimp`, `@jimp/plugin-color` + - Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `@jimp/plugin-print` + - Fix printing string when words are longer than max-width [#1313](https://github.com/jimp-dev/jimp/pull/1313) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + - Fix using dirname in print plugin [#1310](https://github.com/jimp-dev/jimp/pull/1310) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- `@jimp/diff` + - Jimp.diff() to make real resize before image compare [#1311](https://github.com/jimp-dev/jimp/pull/1311) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.1 (Sun Sep 01 2024) #### 🐛 Bug Fix diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index b83e34b9..1ec2de26 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.1.2 (Mon Sep 02 2024) + +#### 🐛 Bug Fix + +- Jimp.diff() to make real resize before image compare [#1311](https://github.com/jimp-dev/jimp/pull/1311) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main` diff --git a/packages/jimp/CHANGELOG.md b/packages/jimp/CHANGELOG.md index 890fff31..4c8e00c4 100644 --- a/packages/jimp/CHANGELOG.md +++ b/packages/jimp/CHANGELOG.md @@ -1,3 +1,26 @@ +# v1.1.2 (Mon Sep 02 2024) + +### Release Notes + +#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312)) + +This PR changes the `brightness` function to behave like the css brightness function and other implementations. Previously it was doing something odd. Instead of multiplying the color channel by the multiplier value, it multiplied against the inversion of the current color. + +In the current version a value of `1` won't change the colors at all. Values above 1 will brighten the colors, values below 1 will darken the colors. + +--- + +#### 🐛 Bug Fix + +- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### 🚀 Enhancement diff --git a/plugins/plugin-blur/CHANGELOG.md b/plugins/plugin-blur/CHANGELOG.md index 19fabd4d..422b25bc 100644 --- a/plugins/plugin-blur/CHANGELOG.md +++ b/plugins/plugin-blur/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.1.2 (Mon Sep 02 2024) + +#### 🐛 Bug Fix + +- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main` diff --git a/plugins/plugin-color/CHANGELOG.md b/plugins/plugin-color/CHANGELOG.md index 1914c655..4e527d74 100644 --- a/plugins/plugin-color/CHANGELOG.md +++ b/plugins/plugin-color/CHANGELOG.md @@ -1,3 +1,26 @@ +# v1.1.2 (Mon Sep 02 2024) + +### Release Notes + +#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312)) + +This PR changes the `brightness` function to behave like the css brightness function and other implementations. Previously it was doing something odd. Instead of multiplying the color channel by the multiplier value, it multiplied against the inversion of the current color. + +In the current version a value of `1` won't change the colors at all. Values above 1 will brighten the colors, values below 1 will darken the colors. + +--- + +#### 🐛 Bug Fix + +- Fix pixelate not working well with alpha channel [#1314](https://github.com/jimp-dev/jimp/pull/1314) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main` diff --git a/plugins/plugin-print/CHANGELOG.md b/plugins/plugin-print/CHANGELOG.md index 3efca3c1..31249eba 100644 --- a/plugins/plugin-print/CHANGELOG.md +++ b/plugins/plugin-print/CHANGELOG.md @@ -1,3 +1,16 @@ +# v1.1.2 (Mon Sep 02 2024) + +#### 🐛 Bug Fix + +- Fix printing string when words are longer than max-width [#1313](https://github.com/jimp-dev/jimp/pull/1313) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- Fix using dirname in print plugin [#1310](https://github.com/jimp-dev/jimp/pull/1310) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main` diff --git a/plugins/plugin-rotate/CHANGELOG.md b/plugins/plugin-rotate/CHANGELOG.md index 19fabd4d..f37c7467 100644 --- a/plugins/plugin-rotate/CHANGELOG.md +++ b/plugins/plugin-rotate/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.1.2 (Mon Sep 02 2024) + +#### 🐛 Bug Fix + +- Rotate short circuit [#1317](https://github.com/jimp-dev/jimp/pull/1317) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main` diff --git a/plugins/plugin-shadow/CHANGELOG.md b/plugins/plugin-shadow/CHANGELOG.md index 19fabd4d..422b25bc 100644 --- a/plugins/plugin-shadow/CHANGELOG.md +++ b/plugins/plugin-shadow/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.1.2 (Mon Sep 02 2024) + +#### 🐛 Bug Fix + +- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v1.1.0 (Sun Sep 01 2024) #### ⚠️ Pushed to `main`