| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Full changelog: https://github.com/purelogiccode/SimpleZipDrive/blob/master/WhatsNew.md
Full changelog: WhatsNew.md
Released: 2026-08-04
This release fixes a major memory/performance issue in the memory-cache mode (GitHub issue #10), adds comic-book archive support, aligns the WinFsp variant with the stable WinFsp 2.1 driver, and reduces noise in the bug-report pipeline.
Mounting an archive and running a large file (e.g. a game executable) from the virtual drive could inflate memory usage to multi-GB (up to ~13 GB in reports) and freeze the machine — while disk-cache mode used only ~200 MB.
Root cause: the memory cache decompressed the entire file into a fresh buffer on every open, and one read path re-decompressed the whole file per read (paging/memory-mapped I/O). With several applications (hash tool, antivirus, Explorer, the game loader) opening the file at once, memory scaled by number of opens × file size, and repeated full decompressions stalled the loader.
Fix — shared refcounted memory cache with LRU eviction:
Both the Dokan and WinFsp variants benefit (shared core filesystem engine).
Full Changelog: release_2.7.2...release_2.8.0
NuGet Updates:
Fixes:
Full Changelog: release_2.7.1...release_2.7.2
Full Changelog: release_2.7.0...release_2.7.1
Full Changelog: release_2.6.2...release_2.7.0
When the Dokan driver is not installed on the user's system, the mount attempt no longer retries pointlessly. The error dialog ("Would you like to open the Dokan download page?") now appears immediately instead of after multiple failed retries.
Fixed TypeInitializationException ("incorrect dll version — need 2.2, have 2.1") caused by a mismatched winfsp-msil.dll wrapper. The application now checks the MSIL library version independently of the installed driver and blocks the mount with a clear error message if the library is incompatible, rather than attempting the mount and crashing.
SharpCompress ZstdException errors ("Unknown frame descriptor", "Data corruption detected", "Destination buffer is too small") are now properly handled in three ways:
Full Changelog: release_2.6.1...release_2.6.2
Full Changelog: release_2.6.0...release_2.6.1
| Back | FazBrowse Home | New Git URL |