mirror of
https://github.com/danbulant/pngjs
synced 2026-06-19 22:41:58 +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
|
||||
============
|
||||
|
||||
### 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
|
||||
|
||||
- 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",
|
||||
"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.",
|
||||
"contributors": [
|
||||
"Alexandre Paré",
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
"pngjs"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
"node": ">=8.0.0"
|
||||
},
|
||||
"main": "./lib/png.js",
|
||||
"directories": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue