Skip to content

Commit

Permalink
Updated to jszip 3.1.4
Browse files Browse the repository at this point in the history
refer: #130
  • Loading branch information
dteviot committed Sep 5, 2017
1 parent af67be2 commit 30f312f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/jszip
Submodule jszip updated 84 files
+2 −0 .travis.yml
+30 −0 CHANGES.md
+25 −23 Gruntfile.js
+2 −2 README.markdown
+1 −1 bower.json
+16 −16 component.json
+1,130 −1,450 dist/jszip.js
+6 −6 dist/jszip.min.js
+11 −9 documentation/_layouts/default.html
+3 −7 documentation/api_jszip/constructor.md
+4 −1 documentation/api_jszip/external.md
+207 −45 documentation/api_jszip/file_data.md
+9 −7 documentation/api_jszip/file_name.md
+8 −13 documentation/api_jszip/file_regex.md
+8 −10 documentation/api_jszip/filter.md
+7 −9 documentation/api_jszip/folder_name.md
+8 −13 documentation/api_jszip/folder_regex.md
+8 −10 documentation/api_jszip/for_each.md
+154 −112 documentation/api_jszip/generate_async.md
+8 −9 documentation/api_jszip/generate_internal_stream.md
+8 −8 documentation/api_jszip/generate_node_stream.md
+125 −33 documentation/api_jszip/load_async.md
+7 −0 documentation/api_jszip/load_async_object.md
+7 −12 documentation/api_jszip/remove.md
+15 −0 documentation/api_jszip/version.md
+9 −9 documentation/api_streamhelper/accumulate.md
+15 −10 documentation/api_streamhelper/on.md
+2 −6 documentation/api_streamhelper/pause.md
+4 −6 documentation/api_streamhelper/resume.md
+29 −0 documentation/api_zipobject.md
+46 −18 documentation/api_zipobject/async.md
+8 −8 documentation/api_zipobject/internal_stream.md
+6 −8 documentation/api_zipobject/node_stream.md
+12 −0 documentation/css/main.css
+77 −45 documentation/examples/download-zip-file.html
+2 −0 documentation/examples/download-zip-file.inc/blob.html
+10 −0 documentation/examples/download-zip-file.inc/blob.js
+3 −0 documentation/examples/download-zip-file.inc/data_uri.html
+10 −0 documentation/examples/download-zip-file.inc/data_uri.js
+54 −39 documentation/examples/downloader.html
+40 −0 documentation/examples/downloader.inc/downloader.html
+58 −0 documentation/examples/downloader.inc/downloader.js
+46 −0 documentation/examples/downloader.inc/helpers.js
+0 −109 documentation/examples/downloader.js
+84 −53 documentation/examples/get-binary-files-ajax.html
+1 −0 documentation/examples/get-binary-files-ajax.inc/fetch_api.html
+23 −0 documentation/examples/get-binary-files-ajax.inc/fetch_api.js
+1 −0 documentation/examples/get-binary-files-ajax.inc/jszip_utils.html
+27 −0 documentation/examples/get-binary-files-ajax.inc/jszip_utils.js
+35 −52 documentation/examples/read-local-file-api.html
+9 −0 documentation/examples/read-local-file-api.inc/read.html
+44 −0 documentation/examples/read-local-file-api.inc/read.js
+1 −1 documentation/faq.md
+1 −1 documentation/howto/read_zip.md
+1 −1 documentation/limitations.md
+1 −1 index.html
+23 −2 lib/base64.js
+0 −1 lib/crc32.js
+10 −1 lib/external.js
+29 −12 lib/flate.js
+11 −5 lib/generate/ZipFileWorker.js
+4 −0 lib/index.js
+1 −1 lib/license_header.js
+2 −2 lib/nodejs/NodejsStreamOutputAdapter.js
+13 −11 lib/object.js
+9 −0 lib/readable-stream-browser.js
+1 −1 lib/reader/DataReader.js
+0 −2 lib/reader/readerFor.js
+1 −0 lib/stream/Crc32Probe.js
+21 −7 lib/stream/StreamHelper.js
+5 −1 lib/support.js
+37 −24 lib/utils.js
+7 −7 lib/zipEntries.js
+4,166 −0 package-lock.json
+11 −5 package.json
+47 −19 test/asserts/external.js
+97 −18 test/asserts/file.js
+1 −1 test/asserts/generate.js
+50 −0 test/asserts/load.js
+22 −18 test/asserts/stream.js
+10 −0 test/asserts/version.js
+6 −0 test/helpers/node-test-utils.js
+9 −2 test/helpers/test-utils.js
+6 −5 test/index.html

0 comments on commit 30f312f

Please sign in to comment.