Unzip implementation in pure Luau
Find a file
Erica Marigold 1f4dd5715b
fix: add temporary fix for high compression ratio files
Currently, we have a hardcoded buffer size of compressed * 4 for the
decompressed data, since deflate does not give the true decompressed
size (although zip metadata does). So, on files with a very high
compression ratio, a buffer overflow is triggered as our destination
buffer is not large enough for the entire decompressed data.

This temporary fix involves increasing the factor from 4 to 7 for the
size estimation. A future fix would involve using the true decompressed
size.
2025-01-01 19:33:51 +00:00
.vscode chore: init, the basics 2024-12-28 17:19:37 +00:00
examples chore(examples): improve contents listing with indent 2024-12-30 18:23:53 +00:00
lib fix: add temporary fix for high compression ratio files 2025-01-01 19:33:51 +00:00
.gitignore feat: add "streaming" zip support 2024-12-30 18:24:00 +00:00
.luaurc chore: init, the basics 2024-12-28 17:19:37 +00:00
LICENSE.md chore(LICENSE): change copyright field 2024-12-30 11:12:45 +00:00
pesde.lock style: apply stylua formatter 2024-12-30 11:13:57 +00:00
pesde.toml style: apply stylua formatter 2024-12-30 11:13:57 +00:00