From: <sba...@us...> - 2016-08-16 22:26:18
|
Revision: 5750 http://sourceforge.net/p/fuse-emulator/code/5750 Author: sbaldovi Date: 2016-08-16 22:26:15 +0000 (Tue, 16 Aug 2016) Log Message: ----------- Document zip compression support. Modified Paths: -------------- trunk/libspectrum/doc/libspectrum.3 trunk/libspectrum/doc/libspectrum.txt trunk/libspectrum/hacking/ChangeLog Modified: trunk/libspectrum/doc/libspectrum.3 =================================================================== --- trunk/libspectrum/doc/libspectrum.3 2016-08-16 22:22:34 UTC (rev 5749) +++ trunk/libspectrum/doc/libspectrum.3 2016-08-16 22:26:15 UTC (rev 5750) @@ -60,9 +60,10 @@ Microdrive cartridge images: .mdr (read/write). .PP Additionally, any files compressed with -.IR bzip2 "(3)" +.IR bzip2 "(3)," +.IR gzip "(3)" or -.IR gzip "(3)" +.IR zip "(3)" can be read and will be transparently decompressed. .PP Full documentation for @@ -76,7 +77,8 @@ .IR bzip2 "(3)," .IR fuse "(1)," .IR fuse\-utils "(1)," -.IR gzip "(3)" +.IR gzip "(3)," +.IR zip "(3)." .PP The comp.sys.sinclair Spectrum FAQ, at .br Modified: trunk/libspectrum/doc/libspectrum.txt =================================================================== --- trunk/libspectrum/doc/libspectrum.txt 2016-08-16 22:22:34 UTC (rev 5749) +++ trunk/libspectrum/doc/libspectrum.txt 2016-08-16 22:26:15 UTC (rev 5750) @@ -281,6 +281,7 @@ LIBSPECTRUM_ID_COMPRESSED_BZ2 A bzip2 compressed file LIBSPECTRUM_ID_COMPRESSED_GZ A gzip compressed file +LIBSPECTRUM_ID_COMPRESSED_ZIP A zip compressed file LIBSPECTRUM_ID_DISK_DSK A .dsk +3 disk file LIBSPECTRUM_ID_DISK_CPC A plain .dsk +3 disk file Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2016-08-16 22:22:34 UTC (rev 5749) +++ trunk/libspectrum/hacking/ChangeLog 2016-08-16 22:26:15 UTC (rev 5750) @@ -1095,7 +1095,7 @@ 20160722 zip.c: mark a bunch of internal functions as static (Fred). 20160724 zip.c: make error reporting a bit more libspectrum-like (Fred). 20160723 zip.c: fix loading ZIP files with comments (Sergio). -20160801 Makefile.am,configure.ac,zlib.c: disable zip suport when zlib is +20160801 Makefile.am,configure.ac,zlib.c: disable zip support when zlib is missing (Sergio). 20160801 zip.c: activate the const-enabled zlib API (Sergio). 20160802 zip.c: avoid mixing declarations and code for C89 compilers (Sergio). @@ -1111,3 +1111,5 @@ 20160814 pzx_read.c: use libspectrum_bits_to_bytes() (Fred). 20160815 configure.ac: print summary of enabled features when building libspectrum (patch #376) (Alberto Garcia). +20160817 doc/{libspectrum.3,libspectrum.txt}: document zip compression support + (Sergio). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |