r2-explorer 0.3.0 → 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
@@ -29,6 +30,13 @@ Q. Is there any Authentication for r2-explorer?
29
30
  A. No. If you want authenticated access, you must setup [Cloudflare Access](https://www.cloudflare.com/products/zero-trust/access/) in your account.
30
31
  Access is free up to 50 users.
31
32
 
33
+ ___
34
+
35
+ Q. Can i upload files bigger than 100MB?
36
+
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.
39
+
32
40
 
33
41
  ## Getting Started
34
42
 
@@ -73,7 +81,6 @@ wrangler publish
73
81
  - Delete folders
74
82
  - Image thumbnail's using Cloudflare workers
75
83
  - Tooltip when hovering a file with absolute time in "x days time ago" format
76
- - Upload folders with files
77
84
  - Automatically load more files, when the bottom is reached (current limit is 1000 files)
78
85
  - Download files bigger than 2gb with presigned url's
79
86
  - set folder and file navigation in the url to allow direct share of a specific folder/file
@@ -34,7 +34,7 @@ fs.writeFileSync(
34
34
  "publish": "wrangler publish"
35
35
  },
36
36
  "dependencies": {
37
- "r2-explorer": "^0.3.0"
37
+ "r2-explorer": "^0.4.0"
38
38
  }
39
39
  }
40
40