Skip to content

Tags: heshanxingzhe/minizip

Tags

2.7.0

Toggle 2.7.0's commit message
Added support for zipping up the central directory.

Added better travis ci coverage for various configuration types.
Added unit tests back to travis ci.
Added zlib as external project to cmake for easier setup.
Added support for signing and verifying entry content.
Added sha256 hash for each entry in zip.
Use native cryptographic/hashing function on Windows.
Fixed potential infinite loop when reading LZMA with data error.
Added ability to zero out local file header information.
Added additional error codes to aid in debugging.
Renamed aes stream to wzaes for winzip aes.
Fixed compiler warning when aes is not enabled. zlib-ng#326
Fixed not printing adding file when new entry is added.
Use secure URLs in readme and source. zlib-ng#324
Added InfoZip app note.

2.6.0

Toggle 2.6.0's commit message
Added support for Apple's compression library.

Fixed bugs reading/write posix file attributes.
Avoid double-free on comment. zlib-ng#323
Fixed a bunch of compiler warnings. zlib-ng#321

2.5.4

Toggle 2.5.4's commit message
Added more missing unzip compatibilty functions. zlib-ng#319

Fixed passing user data pointer to overwrite callback. zlib-ng#318

2.5.3

Toggle 2.5.3's commit message
Add ability to get progress at millisecond intervals. zlib-ng#315

Updated test.c to latest version of library. zlib-ng#314
Fixed issues with compatibility header. zlib-ng#311
Fixed typos and formatting. zlib-ng#310, zlib-ng#301, zlib-ng#302
Fixed gcc/clang compiler warnings. zlib-ng#308
Fix infinite loop if a read operation does not return any bytes. zlib-ng#307
Cleanup includes. zlib-ng#306
Fixed issues linking with bzip2 library. zlib-ng#304

2.5.2

Toggle 2.5.2's commit message
Allow using libbsd on non-linux systems. zlib-ng#300

Added support for CP437 file name encodings.
Removed include zlib.h header from mz_compat.h.
Added function in mz_zip_reader to check if entry is a directory.
Fixed memory leak closing memory stream in mz_zip_writer.
Added function to get stream pointer used for mz_zip_open.
Set the file attributes when extracting.

2.5.1

Toggle 2.5.1's commit message
Use system bzip2 library if available. zlib-ng#297

Added pkzip app note and winzip aes docs.
Added ability to skip certain parts of install in cmake.
Added encryption header sizes for apps that need it in mz header.
Fixed memory stream not freed in zip reader/writer.

2.5.0

Toggle 2.5.0's commit message
Added zip reader/writer to encapsulate functionality for ease of use.

Added mz_zip create/delete functions and changed open function.
Fixes to reading and writing encrypted raw entries. zlib-ng#294 zlib-ng#293
Fixed potential invalid filename/comment buffer. zlib-ng#295
Fixed check for directory so it considers entries that end with slash.
Changed locate entry func to ignore path slashes.
Added advanced funcs for locating an entry based on callback decision.
Fixed wrong check for comment write return value. zlib-ng#295
Added raw param and changed order to entry write open function params.
Added function to determine if entry has been opened.

2.4.0

Toggle 2.4.0's commit message
Added support for erasing files from zip.

Added support for adding wildcard patterns when creating archive.
Use wildcard path compare when specifying files to erase.
Don't write duplicate ntfs, zip64, and aes extra fields.
Added os delete and rename functions.
Fixes to compatibility mode when writing raw entries. zlib-ng#289 zlib-ng#291
Added api versioning. zlib-ng#292
Fixed liblzma compilation on non-x86 systems. zlib-ng#286

2.3.9

Toggle 2.3.9's commit message
Fixed bug not reading global comments correctly. zlib-ng#288

Fixed compilation of internal liblzma on non-x86 systems. zlib-ng#286
Added additional compatibility functions for working with streams. zlib-ng#283
Added entropy fallback functions on linux. zlib-ng#283
Changed default memory stream grow size to 128kb. zlib-ng#283
Fixed various problems reading/writing with raw mode. zlib-ng#277
Fixed compatibility zip open mode with append arg. zlib-ng#281

2.3.8

Toggle 2.3.8's commit message
Fixed disk offset not being read correctly with zip64. zlib-ng#279

Fixed zipOpen2_64 not working correctly with APPEND_STATUS_CREATE.