r2-explorer 0.3.0 → 0.3.1

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
@@ -29,6 +29,12 @@ Q. Is there any Authentication for r2-explorer?
29
29
  A. No. If you want authenticated access, you must setup [Cloudflare Access](https://www.cloudflare.com/products/zero-trust/access/) in your account.
30
30
  Access is free up to 50 users.
31
31
 
32
+ ___
33
+
34
+ Q. Can i upload files bigger than 100MB?
35
+
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
+
32
38
 
33
39
  ## Getting Started
34
40
 
@@ -73,13 +79,13 @@ wrangler publish
73
79
  - Delete folders
74
80
  - Image thumbnail's using Cloudflare workers
75
81
  - Tooltip when hovering a file with absolute time in "x days time ago" format
76
- - Upload folders with files
77
82
  - Automatically load more files, when the bottom is reached (current limit is 1000 files)
78
83
  - Download files bigger than 2gb with presigned url's
79
84
  - set folder and file navigation in the url to allow direct share of a specific folder/file
80
85
 
81
86
  ## Known issues
82
87
 
88
+ - When uploading files, each file cannot exceed 100MB of size [learn more here](https://developers.cloudflare.com/workers/platform/limits/#request-limits)
83
89
  - Rename files with special characters is not possible with current [sdk issue here](https://github.com/aws/aws-sdk-js/issues/1949)
84
90
 
85
91
  ## Images
@@ -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.3.1"
38
38
  }
39
39
  }
40
40