From ad5f9a4186f1fcf4be20cd2ba491264f87370b9b Mon Sep 17 00:00:00 2001 From: Zac Date: Tue, 7 Apr 2026 00:56:04 -0400 Subject: [PATCH] Update HTTP mode description to reflect actual upload method Co-Authored-By: Claude Opus 4.6 --- public/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. // ============================================================