mirror of
https://github.com/lovell/sharp.git
synced 2025-07-12 20:10:13 +02:00
Changelog and credit for #1024, bump dependencies
This commit is contained in:
parent
d599d1f29e
commit
1a4e68096f
@ -329,10 +329,10 @@ Apply the linear formula a \* input + b to the image (levels adjustment)
|
|||||||
|
|
||||||
**Parameters**
|
**Parameters**
|
||||||
|
|
||||||
- `a` **[Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)?** multiplier (optional, default `1.0`)
|
- `a` **[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** multiplier (optional, default `1.0`)
|
||||||
- `b` **[Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)?** offset (optional, default `0.0`)
|
- `b` **[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** offset (optional, default `0.0`)
|
||||||
|
|
||||||
|
|
||||||
- Throws **[Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error)** Invalid parameters
|
- Throws **[Error](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error)** Invalid parameters
|
||||||
|
|
||||||
Returns **Sharp**
|
Returns **Sharp**
|
||||||
|
@ -4,6 +4,12 @@
|
|||||||
|
|
||||||
Requires libvips v8.6.1.
|
Requires libvips v8.6.1.
|
||||||
|
|
||||||
|
#### v0.19.1 - TBD
|
||||||
|
|
||||||
|
* Expose libvips' linear transform feature.
|
||||||
|
[#1024](https://github.com/lovell/sharp/pull/1024)
|
||||||
|
[@3epnm](https://github.com/3epnm)
|
||||||
|
|
||||||
#### v0.19.0 - 11<sup>th</sup> January 2018
|
#### v0.19.0 - 11<sup>th</sup> January 2018
|
||||||
|
|
||||||
* Expose offset coordinates of strategy-based crop.
|
* Expose offset coordinates of strategy-based crop.
|
||||||
|
@ -105,6 +105,8 @@ the help and code contributions of the following people:
|
|||||||
* [Matthew McEachen](https://github.com/mceachen)
|
* [Matthew McEachen](https://github.com/mceachen)
|
||||||
* [Jarda Kotěšovec](https://github.com/jardakotesovec)
|
* [Jarda Kotěšovec](https://github.com/jardakotesovec)
|
||||||
* [Kenric D'Souza](https://github.com/AzureByte)
|
* [Kenric D'Souza](https://github.com/AzureByte)
|
||||||
|
* [Oleh Aleinyk](https://github.com/oaleynik)
|
||||||
|
* [Marcel Bretschneider](https://github.com/3epnm)
|
||||||
|
|
||||||
Thank you!
|
Thank you!
|
||||||
|
|
||||||
|
11
package.json
11
package.json
@ -43,7 +43,8 @@
|
|||||||
"Matthew McEachen <matthew+github@mceachen.org>",
|
"Matthew McEachen <matthew+github@mceachen.org>",
|
||||||
"Jarda Kotěšovec <jarda.kotesovec@gmail.com>",
|
"Jarda Kotěšovec <jarda.kotesovec@gmail.com>",
|
||||||
"Kenric D'Souza <kenric.dsouza@gmail.com>",
|
"Kenric D'Souza <kenric.dsouza@gmail.com>",
|
||||||
"Oleh Aleinyk <oleg.aleynik@gmail.com>"
|
"Oleh Aleinyk <oleg.aleynik@gmail.com>",
|
||||||
|
"Marcel Bretschneider <marcel.bretschneider@gmail.com>"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rm -rf node_modules/ build/ vendor/ coverage/ test/fixtures/output.*",
|
"clean": "rm -rf node_modules/ build/ vendor/ coverage/ test/fixtures/output.*",
|
||||||
@ -74,12 +75,12 @@
|
|||||||
"vips"
|
"vips"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"color": "^2.0.1",
|
"color": "^3.0.0",
|
||||||
"detect-libc": "^1.0.3",
|
"detect-libc": "^1.0.3",
|
||||||
"nan": "^2.8.0",
|
"nan": "^2.8.0",
|
||||||
"semver": "^5.4.1",
|
"semver": "^5.5.0",
|
||||||
"simple-get": "^2.7.0",
|
"simple-get": "^2.7.0",
|
||||||
"tar": "^4.2.0",
|
"tar": "^4.3.2",
|
||||||
"tunnel-agent": "^0.6.0"
|
"tunnel-agent": "^0.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@ -88,7 +89,7 @@
|
|||||||
"documentation": "^5.3.5",
|
"documentation": "^5.3.5",
|
||||||
"exif-reader": "^1.0.2",
|
"exif-reader": "^1.0.2",
|
||||||
"icc": "^1.0.0",
|
"icc": "^1.0.0",
|
||||||
"mocha": "^4.1.0",
|
"mocha": "^5.0.0",
|
||||||
"nyc": "^11.4.1",
|
"nyc": "^11.4.1",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"semistandard": "^12.0.0",
|
"semistandard": "^12.0.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user