Skip to content

Commit 2fa76ae

Browse files
authored
release(v3.1.4): restore resumable upload resume checks (testChunks) + wording polish (fixes #93)
1 parent 4b23067 commit 2fa76ae

3 files changed

Lines changed: 29 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## Changes 01/20/2026 (v3.1.4)
4+
5+
`release(v3.1.4): restore resumable upload resume checks (testChunks) + wording polish (fixes #93)`
6+
7+
```text
8+
release(v3.1.4): restore resumable upload resume checks (testChunks) + wording polish (fixes #93)
9+
10+
- uploads: re-enable Resumable.js testChunks so interrupted uploads can resume
11+
- admin: tweak Instance ID / renewal copy to “12-month updates” wording
12+
13+
Fixes #93
14+
```
15+
16+
**Fixed**
17+
18+
- Resumable uploads resume again (fixes #93)
19+
- Re-enabled testChunks in Resumable.js so the uploader checks which chunks already exist and continues where it left off after an interrupted upload.
20+
21+
**Changed**
22+
23+
- Admin Pro license UI wording
24+
- Updated copy to say “12-month updates plans” and “Renew 12-month updates” (clarifies it’s not a forced yearly subscription).
25+
26+
---
27+
328
## Changes 01/20/2026 (v3.1.3)
429

530
`release(v3.1.3): document VIRUS_SCAN_EXCLUDE_DIRS for ClamAV upload scanning`

public/js/adminPanel.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5165,7 +5165,7 @@ ${t("shared_max_upload_size_bytes")}
51655165
? `
51665166
<div class="pro-license-meta" style="margin-top:8px;font-size:12px;color:#777;">
51675167
<div class="d-flex align-items-center flex-wrap" style="gap:6px;">
5168-
<span>Instance ID (required for yearly updates plans): <code>${proInstanceId}</code></span>
5168+
<span>Instance ID (required for 12-month updates plans): <code>${proInstanceId}</code></span>
51695169
<button type="button" class="btn btn-link btn-sm p-0" id="proCopyInstanceIdBtn">Copy</button>
51705170
</div>
51715171
</div>
@@ -5258,7 +5258,7 @@ ${t("shared_max_upload_size_bytes")}
52585258
target="_blank"
52595259
rel="noopener noreferrer"
52605260
class="btn btn-sm btn-secondary">
5261-
Renew yearly updates
5261+
Renew 12-month updates
52625262
</a>
52635263
<a
52645264
href="https://filerise.net/pro/instances.php"
@@ -5269,7 +5269,7 @@ ${t("shared_max_upload_size_bytes")}
52695269
</a>
52705270
</div>
52715271
<small class="text-muted d-block" style="margin-top:4px;">
5272-
Renewals extend updates for yearly plans. Instance IDs apply to Business yearly updates.
5272+
Renewals extend updates for 12-month plans. Instance IDs apply to Business 12-month updates.
52735273
</small>
52745274
</div>
52755275
` : ''}

public/js/upload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ async function initResumableUpload() {
932932
chunkSize: getResumableChunkSizeBytes(),
933933
simultaneousUploads: 3,
934934
forceChunkSize: true,
935-
testChunks: false,
935+
testChunks: true,
936936
withCredentials: true,
937937
headers: { 'X-CSRF-Token': window.csrfToken },
938938
query: () => {

0 commit comments

Comments
 (0)