Releases: fangfufu/httpdirfs
Releases · fangfufu/httpdirfs
1.2.7 - Fixed FreeBSD compilation
1.2.6
What's Changed
Fixed
- The refreshed LinkTable is now saved. (#141)
- Only one LinkTable of the same directory is created when the cache mode is enabled. (#140)
- Cache mode now works correctly with escaped URL. (#138)
- Fixed
--user-agent
option (#159) - Allow leading
./
segments in links (#125) - Fix segfault due to missing LinkTable allocation (#155)
- Fix Segmentation fault if HOME not set (#162)
- Handle sites that use absolute links and sites that require the final slash (#121)
Added
- Add
--http-header
option (#157) - Add
--cache-clear
option (#111) - Add
--refresh-timeout
to set refresh timeout for directory contents (#114)
Changed
- Improved LinkTable caching. LinkTable invalidation is now purely based on timeout. (#147)
- Replaced the GNU Autotools based build system with Meson. (#149)
- Transitioned from using libfuse 2.x to to 3.x. (#116)
- Updated OpenSSL MD5 checksum generation API usage. (#143)
New Contributors
- @jikamens made their first contribution in #121
- @bikemike made their first contribution in #114
- @chrysn made their first contribution in #125
- @michich made their first contribution in #155
- @EyitopeIO made their first contribution in #161
Full Changelog: 1.2.5...1.2.6
Security update
Fixed
- No longer compile with UBSAN enabled by default to avoid introducing
security vulnerability.
Full Changelog: 1.2.4...1.2.5
Various bug fixes and improvements
Added
- Add
--cacert
and--proxy-cacert
options
Fixed
Link_download_full
: don'tFREE(NULL)
- Correct error message in
FREE()
- Error handling for
fs_open
andgetopt_long
- Fix IO error with funkwhale subsonic API
- Fix
--insecure-tls
in help and README
What's Changed
- Fix --insecure-tls in help and README by @moschlar in #101
- Two small patches by @nwf-msr in #104
- Add --cacert and --proxy-cacert by @nwf-msr in #109
- Fix IO error with funkwhale subsonic API by @rdelaage in #106
New Contributors
- @moschlar made their first contribution in #101
- @nwf-msr made their first contribution in #104
- @rdelaage made their first contribution in #106
Full Changelog: 1.2.3...1.2.4
Single File Mode
Added
- Single File Mode, which allows the mounting of a single file in a virtual
directory - Manual page generation in Makefile.
Changed
- Improve log / debug output.
- Removed unnecessary mutex lock/unlocks.
Fixed
- Handling empty files from HTTP server
What's Changed
Full Changelog: 1.2.2...1.2.3
Various bug fixes
Fixed
- macOS uninstallation in Makefile.
- Filenames start with percentage encoding are now parsed properly
- For Apache server configured with IconsAreLinks, the duplicated link no longer
shows up.
What's Changed
- Fix for uninstall on macOS by @hiliev in #66
- fix: Failed to mount an empty file in the cache state by @lk-me in #68
Full Changelog: 1.2.1...1.2.2
macOS support
Added
- macOS compilation support
New Contributors
- @0mp made their first contribution in #49
- @cyberjunky made their first contribution in #52
Full Changelog: 1.2.0...1.2.1
Subsonic support
Added
- Subsonic server support - this is dedicated to my Debian package maintainer
Jerome Charaoui - You can now specify which configuration file to use by using the
--config
flag. - Added support for turning off TLS certificate check (
--insecure_tls
flag). - Now check for server's support for HTTP range request, which can be turned off
using the--no-range-check
flag.
Changed
- Wrapped all calloc() calls with error handling functions.
- Various code refactoring
Fixed
- Remove the erroneous error messages when the user supplies wrong command line
options. - The same cache folder is used, irrespective whether the server root URL ends
with '/' - FreeBSD support
What's Changed
Full Changelog: 1.1.9...1.2.0
Progress Indicator and Backtrace
This is the current version available on Debian Repository.
Added
- Added a progress indicator for LinkTable_fill().
- Backtrace will now be printed when the program crashes
- Note that static functions are not included in the printed backtrace!
Changed
- Updated Makefile, fixed issue #44
- When header files get changed, the relevant object will get recompiled.
- Improved HTTP temporary failure error handling
- Now retry on the following HTTP error codes:
- 429 - Too Many Requests
- 520 - Cloudflare Unknown Error
- 524 - Cloudflare Timeout
- Now retry on the following HTTP error codes:
Full Changelog: 1.1.9...1.1.10
Cache system bug fixes and performance improvement
Changed
- Improved the performance of directory listing generation while there are
on-going file transfers - Wrapped mutex locking and unlocking functions in error checking functions.
Fixed
- Fixed issue #40 - Crashes with "API function called from within callback".
- Cache system: now keep track of the number of times a cache file has been
opened.- The on-disk cache file no longer gets opened multiple times, if
a file is opened multiple times. This used to cause inconsistencies
between two opened cache files.
- The on-disk cache file no longer gets opened multiple times, if
- Cache system: Fixed buffer over-read at the boundary.
- Say we are using a lock size of 1024k, we send a request for 128k at
1008k. It won't trigger the download, because we have already downloaded the
first 1024k at byte 0. So it would read off from the empty disk space! - This problem only occurred during the first time you download a file.
During subsequent accesses, when you are only reading from the cache, this
problem did not occur.
- Say we are using a lock size of 1024k, we send a request for 128k at
- Cache system: Previously it was possible for Cache_bgdl()'s download offset
to be modified by the parent thread after the child thread had been
launched. This used to cause permanent cache file corruption. - Cache system: Cache_bgdl() no longer prefetches beyond EOF.
- Cache system: Data_read() no longer gives warning messages when reaching the
end of the cache file.
What's Changed
- Directory listing performance improvement while file transfers are going on by @fangfufu in #41
- Cache system bug fix by @fangfufu in #42
Full Changelog: 1.1.8...1.1.9