docs/comments update

This commit is contained in:
Vitaly Puzrin 2014-04-18 02:56:41 +04:00
parent 8bea7480aa
commit a4d7bdef8d
5 changed files with 19 additions and 14 deletions

View file

@ -4,7 +4,8 @@
- Added custom gzip headers support.
- Added strings support.
- Improved memory allocations for small chunks.
- More coverate tests.
- ZStream properties rename/cleanup.
- More coverage tests.
0.1.1 / 2014-03-20

View file

@ -143,11 +143,11 @@ Notes
Pako does not contain some specific zlib functions:
- __deflate__ - writing custom gzip headers and methods `deflateSetDictionary`,
`deflateParams`, `deflateSetHeader`, `deflateBound`, `deflatePending`.
- __inflate__ - getting custom gzip headers and methods `inflateGetDictionary`,
`inflateGetHeader`, `inflateSetDictionary`, `inflateSync`, `inflateSyncPoint`,
`inflateCopy`, `inflateUndermine`, `inflateMark`.
- __deflate__ - methods `deflateCopy`, `deflateBound`, `deflateParams`,
`deflatePending`, `deflatePrime`, `deflateSetDictionary`, `deflateTune`.
- __inflate__ - `inflateGetDictionary`, `inflateCopy`, `inflateMark`,
`inflatePrime`, `inflateSetDictionary`, `inflateSync`, `inflateSyncPoint`,
`inflateUndermine`.
Authors

View file

@ -1748,14 +1748,18 @@ function deflateEnd(strm) {
exports.deflateInit = deflateInit;
exports.deflateInit2 = deflateInit2;
exports.deflateReset = deflateReset;
exports.deflateResetKeep = deflateResetKeep;
exports.deflateSetHeader = deflateSetHeader;
exports.deflate = deflate;
exports.deflateEnd = deflateEnd;
exports.deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateSetDictionary = deflateSetDictionary;
exports.deflateParams = deflateParams;
exports.deflateBound = deflateBound;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
*/

View file

@ -1483,12 +1483,12 @@ exports.inflateGetHeader = inflateGetHeader;
exports.inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSetDictionary = inflateSetDictionary;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateCopy = inflateCopy;
exports.inflateUndermine = inflateUndermine;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
*/

View file

@ -3,15 +3,15 @@
function ZStream() {
/* next input byte */
this.input = null;
this.next_in = 0; // JS specific, offset in input
this.input = null; // JS specific, because we have no pointers
this.next_in = 0;
/* number of bytes available at input */
this.avail_in = 0;
/* total number of input bytes read so far */
this.total_in = 0;
/* next output byte should be put there */
this.output = null;
this.next_out = 0; // JS specific, offset in output
this.output = null; // JS specific, because we have no pointers
this.next_out = 0;
/* remaining free space at output */
this.avail_out = 0;
/* total number of bytes output so far */