r2-explorer 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -20,6 +20,7 @@ please [open an new issue](https://github.com/G4brym/R2-Explorer/issues/new) for
20
20
  - Download files
21
21
  - Delete files
22
22
  - Right click in file for extra options
23
+ - Multipart upload for big files (Due to [Cloudflare 100MB upload restriction](https://developers.cloudflare.com/workers/platform/limits/#request-limits))
23
24
 
24
25
 
25
26
  ## FAQ
@@ -33,7 +34,8 @@ ___
33
34
 
34
35
  Q. Can i upload files bigger than 100MB?
35
36
 
36
- A. You can upload multiple files/folders at once, but each file must be under 100MB [learn more here](https://developers.cloudflare.com/workers/platform/limits/#request-limits).
37
+ A. Yes! R2-Explorer now support's [Multipart Upload](https://developers.cloudflare.com/r2/data-access/workers-api/workers-multipart-usage/),
38
+ that splits the files you are uploading in about 95MB chunks for uploading within the Cloudflare 100MB uploading limit.
37
39
 
38
40
 
39
41
  ## Getting Started
@@ -85,7 +87,6 @@ wrangler publish
85
87
 
86
88
  ## Known issues
87
89
 
88
- - When uploading files, each file cannot exceed 100MB of size [learn more here](https://developers.cloudflare.com/workers/platform/limits/#request-limits)
89
90
  - Rename files with special characters is not possible with current [sdk issue here](https://github.com/aws/aws-sdk-js/issues/1949)
90
91
 
91
92
  ## Images
@@ -34,7 +34,7 @@ fs.writeFileSync(
34
34
  "publish": "wrangler publish"
35
35
  },
36
36
  "dependencies": {
37
- "r2-explorer": "^0.3.1"
37
+ "r2-explorer": "^0.4.0"
38
38
  }
39
39
  }
40
40