blob: 9da981deedd3cbadf406fbae178463b85422dea5 [file] [log] [blame]
Thomas Klausner87777a42012-07-21 12:10:08 +020010.11
2
3* new type zip_flags_t
4
5All old flags fit; you need to adapt if you were saving flags in a
6local variable. Use zip_flags_t for such a variable.
7
8* integer type size changes
9
10Some return values were not the right size or sign.
11
12** zip_name_locate()
13Return value was int, which can be too small. Now returns zip_int64_t.
14
15
16TO DOCUMENT:
17 . _set_name allows NULL (document)
18 . old extra fields API removed
19 . change in return value of get_comment: NULL if error, else pointer to empty array and len=0
20 . document ZIP_DISABLE_DEPRECATED (libzip man page)
21 . renames of zip_add, zip_rename, zip_replace, zip_add_dir, zip_{set,get}_file_comment
22 . NULL is now allowed for file names (zip_add, zip_add_dir, zip_rename)