Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Jul 11, 2023
1 parent 3f7a15b commit 38fb907
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 14 deletions.
3 changes: 2 additions & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -9533,6 +9533,7 @@
let uncompressedSize = 0;
let signature;
const { writable } = writer;
const metaDataLength = getLength(localHeaderArray, dataDescriptorArray);
if (reader) {
reader.chunkSize = getChunkSize(config);
await writeData(writable, localHeaderArray);
Expand Down Expand Up @@ -9602,7 +9603,7 @@
creationDate,
lastAccessDate,
encrypted,
length: getLength(localHeaderArray, dataDescriptorArray) + compressedSize,
length: metaDataLength + compressedSize,
compressionMethod,
version,
headerArray,
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4309,6 +4309,7 @@
let uncompressedSize = 0;
let signature;
const { writable } = writer;
const metaDataLength = getLength(localHeaderArray, dataDescriptorArray);
if (reader) {
reader.chunkSize = getChunkSize(config);
await writeData(writable, localHeaderArray);
Expand Down Expand Up @@ -4378,7 +4379,7 @@
creationDate,
lastAccessDate,
encrypted,
length: getLength(localHeaderArray, dataDescriptorArray) + compressedSize,
length: metaDataLength + compressedSize,
compressionMethod,
version,
headerArray,
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -8532,6 +8532,7 @@
let uncompressedSize = 0;
let signature;
const { writable } = writer;
const metaDataLength = getLength(localHeaderArray, dataDescriptorArray);
if (reader) {
reader.chunkSize = getChunkSize(config);
await writeData(writable, localHeaderArray);
Expand Down Expand Up @@ -8601,7 +8602,7 @@
creationDate,
lastAccessDate,
encrypted,
length: getLength(localHeaderArray, dataDescriptorArray) + compressedSize,
length: metaDataLength + compressedSize,
compressionMethod,
version,
headerArray,
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker-deflate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -4309,6 +4309,7 @@
let uncompressedSize = 0;
let signature;
const { writable } = writer;
const metaDataLength = getLength(localHeaderArray, dataDescriptorArray);
if (reader) {
reader.chunkSize = getChunkSize(config);
await writeData(writable, localHeaderArray);
Expand Down Expand Up @@ -4378,7 +4379,7 @@
creationDate,
lastAccessDate,
encrypted,
length: getLength(localHeaderArray, dataDescriptorArray) + compressedSize,
length: metaDataLength + compressedSize,
compressionMethod,
version,
headerArray,
Expand Down
2 changes: 1 addition & 1 deletion dist/zip.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9529,6 +9529,7 @@ async function createFileEntry(reader, writer, { diskNumberStart, lock }, entryI
let uncompressedSize = 0;
let signature;
const { writable } = writer;
const metaDataLength = getLength(localHeaderArray, dataDescriptorArray);
if (reader) {
reader.chunkSize = getChunkSize(config);
await writeData(writable, localHeaderArray);
Expand Down Expand Up @@ -9598,7 +9599,7 @@ async function createFileEntry(reader, writer, { diskNumberStart, lock }, entryI
creationDate,
lastAccessDate,
encrypted,
length: getLength(localHeaderArray, dataDescriptorArray) + compressedSize,
length: metaDataLength + compressedSize,
compressionMethod,
version,
headerArray,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.7.19",
"version": "2.7.20",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit 38fb907

Please sign in to comment.