title | layout | section |
---|---|---|
Changelog |
default |
main |
Change ArrayBuffer check to work correctly with webworkers
Fixes #36
Improve typescript support :
Fixes following error message :
error TS1259: Module 'pizzip' can only be default-imported using the 'allowSyntheticDefaultImports' flag
Error - 'tsc' sub task errored after 2.66 s
Use pako.min.js instead of pako.js
Remove @babel from dependencies (moved to devDependencies)
Update typescript typings to work correctly.
Add typescript typings
-
Add zip.clone() function to deep clone a zip instance
-
Remove usage of
new Buffer
in favor ofBuffer.from()
orBuffer.alloc()
Update pako to v2
When using new Pizzip(promise), show specific error message
Compile to es5
Add missing built files in dist
Migrate to babel, eslint, prettier and mocha
Export window.PizZipUtils in utils generated bundle
Update export to be able to do require("pizzip/utils");
Initial release of Pizzip
- update pako to v1.0.2 to fix a DEFLATE bug (see #322).
- publish
dist/
files in the npm package (see #225). - update pako to v1.0.0 (see #261).
- add support of Array in PizZip#load (see #252).
- improve file name / comment encoding support (see #211).
- handle prepended data (see #266).
- improve platform coverage in tests (see #233 and #269).
- add support for custom mime-types (see #199).
- add an option to set the DEFLATE level (see #201).
- improve the error message with corrupted zip (see #202).
- add support for UNIX / DOS permissions (see #200 and #205).
- update pako to 0.2.5 (see #156).
- make PizZip work in a Firefox addon context (see #151).
- add an option (
createFolders
) to control the subfolder generation (see #154). - allow
Buffer
polyfill in the browser (see #139).
- don't generate subfolders (see #130).
- add comment support (see #134).
- on
ZipObject#options
, the attributesdate
anddir
have been deprecated and are now onZipObject
(see the upgrade guide). - on
ZipObject#options
, the attributesbase64
andbinary
have been deprecated (see the upgrade guide). - deprecate internal functions exposed in the public API (see #123).
- improve UTF-8 support (see #142).
- update pako to v0.2.1, fix an error when decompressing some files (see #126).
- fix unreadable generated file on Windows 8 (see #112).
- replace zlibjs with pako.
- make the
new
operator optional before thePizZip
constructor (see #93). - update zlibjs to v0.2.0.
- use the npm package for zlib.js instead of the github url.
- split the files and use Browserify to generate the final file (see #74)
- packaging change : instead of 4 files (pizzip.js, pizzip-load.js, pizzip-inflate.js, pizzip-deflate.js) we now have 2 files : dist/pizzip.js and dist/pizzip.min.js
- add component/bower support
- rename variable: 'byte' is a reserved word (see #76)
- add support for the unicode path extra field (see #82)
- ensure that the generated files have a header with the licenses (see #80)
-
PizZipBase64
has been renamed toPizZip.base64
. -
The
data
attribute on the object returned byzip.file(name)
has been removed. UseasText()
,asBinary()
,asUint8Array()
,asArrayBuffer()
orasNodeBuffer()
. -
The compression/decompression methods now give their input type with the
compressInputType
anduncompressInputType
attributes. -
Lazily decompress data when needed and improve performance in general
-
Package for CommonJS/npm.
- 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.
- First release after a long period without version.