diff --git a/public/index.html b/public/index.html index 513c1d1..bd2e62d 100644 --- a/public/index.html +++ b/public/index.html @@ -467,7 +467,7 @@ body::before{content:'';position:fixed;inset:0;background:radial-gradient(ellips
- HTTP Mode: Parallel chunked HTTP upload (6 concurrent 32 MB parts). Aspera-class speed — no UDP needed. + HTTP Mode: Direct HTTP upload to S3-compatible storage (up to 4 concurrent files). Compatible with RustFS, MinIO, and AWS S3.
Electron App — Aspera-speed desktop application (coming soon)
@@ -934,7 +934,7 @@ function setMode(mode) { if (mode === 'http') { btn.className = 'btn-upload'; if (label) label.textContent = 'HTTP Mode:'; - if (detail) detail.textContent = 'Parallel chunked HTTP upload (6 concurrent 32 MB parts). Aspera-class speed — no UDP needed.'; + if (detail) detail.textContent = 'Direct HTTP upload to S3-compatible storage (up to 4 concurrent files). Compatible with RustFS, MinIO, and AWS S3.'; if (hint) hint.style.display = 'none'; if (btnHttp) { btnHttp.className = 'mode-btn active-http'; } if (btnUdp) { btnUdp.className = 'mode-btn'; } @@ -1090,7 +1090,7 @@ async function startUpload() { } // ============================================================ -// SIMPLE UPLOAD — uses /api/upload with @aws-sdk/lib-storage on server +// SIMPLE UPLOAD — uses /api/upload with PutObjectCommand on server // Compatible with RustFS / MinIO / generic S3 endpoints. // XMLHttpRequest used for upload progress tracking. // ============================================================