From 69fae7f000c4769edf7e57fcacfe7a32c60328e0 Mon Sep 17 00:00:00 2001 Message-Id: <69fae7f000c4769edf7e57fcacfe7a32c60328e0.1384901265.git.calvin.metcalf@state.ma.us> From: Stuart Knightley Date: Sat, 12 Oct 2013 13:04:30 -0700 Subject: [PATCH 1/1] Add changelog --- CHANGES.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..fb485c4 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,21 @@ +# v2.0.0, 2013-10-12 + + - `JSZipBase64` has been renamed to `JSZip.base64`. + - The `data` attribute on the object returned by `zip.file(name)` has been removed. Use `asText()`, `asBinary()`, `asUint8Array()`, `asArrayBuffer()` or `asNodeBuffer()`. + + - [Fix issue with Android browser](https://github.com/Stuk/jszip/pull/60) + + - The compression/decompression methods now give their input type with the `compressInputType` and `uncompressInputType` attributes. + - Lazily decompress data when needed and [improve performance in general](https://github.com/Stuk/jszip/pull/56) + - [Add support for `Buffer` in Node.js](https://github.com/Stuk/jszip/pull/57). + - Package for CommonJS/npm. + +### v1.0.1, 2013-03-04 + + - Fixed an issue when generating a compressed zip file with empty files or folders, see #33. + - With bad data (null or undefined), asText/asBinary/asUint8Array/asArrayBuffer methods now return an empty string, see #36. + +# v1.0.0, 2013-02-14 + +- First release after a long period without version. + -- 1.8.3.2