Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/miniz
AgeCommit message (Collapse)Author
2021-08-20Fix warnings when newer CMake is used.tamasmeszaros
project() call should always come AFTER cmake_minimum_required(). This caused various hard-to-debug issues when searching for packages. Newer CMake versions complain that compatibility is broken with v2.6
2021-05-29Fixed possible wrongly filled ZIP headers in case that pState->m_zip64 is ↵Lukáš Hejl
sets to true.
2021-05-25Fixed a modification time for files appended using the streaming interface ↵Lukáš Hejl
in the miniz library.
2021-05-20Modified streaming interface in miniz library to use ZIP64 extension only ↵Lukáš Hejl
for files exciding the limits. The modification is based on a preallocation space in the Extra field using a phony custom block in the Local file header. This space is eventually overwritten by the ZIP64 extension if the file exceeds 4GiB. Also were fixed differences from PKZip specification in the streaming interface.
2021-01-27Refactoring of 3MF file export to use the new homebrewed minizVojtech Bubnik
streaming interface. This shall fix high memory consumption and crashes when exporting extremely large 3MF files.
2021-01-27miniz: mz_zip_writer_add_staged_data() writes in a single shotVojtech Bubnik
2021-01-27miniz: Improved the streaming write interface.Vojtech Bubnik
2021-01-27PrusaResearch (Vojtech) homebrewed the following:Vojtech Bubnik
mz_zip_writer_add_staged_open(), mz_zip_writer_add_staged_data() and mz_zip_writer_add_staged_finish() were derived from mz_zip_writer_add_read_buf_callback() by splitting it and passing a new mz_zip_writer_staged_context between them.
2021-01-26Extended miniz with https://github.com/richgel999/miniz/pull/147Vojtech Bubnik
to support writing a file from a callback without knowing the file size up front. See comments in src/miniz/README-Prusa.txt for potential pitfalls.
2019-06-02Revert "Patch miniz bundled version to support unicode on Windows."tamasmeszaros
This reverts commit 8fc1eba652165869accaa4c9b7aad53203777137.
2019-05-31Merge branch 'tm_minz_update'tamasmeszaros
2019-05-31Patch miniz bundled version to support unicode on Windows.tamasmeszaros
2019-05-31Using system miniz in Linuxes.tamasmeszaros
Also enabling miniz large file support on gnu compilers.
2019-05-30Build system tweaks to get rid of cmake and boost warnings.tamasmeszaros
2019-05-27Update miniz cmaketamasmeszaros
2019-05-23Replacing old miniz version with new 2.1.0tamasmeszaros
#2333: The amalgamated library is used from the 'releases' section of the original upstream https://github.com/richgel999/miniz
2018-09-19WIP: Moved sources int src/, separated most of the source code from Perl.bubnikv
The XS was left only for the unit / integration tests, and it links libslic3r only. No wxWidgets are allowed to be used from Perl starting from now.