1.2.0 [2017-02-19] ================== * Support for AES encryption (Winzip version), both encryption and decryption. * Support legacy zip files with >64k entries. * Fix seeking in zip_source_file if start > 0. * Add zip_fseek() for seeking in uncompressed data. * Add zip_ftell() for telling position in uncompressed data. * Add zip_register_progress_callback() for UI updates during zip_close() 1.1.3 [2016-05-28] ================== * Fix build on Windows when using autoconf. 1.1.2 [2016-02-19] ================== * Improve support for 3MF files 1.1.1 [2016-02-07] ================== * Build fixes for Linux * Fix some warnings reported by PVS-Studio 1.1 [2016-01-26] ================ * ziptool(1): command line tool to modify zip archives * Speedups for archives with many entries * Coverity fixes * Better APK support * Support for running tests on Windows * More build fixes for Windows * Portability fixes * Documentation improvements 1.0.1 [2015-05-04] ================== * Build fixes for Windows. 1.0 [2015-05-03] ================ * Implemented an I/O abstraction layer. * Added support for native Windows API for files. * Added support for setting the last modification time for a file. * Added a new type zip_error_t for errors. * Added more typedefs for structs. * Torrentzip support was removed. * CVE-2015-2331 was fixed. * Addressed all Coverity CIDs. 0.11.2 [2013-12-19] =================== * Support querying/setting operating system and external attributes. * For newly added files, set operating system to UNIX, permissions to 0666 (0777 for directories). * Fix bug when writing zip archives containing files bigger than 4GB. 0.11.1 [2013-04-27] =================== * Fix bugs in zip_set_file_compression(). * Include Xcode build infrastructure. 0.11 [2013-03-23] ================= * Added Zip64 support (large file support) * Added UTF-8 support for file names, file comments, and archive comments * Changed API for name and comment related functions for UTF-8 support * Added zip_discard() * Added ZIP_TRUNCATE for zip_open() * Added zip_set_file_compression() * Added API for accessing and modifying extra fields * Improved API type consistency * Use gcc4's visibility __attribute__ * More changes for Windows support * Additional test cases 0.10.1 [2012-03-20] =================== * Fixed CVE-2012-1162 * Fixed CVE-2012-1163 0.10 [2010-03-18] ================= * Added zip_get_num_entries(), deprecated zip_get_num_files(). * Better windows support. * Support for traditional PKWARE encryption added. * Fix opening archives with more than 65535 entries. * Fix some memory leaks. * Fix cmake build and installation * Fix memory leak in error case in zip_open() * Fixed CVE-2011-0421 (no security implications though) * More documentation. 0.9.3 [2010-02-01] ================== * Include m4/ directory in distribution; some packagers need it. 0.9.2 [2010-01-31] ================== * Avoid passing uninitialized data to deflate(). * Fix memory leak when closing zip archives. 0.9.1 [2010-01-24] ================== * Fix infinite loop on reading some broken files. * Optimization in time conversion (don't call localtime()). * Clear data descriptor flag in central directory, fixing Open Office files. * Allow more than 64k entries. 0.9 [2008-07-25] ================== * on Windows, explictly set dllimport/dllexport * remove erroneous references to GPL * add support for torrentzip * new functions: zip_get_archive_flag, zip_set_archive_flag * zip_source_zip: add flag to force recompression * zip_sorce_file: only keep file open while reading from it 0.8 [2007-06-06] ================== * fix for zip archives larger than 2GiB * fix zip_error_strerror to include libzip error string * add support for reading streamed zip files * new functions: zip_add_dir, zip_error_clear, zip_file_error_clear * add basic support for building with CMake (incomplete) 0.7.1 [2006-05-18] ================== * bugfix for zip_close 0.7 [2006-05-06] ================ * struct zip_stat increased for future encryption support * zip_add return value changed (now returns new index of added file) * shared library major bump because of previous two * added functions for reading and writing file and archive comments. New functions: zip_get_archive_comment, zip_get_file_comment, zip_set_archive_comment, zip_set_file_comment, zip_unchange_archive 0.6.1 [2005-07-14] ================== * various bug fixes 0.6 [2005-06-09] ================ * first standalone release * changed license to three-clause BSD * overhauled API * added man pages * install zipcmp and zipmerge '>35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327