r2-explorer 0.2.10 → 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
@@ -14,6 +14,7 @@ please [open an new issue](https://github.com/G4brym/R2-Explorer/issues/new) for
14
14
  - Very quick bucket/folder navigation
15
15
  - pdf, image, txt, markdown, csv, etc in-browser preview
16
16
  - Drag-and-Drop upload
17
+ - Multiple files and folder uploads
17
18
  - Create folders
18
19
  - Rename files
19
20
  - Download files
@@ -28,6 +29,12 @@ Q. Is there any Authentication for r2-explorer?
28
29
  A. No. If you want authenticated access, you must setup [Cloudflare Access](https://www.cloudflare.com/products/zero-trust/access/) in your account.
29
30
  Access is free up to 50 users.
30
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
+
31
38
 
32
39
  ## Getting Started
33
40
 
@@ -68,18 +75,17 @@ wrangler publish
68
75
  - Integration with cloudflare access
69
76
  - allow bucket names with spaces
70
77
  - Search files
71
- - Upload folders
72
78
  - Rename folders
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.2.10"
37
+ "r2-explorer": "^0.3.1"
38
38
  }
39
39
  }
40
40