1
1
Fork 0
mirror of https://github.com/0x5eal/luau-unzip.git synced 2025-04-13 18:40:53 +01:00

chore(CHANGELOG): update entries

This commit is contained in:
Erica Marigold 2025-01-10 08:07:21 +00:00
parent d834b35278
commit d40d4cbb50
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased] ## [Unreleased]
### Added ### Added
- PKZip version validation before extracting files
- `ZipEntry` now has a `versionMadeBy` field which includes information about the host system and version of the ZIP file - `ZipEntry` now has a `versionMadeBy` field which includes information about the host system and version of the ZIP file
- `ZipEntry` now has a `compressedSize` field which indicates the size of the compressed data - `ZipEntry` now has a `compressedSize` field which indicates the size of the compressed data
- Added method `ZipEntry:compressionEfficiency` to return compression efficiency in the form of a percentage - Added method `ZipEntry:compressionEfficiency` to return compression efficiency in the form of a percentage
@ -24,6 +25,7 @@ entry:sanitizePath()
- Renamed `isAscii` field for `ZipEntry` to `isText` - Renamed `isAscii` field for `ZipEntry` to `isText`
- Renamed `isString` option for `ZipReader:extract` to `isText` - Renamed `isString` option for `ZipReader:extract` to `isText`
### Fixed ### Fixed
- Fixed a bug where `ZipReader:extract` would not correctly error when there was a mismatch between the count of entries specified in the EoCD and the number of entries found
- Removed any typecast for internal decompression utilities due to `table.freeze` interfering with types - Removed any typecast for internal decompression utilities due to `table.freeze` interfering with types
## [0.0.1] - 2025-01-07 ## [0.0.1] - 2025-01-07