Releases: google/mount-zip
Releases · google/mount-zip
Version 1.0.9
- No functional modification compared to the previous release
- Use
std::bit_floor
to simplify some code
Version 1.0.8
- Add
--precache
option for preemptive caching - Implement
statfs
- Use libzip's
zip_file_is_seekable
Version 1.0.7
- Check compression and encryption methods at mount time
- Add
--cache
option to specify a cache directory - Add
--nocache
option to disable caching make doc
shows the generated man page- Fix bug in
Path::WithoutExtension()
- Use
open()
withO_TMPFILE
to create the cache file - Emulate
posix_fallocate
on macOS - Fix build error on macOS
- Remove
listxattr
andgetxattr
Version 1.0.6
- Log a "Loading" progress message once per second
- Don't log PID in syslog
Version 1.0.5
- Fix quadratic behavior when resolving name collisions
- Use default filename conversion if unknown encoding is passed
- Implement
listxattr
andgetxattr
- Add tests
Version 1.0.4
- Add tests
- Add
raw
andlibzip
filename encodings - Skip filenames longer than
NAME_MAX
- Use
fuse_main()
- Improve logs
- Fix for NetBSD
Version 1.0.3
- Don't try to seek encrypted files
- Better debug logs for lengthy operations
- Tuned Makefile
Version 1.0.2
- No functional change
- Cleaned up Makefiles
- Build with optimizations by default
Version 1.0.1
- No functional change
- Minor code refactoring
- Added classes
FileMapping
andIcuGuard
(not used yet, but will be used in the patch for ChromeOS)
Version 1.0.0
- Forked from fuse-zip 0.7.2
- Read-only mode (no read-write mode anymore)
- Decompresses lazily when reading file
- Supports encrypted files (both ZipCrypto and AES)
- Detects file name encoding thanks to ICU
- Deduplicates file names
- Reads huge files, even on 32-bit devices
- Can hide symlinks (
-o nosymlinks
) - Can hide hard links (
-o nohardlinks
) - Can hide special files (
-o nospecials
) - Can redact log messages (
--redact
) - Returns distinct error codes for different error conditions
- Uses Boost Intrusive collections for internal tree
- Fixed hard link count for directories and files
- Fixed inode number for hard links
- Rewrote black-box test in Python 3
- Man page generated from README