mirror of
https://github.com/danbulant/pngjs
synced 2026-07-07 12:10:59 +00:00
v4.0.0
This commit is contained in:
parent
5d5f543c41
commit
31bedc7bb0
4 changed files with 677 additions and 3826 deletions
|
|
@ -291,6 +291,12 @@ PNG.adjustGamma(png);
|
||||||
Changelog
|
Changelog
|
||||||
============
|
============
|
||||||
|
|
||||||
|
### 4.0.0 - 09/04/2020
|
||||||
|
|
||||||
|
- Fix issue in newer nodes with using Buffer
|
||||||
|
- Fix async issue with some png files
|
||||||
|
- Drop support for Node 4 & 6
|
||||||
|
|
||||||
### 3.4.0 - 09/03/2019
|
### 3.4.0 - 09/03/2019
|
||||||
|
|
||||||
- Include whether the png has alpha in the meta data
|
- Include whether the png has alpha in the meta data
|
||||||
|
|
|
||||||
3010
package-lock.json
generated
3010
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pngjs",
|
"name": "pngjs",
|
||||||
"version": "3.4.0",
|
"version": "4.0.0",
|
||||||
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
|
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"Alexandre Paré",
|
"Alexandre Paré",
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
"pngjs"
|
"pngjs"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4.0.0"
|
"node": ">=8.0.0"
|
||||||
},
|
},
|
||||||
"main": "./lib/png.js",
|
"main": "./lib/png.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue