summaryrefslogtreecommitdiffstats
path: root/afb-client/bower_components/jszip/documentation/upgrade_guide.md
diff options
context:
space:
mode:
authorStephane Desneux <stephane.desneux@iot.bzh>2016-05-31 18:16:48 +0200
committerStephane Desneux <stephane.desneux@iot.bzh>2016-05-31 18:16:48 +0200
commit5b1e6cc132f44262a873fa8296a2a3e1017b0278 (patch)
tree43b2cd54e2e300b399ff3f2af4458a2c4ed8a144 /afb-client/bower_components/jszip/documentation/upgrade_guide.md
parentf7d2f9ac4168ee5064580c666d508667a73cefc0 (diff)
parent85ace9c1ce9a98e9b8a22f045c7dd752b38d9129 (diff)
Merge afb-client
Diffstat (limited to 'afb-client/bower_components/jszip/documentation/upgrade_guide.md')
-rw-r--r--afb-client/bower_components/jszip/documentation/upgrade_guide.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/afb-client/bower_components/jszip/documentation/upgrade_guide.md b/afb-client/bower_components/jszip/documentation/upgrade_guide.md
new file mode 100644
index 0000000..1dfac9c
--- /dev/null
+++ b/afb-client/bower_components/jszip/documentation/upgrade_guide.md
@@ -0,0 +1,57 @@
+---
+title: Upgrade Guide
+layout: default
+section: main
+---
+
+### From 2.2.2 to 2.3.0
+
+* On `ZipObject#options`, the attributes `date` and `dir` have been
+ deprecated and are now on `ZipObject`.
+* On `ZipObject#options`, the attributes `base64` and `binary` have been
+ deprecated.
+* `JSZip.base64`, `JSZip.prototype.crc32`, `JSZip.prototype.utf8decode`,
+ `JSZip.prototype.utf8encode` and `JSZip.utils` have been deprecated.
+
+```js
+// deprecated
+zip.file("test.txt").options.date
+zip.file("test.txt").options.dir
+// new API
+zip.file("test.txt").date
+zip.file("test.txt").dir
+```
+
+
+### From 2.0.0 to 2.1.0
+
+* The packaging changed : instead of loading jszip.js, jszip-load.js,
+ jszip-inflate.js, jszip-deflate.js, just include dist/jszip.js or
+ dist/jszip.min.js.
+ For AMD loader users : JSZip now registers itself. You just have to put the
+ file at the right place or configure your loader.
+
+
+### From 1.x to 2.x
+
+* `JSZipBase64` has been renamed to `JSZip.base64`.
+* The `data` attribute doesn't exist anymore :
+ use the getters `asText()`, `asBinary()`, etc
+* The compression/decompression methods now give their input type with the
+ `compressInputType` and `uncompressInputType` attributes.
+
+Example for the data attribute :
+
+```js
+// before
+zip.file("test.txt").data;
+zip.files["test.txt"].data;
+zip.file("image.png").data;
+zip.files["image.png"].data;
+
+// after
+zip.file("test.txt").asText();
+zip.files["test.txt"].asText();
+zip.file("image.png").asBinary();
+zip.files["image.png"].asBinary();
+```