Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ layout: default
section: main
---

### v3.1.4 2017-08-24
- consistently use our own utils object for inheritance (see [#395](https://github.com/Stuk/jszip/pull/395)).
- lower the memory consumption in `generate*` with a lot of files (see [#449](https://github.com/Stuk/jszip/pull/449)).

### v3.1.3 2016-10-06
- instanceof failing in window / iframe contexts (see [#350](https://github.com/Stuk/jszip/pull/350)).
- remove a copy with blob output (see [#357](https://github.com/Stuk/jszip/pull/357)).
Expand Down
32 changes: 16 additions & 16 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "jszip",
"repo": "Stuk/jszip",
"description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip",
"version": "3.1.3",
"keywords": [
"zip",
"deflate",
"inflate"
],
"main": "dist/jszip.js",
"license": "MIT or GPLv3",
"scripts": [
"dist/jszip.js"
]
}
{
"name": "jszip",
"repo": "Stuk/jszip",
"description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip",
"version": "3.1.4",
"keywords": [
"zip",
"deflate",
"inflate"
],
"main": "dist/jszip.js",
"license": "MIT or GPLv3",
"scripts": [
"dist/jszip.js"
]
}
Loading