Releases: r-lib/zip
v2.0.1
zip()
andzip_append()
are now soft-deprecated, please use
zipr()
andzipr_append()
instead.
v2.0.0
-
New
zipr()
andzipr_append()
, they always store relative file names
in the archive. -
New
unzip()
function for uncompressing zip archives. -
New
zip_process()
andunzip_process()
functions to create or
uncompress an archive in a background process. -
zip()
,zipr()
,zip_append()
andzipr_append()
all include
directories in the archives, empty ones as well. -
zip()
,zipr()
,zip_append()
andzipr_append()
all add time stamps
to the archive andzip_list()
returns then in thetimestamp
column. -
zip()
,zipr()
,zip_append()
andzipr_append()
all add file
and directory permissions to the archive on Unix systems, and
zip_list()
returns them in thepermissions
column. -
zip_list()
now correctly reports the size of large files in the archive. -
Use miniz 2.0.8 internally.