v1.0.65: chunked upload for large files (>100MB) on Nextcloud
Build & Release APK / build (push) Successful in 12m58s

Big-file testing found single-PUT uploads 413 above the server's per-request
cap (Apache LimitRequestBody / PHP post_max_size / proxy limits). NextcloudProvider
now uploads files >chunkSize (100MB) via the dav/uploads chunked API: MKCOL a
session, PUT N chunks, then MOVE .file onto the destination (atomic assemble).
Bypasses any per-request cap so multi-GB files back up. Verified byte-exact
(multi-chunk) against live Nextcloud. SFTP already streams; single-PUT path
unchanged for <=100MB.
This commit is contained in:
2026-06-05 15:45:47 +00:00
parent f90d84e1fc
commit a348c43c66
3 changed files with 126 additions and 4 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
VERSION_NAME=1.0.64
VERSION_CODE=65
VERSION_NAME=1.0.65
VERSION_CODE=66