r2-explorer 0.4.0 → 0.5.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
@@ -20,7 +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
+ - Multipart upload for big files
24
24
 
25
25
 
26
26
  ## FAQ
@@ -72,6 +72,18 @@ After that just run publish and the project will be up and running for you and e
72
72
  wrangler publish
73
73
  ```
74
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
+
75
87
  ## TODO
76
88
 
77
89
  - Integration with cloudflare access
@@ -83,7 +95,8 @@ wrangler publish
83
95
  - Tooltip when hovering a file with absolute time in "x days time ago" format
84
96
  - Automatically load more files, when the bottom is reached (current limit is 1000 files)
85
97
  - Download files bigger than 2gb with presigned url's
86
- - 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
87
100
 
88
101
  ## Known issues
89
102
 
@@ -34,7 +34,7 @@ fs.writeFileSync(
34
34
  "publish": "wrangler publish"
35
35
  },
36
36
  "dependencies": {
37
- "r2-explorer": "^0.4.0"
37
+ "r2-explorer": "^0.5.1"
38
38
  }
39
39
  }
40
40