Skip to content

Commit 8d785e8

Browse files
committed
Add JSZip 2.4.0
1 parent e4fbbe7 commit 8d785e8

File tree

5 files changed

+9111
-0
lines changed

5 files changed

+9111
-0
lines changed

_InstallPackages/jszip_2.4.0.zip

71.5 KB
Binary file not shown.

jszip_2.4.0/CHANGES.htm

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<article style="max-height: 20em; overflow: auto;">
2+
<h3>v2.4.0 2014-07-24</h3>
3+
4+
<ul class="task-list">
5+
<li>update pako to 0.2.5 (see <a href="https://github.com/Stuk/jszip/issues/156">#156</a>).</li>
6+
<li>make JSZip work in a Firefox addon context (see <a href="https://github.com/Stuk/jszip/issues/151">#151</a>).</li>
7+
<li>add an option (<code>createFolders</code>) to control the subfolder generation (see <a href="https://github.com/Stuk/jszip/issues/154">#154</a>).</li>
8+
<li>allow <code>Buffer</code> polyfill in the browser (see <a href="https://github.com/Stuk/jszip/issues/139">#139</a>).</li>
9+
</ul>
10+
11+
<h3>v2.3.0 2014-06-18</h3>
12+
13+
<ul class="task-list">
14+
<li>don't generate subfolders (see <a href="https://github.com/Stuk/jszip/issues/130">#130</a>).</li>
15+
<li>add comment support (see <a href="https://github.com/Stuk/jszip/issues/134">#134</a>).</li>
16+
<li>on <code>ZipObject#options</code>, the attributes <code>date</code> and <code>dir</code> have been deprecated and are now on <code>ZipObject</code> (see <a href="http://stuk.github.io/jszip/documentation/upgrade_guide.html">the upgrade guide</a>).</li>
17+
<li>on <code>ZipObject#options</code>, the attributes <code>base64</code> and <code>binary</code> have been deprecated (see <a href="http://stuk.github.io/jszip/documentation/upgrade_guide.html">the upgrade guide</a>).</li>
18+
<li>deprecate internal functions exposed in the public API (see <a href="https://github.com/Stuk/jszip/issues/123">#123</a>).</li>
19+
<li>improve UTF-8 support (see <a href="https://github.com/Stuk/jszip/issues/142">#142</a>).</li>
20+
</ul>
21+
22+
<h3>v2.2.2, 2014-05-01</h3>
23+
24+
<ul class="task-list">
25+
<li>update pako to v0.2.1, fix an error when decompressing some files (see <a href="https://github.com/Stuk/jszip/issues/126">#126</a>).</li>
26+
</ul>
27+
28+
<h3>v2.2.1, 2014-04-23</h3>
29+
30+
<ul class="task-list">
31+
<li>fix unreadable generated file on Windows 8 (see <a href="https://github.com/Stuk/jszip/issues/112">#112</a>).</li>
32+
<li>replace zlibjs with pako.</li>
33+
</ul>
34+
35+
<h3>v2.2.0, 2014-02-25</h3>
36+
37+
<ul class="task-list">
38+
<li>make the <code>new</code> operator optional before the <code>JSZip</code> constructor (see <a href="https://github.com/Stuk/jszip/pull/93">#93</a>).</li>
39+
<li>update zlibjs to v0.2.0.</li>
40+
</ul>
41+
42+
<h3>v2.1.1, 2014-02-13</h3>
43+
44+
<ul class="task-list">
45+
<li>use the npm package for zlib.js instead of the github url.</li>
46+
</ul>
47+
48+
<h3>v2.1.0, 2014-02-06</h3>
49+
50+
<ul class="task-list">
51+
<li>split the files and use Browserify to generate the final file (see <a href="https://github.com/Stuk/jszip/pull/74">#74</a>)</li>
52+
<li>packaging change : instead of 4 files (jszip.js, jszip-load.js, jszip-inflate.js, jszip-deflate.js) we now have 2 files : dist/jszip.js and dist/jszip.min.js</li>
53+
<li>add component/bower support</li>
54+
<li>rename variable: 'byte' is a reserved word (see <a href="https://github.com/Stuk/jszip/pull/76">#76</a>)</li>
55+
<li>add support for the unicode path extra field (see <a href="https://github.com/Stuk/jszip/pull/82">#82</a>)</li>
56+
<li>ensure that the generated files have a header with the licenses (see <a href="https://github.com/Stuk/jszip/pull/80">#80</a>)</li>
57+
</ul>
58+
59+
<h1>v2.0.0, 2013-10-20</h1>
60+
61+
<ul class="task-list">
62+
<li>
63+
<code>JSZipBase64</code> has been renamed to <code>JSZip.base64</code>.</li>
64+
<li><p>The <code>data</code> attribute on the object returned by <code>zip.file(name)</code> has been removed. Use <code>asText()</code>, <code>asBinary()</code>, <code>asUint8Array()</code>, <code>asArrayBuffer()</code> or <code>asNodeBuffer()</code>.</p></li>
65+
<li><p><a href="https://github.com/Stuk/jszip/pull/60">Fix issue with Android browser</a></p></li>
66+
<li><p>The compression/decompression methods now give their input type with the <code>compressInputType</code> and <code>uncompressInputType</code> attributes.</p></li>
67+
<li>Lazily decompress data when needed and <a href="https://github.com/Stuk/jszip/pull/56">improve performance in general</a>
68+
</li>
69+
<li>
70+
<a href="https://github.com/Stuk/jszip/pull/57">Add support for <code>Buffer</code> in Node.js</a>.</li>
71+
<li>Package for CommonJS/npm.</li>
72+
</ul>
73+
74+
<h3>v1.0.1, 2013-03-04</h3>
75+
76+
<ul class="task-list">
77+
<li>Fixed an issue when generating a compressed zip file with empty files or folders, see #33.</li>
78+
<li>With bad data (null or undefined), asText/asBinary/asUint8Array/asArrayBuffer methods now return an empty string, see #36.</li>
79+
</ul>
80+
81+
<h1>v1.0.0, 2013-02-14</h1>
82+
83+
<ul class="task-list">
84+
<li>First release after a long period without version.</li>
85+
</ul>
86+
</article>

jszip_2.4.0/LICENSE.htm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<p>JSZip is dual-licensed. You may use it under the MIT license <em>or</em> the GPLv3
2+
license. See <a href="https://github.com/Stuk/jszip/blob/v2.4.0/LICENSE.markdown">LICENSE.markdown</a>.</p>

jszip_2.4.0/jszip.dnn

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<dotnetnuke type="Package" version="5.0">
2+
<packages>
3+
<package name="jszip" type="JavaScript_Library" version="2.4.0">
4+
<friendlyName>JSZip</friendlyName>
5+
<description><![CDATA[A library for creating, reading and editing .zip files with Javascript, with a lovely and simple API.]]></description>
6+
<owner>
7+
<name>Engage Software</name>
8+
<organization>Engage Software</organization>
9+
<url>http://www.engagesoftware.com</url>
10+
<email>support@engagesoftware.com</email>
11+
</owner>
12+
<license src="LICENSE.htm" />
13+
<releaseNotes src="CHANGES.htm" />
14+
<azureCompatible>true</azureCompatible>
15+
<dependencies>
16+
<!--
17+
<dependency type="managedPackage" version="1.0.0">jQuery</dependency>
18+
-->
19+
</dependencies>
20+
<components>
21+
<component type="JavaScript_Library">
22+
<javaScriptLibrary>
23+
<libraryName>jszip</libraryName>
24+
<fileName>jszip.js</fileName>
25+
<preferredScriptLocation>BodyBottom</preferredScriptLocation>
26+
<CDNPath>https://cdn.jsdelivr.net/jszip/2.4.0/jszip.min.js</CDNPath>
27+
<objectName>JSZip</objectName>
28+
</javaScriptLibrary>
29+
</component>
30+
<component type="JavaScriptFile">
31+
<jsfiles>
32+
<libraryFolderName>jszip</libraryFolderName>
33+
<jsfile>
34+
<name>jszip.js</name>
35+
</jsfile>
36+
</jsfiles>
37+
</component>
38+
</components>
39+
</package>
40+
</packages>
41+
</dotnetnuke>

0 commit comments

Comments
 (0)