diff --git a/.gitignore b/.gitignore index 0dcdc58..3077f7a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ +.DS_Store coverage -image/.DS_Store node_modules -tests/archive.spec.notready.js diff --git a/image/parsers/gif.js b/image/parsers/gif.js index b69418c..c840243 100644 --- a/image/parsers/gif.js +++ b/image/parsers/gif.js @@ -431,7 +431,6 @@ export class GifParser extends EventTarget { const blockSize = this.bstream.readNumber(1); if (blockSize !== 11) throw `AE: Block size of ${blockSize}`; - // TODO: Extract EXIF / XMP / whatever. const applicationIdentifier = this.bstream.readString(8); const applicationAuthenticationCode = this.bstream.readBytes(3); const bytesArr = []; diff --git a/package.json b/package.json index 534f6ac..67fe89a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codedread/bitjs", - "version": "1.1.8", + "version": "1.2.0", "description": "Binary Tools for JavaScript", "homepage": "https://github.com/codedread/bitjs", "author": "Jeff Schiller", @@ -18,9 +18,11 @@ "untar", "file", "codecs", + "gif", "mp4", "avc", - "webm" + "webm", + "webp" ], "main": "./index.js", "type": "module",