You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Changelog
2
2
3
+
## 4.27.0
4
+
5
+
- add `allowMinimumUploadDuration` set to `false` to prevent a minimum upload time of 750ms.
6
+
3
7
## 4.26.2
4
8
5
9
-`setMetadata` internal `silent` bool now does fire internal `DID_UPDATE_ITEM_METADATA` but doesn't trigger upload or file prepare logic. This fixes an issue with the new image editor and file poster plugins.
Copy file name to clipboardExpand all lines: dist/filepond.esm.js
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*!
2
-
* FilePond 4.26.2
2
+
* FilePond 4.27.0
3
3
* Licensed under MIT, https://opensource.org/licenses/MIT/
4
4
* Please visit https://pqina.nl/filepond/ for details.
5
5
*/
@@ -1851,6 +1851,7 @@ const defaultOptions = {
1851
1851
// Upload related
1852
1852
instantUpload: [true,Type.BOOLEAN],// Should upload files immediately on drop
1853
1853
maxParallelUploads: [2,Type.INT],// Maximum files to upload in parallel
1854
+
allowMinimumUploadDuration: [true,Type.BOOLEAN],// if true uploads take at least 750 ms, this ensures the user sees the upload progress giving trust the upload actually happened
Copy file name to clipboardExpand all lines: dist/filepond.js
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*!
2
-
* FilePond 4.26.2
2
+
* FilePond 4.27.0
3
3
* Licensed under MIT, https://opensource.org/licenses/MIT/
4
4
* Please visit https://pqina.nl/filepond/ for details.
5
5
*/
@@ -3777,6 +3777,7 @@
3777
3777
// Upload related
3778
3778
instantUpload: [true,Type.BOOLEAN],// Should upload files immediately on drop
3779
3779
maxParallelUploads: [2,Type.INT],// Maximum files to upload in parallel
3780
+
allowMinimumUploadDuration: [true,Type.BOOLEAN],// if true uploads take at least 750 ms, this ensures the user sees the upload progress giving trust the upload actually happened
itemInsertLocationFreedom: [true,Type.BOOLEAN],// Set to false to always add items to begin or end of list
73
76
itemInsertLocation: ['before',Type.STRING],// Default index in list to add items that have been dropped at the top of the list
74
77
itemInsertInterval: [75,Type.INT],
75
-
78
+
76
79
// Drag 'n Drop related
77
80
dropOnPage: [false,Type.BOOLEAN],// Allow dropping of files anywhere on page (prevents browser from opening file if dropped outside of Up)
78
81
dropOnElement: [true,Type.BOOLEAN],// Drop needs to happen on element (set to false to also load drops outside of Up)
@@ -82,7 +85,8 @@ export const defaultOptions = {
82
85
// Upload related
83
86
instantUpload: [true,Type.BOOLEAN],// Should upload files immediately on drop
84
87
maxParallelUploads: [2,Type.INT],// Maximum files to upload in parallel
85
-
88
+
allowMinimumUploadDuration: [true,Type.BOOLEAN],// if true uploads take at least 750 ms, this ensures the user sees the upload progress giving trust the upload actually happened
0 commit comments