r2-explorer 0.3.1 → 0.5.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
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
@@ -70,6 +72,18 @@ After that just run publish and the project will be up and running for you and e
70
72
  wrangler publish
71
73
  ```
72
74
 
75
+ ## Upgrading your installation
76
+ In order to update to the latest version you just need to install the latest r2-explorer package from npm and re-deploy your application
77
+
78
+ ```bash
79
+ npm install r2-explorer@latest --save
80
+ ```
81
+
82
+ ```bash
83
+ wrangler publish
84
+ ```
85
+
86
+
73
87
  ## TODO
74
88
 
75
89
  - Integration with cloudflare access
@@ -81,11 +95,11 @@ wrangler publish
81
95
  - Tooltip when hovering a file with absolute time in "x days time ago" format
82
96
  - Automatically load more files, when the bottom is reached (current limit is 1000 files)
83
97
  - Download files bigger than 2gb with presigned url's
84
- - set folder and file navigation in the url to allow direct share of a specific folder/file
98
+ - set file navigation in the url to allow direct share of a specific file
99
+ - only support previews to files under 100mb
85
100
 
86
101
  ## Known issues
87
102
 
88
- - When uploading files, each file cannot exceed 100MB of size [learn more here](https://developers.cloudflare.com/workers/platform/limits/#request-limits)
89
103
  - Rename files with special characters is not possible with current [sdk issue here](https://github.com/aws/aws-sdk-js/issues/1949)
90
104
 
91
105
  ## 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.5.0"
38
38
  }
39
39
  }
40
40