Skip to content

Commit 272e08d

Browse files
Update CHANGELOG.md [skip ci]
1 parent a033a52 commit 272e08d

8 files changed

Lines changed: 142 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
### Release Notes
4+
5+
#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312))
6+
7+
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.
8+
9+
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.
10+
11+
---
12+
13+
#### 🐛 Bug Fix
14+
15+
- fix incorrect usage in docs [#1318](https://github.com/jimp-dev/jimp/pull/1318) ([@hipstersmoothie](https://github.com/hipstersmoothie))
16+
- `jimp`, `@jimp/plugin-blur`, `@jimp/plugin-shadow`
17+
- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie))
18+
- `@jimp/plugin-rotate`
19+
- Rotate short circuit [#1317](https://github.com/jimp-dev/jimp/pull/1317) ([@hipstersmoothie](https://github.com/hipstersmoothie))
20+
- `@jimp/plugin-color`
21+
- Fix pixelate not working well with alpha channel [#1314](https://github.com/jimp-dev/jimp/pull/1314) ([@hipstersmoothie](https://github.com/hipstersmoothie))
22+
- `jimp`, `@jimp/plugin-color`
23+
- Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie))
24+
- `@jimp/plugin-print`
25+
- Fix printing string when words are longer than max-width [#1313](https://github.com/jimp-dev/jimp/pull/1313) ([@hipstersmoothie](https://github.com/hipstersmoothie))
26+
- Fix using dirname in print plugin [#1310](https://github.com/jimp-dev/jimp/pull/1310) ([@hipstersmoothie](https://github.com/hipstersmoothie))
27+
- `@jimp/diff`
28+
- Jimp.diff() to make real resize before image compare [#1311](https://github.com/jimp-dev/jimp/pull/1311) ([@hipstersmoothie](https://github.com/hipstersmoothie))
29+
30+
#### Authors: 1
31+
32+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
33+
34+
---
35+
136
# v1.1.1 (Sun Sep 01 2024)
237

338
#### 🐛 Bug Fix

packages/diff/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Jimp.diff() to make real resize before image compare [#1311](https://github.com/jimp-dev/jimp/pull/1311) ([@hipstersmoothie](https://github.com/hipstersmoothie))
6+
7+
#### Authors: 1
8+
9+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
10+
11+
---
12+
113
# v1.1.0 (Sun Sep 01 2024)
214

315
#### ⚠️ Pushed to `main`

packages/jimp/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
### Release Notes
4+
5+
#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312))
6+
7+
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.
8+
9+
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.
10+
11+
---
12+
13+
#### 🐛 Bug Fix
14+
15+
- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie))
16+
- Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie))
17+
18+
#### Authors: 1
19+
20+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
21+
22+
---
23+
124
# v1.1.0 (Sun Sep 01 2024)
225

326
#### 🚀 Enhancement

plugins/plugin-blur/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie))
6+
7+
#### Authors: 1
8+
9+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
10+
11+
---
12+
113
# v1.1.0 (Sun Sep 01 2024)
214

315
#### ⚠️ Pushed to `main`

plugins/plugin-color/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
### Release Notes
4+
5+
#### Make brightness function behave like other implementations ([#1312](https://github.com/jimp-dev/jimp/pull/1312))
6+
7+
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.
8+
9+
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.
10+
11+
---
12+
13+
#### 🐛 Bug Fix
14+
15+
- Fix pixelate not working well with alpha channel [#1314](https://github.com/jimp-dev/jimp/pull/1314) ([@hipstersmoothie](https://github.com/hipstersmoothie))
16+
- Make brightness function behave like other implementations [#1312](https://github.com/jimp-dev/jimp/pull/1312) ([@hipstersmoothie](https://github.com/hipstersmoothie))
17+
18+
#### Authors: 1
19+
20+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
21+
22+
---
23+
124
# v1.1.0 (Sun Sep 01 2024)
225

326
#### ⚠️ Pushed to `main`

plugins/plugin-print/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Fix printing string when words are longer than max-width [#1313](https://github.com/jimp-dev/jimp/pull/1313) ([@hipstersmoothie](https://github.com/hipstersmoothie))
6+
- Fix using dirname in print plugin [#1310](https://github.com/jimp-dev/jimp/pull/1310) ([@hipstersmoothie](https://github.com/hipstersmoothie))
7+
8+
#### Authors: 1
9+
10+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
11+
12+
---
13+
114
# v1.1.0 (Sun Sep 01 2024)
215

316
#### ⚠️ Pushed to `main`

plugins/plugin-rotate/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Rotate short circuit [#1317](https://github.com/jimp-dev/jimp/pull/1317) ([@hipstersmoothie](https://github.com/hipstersmoothie))
6+
7+
#### Authors: 1
8+
9+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
10+
11+
---
12+
113
# v1.1.0 (Sun Sep 01 2024)
214

315
#### ⚠️ Pushed to `main`

plugins/plugin-shadow/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v1.1.2 (Mon Sep 02 2024)
2+
3+
#### 🐛 Bug Fix
4+
5+
- Fix blur on transparent images [#1315](https://github.com/jimp-dev/jimp/pull/1315) ([@hipstersmoothie](https://github.com/hipstersmoothie))
6+
7+
#### Authors: 1
8+
9+
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
10+
11+
---
12+
113
# v1.1.0 (Sun Sep 01 2024)
214

315
#### ⚠️ Pushed to `main`

0 commit comments

Comments
 (0)