diff --git a/README.md b/README.md index 9b75fde..89307ae 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,15 @@ Based on [pngjs](https://github.com/niegowski/node-pngjs) with the follow enhanc * Support for reading 1,2,4 & 16 bit files * Support for reading interlace files + * Support for reading transparent colours * Sync interface as well as async * API compatible with pngjs and node-pngjs +Known lack of support for: + + * Animation + * Gamma correction in 16 bit files + Tests ===== @@ -154,6 +160,9 @@ Gamma of image (0 if not specified) Changelog ============ +### 0.0.2 - 02/08/2015 + - Bugfixes to interlacing, support for transparent colours + ### 0.0.1 - 02/08/2015 - Initial release, see pngjs for older changelog. diff --git a/package.json b/package.json index b9909d4..6ed6b83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pngjs2", - "version": "0.0.1", + "version": "0.0.2", "description": "Pure JS PNG encoder/decoder", "contributors": ["Kuba Niegowski", "Luke Page", "Pietajan De Potter", "Steven Sojka", "Alexandre Paré", "Gaurav Mali", "liangzeng"], "homepage": "https://github.com/lukeapage/pngjs2",