r2-explorer 0.2.9 → 0.2.10
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 +9 -5
- package/bin/r2-explorer.js +2 -2
- package/dist/umd/index.js +20 -22
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,9 @@ This project is deployed/self-hosted in your own Cloudflare Account as a Worker,
|
|
|
6
6
|
|
|
7
7
|
You can see an live example, in `read-only` mode, in your browser at https://r2-explorer.massadas.com/
|
|
8
8
|
|
|
9
|
+
This project is still in development, and there are definitely going to be some weird issues sometimes, but when you find something
|
|
10
|
+
please [open an new issue](https://github.com/G4brym/R2-Explorer/issues/new) for it to get solved.
|
|
11
|
+
|
|
9
12
|
## Features
|
|
10
13
|
|
|
11
14
|
- Very quick bucket/folder navigation
|
|
@@ -73,6 +76,7 @@ wrangler publish
|
|
|
73
76
|
- Upload folders with files
|
|
74
77
|
- Automatically load more files, when the bottom is reached (current limit is 1000 files)
|
|
75
78
|
- Download files bigger than 2gb with presigned url's
|
|
79
|
+
- set folder and file navigation in the url to allow direct share of a specific folder/file
|
|
76
80
|
|
|
77
81
|
## Known issues
|
|
78
82
|
|
|
@@ -81,19 +85,19 @@ wrangler publish
|
|
|
81
85
|
## Images
|
|
82
86
|
|
|
83
87
|
Home Page
|
|
84
|
-

|
|
85
89
|
|
|
86
90
|
Image Previewer
|
|
87
|
-

|
|
88
92
|
|
|
89
93
|
Pdf Previewer
|
|
90
|
-

|
|
91
95
|
|
|
92
96
|
New Folder
|
|
93
|
-

|
|
94
98
|
|
|
95
99
|
Uploading Files
|
|
96
|
-

|
|
97
101
|
|
|
98
102
|
### Compiles and hot-reloads for development
|
|
99
103
|
|
package/bin/r2-explorer.js
CHANGED
|
@@ -25,7 +25,7 @@ fs.writeFileSync(
|
|
|
25
25
|
`${dir}/package.json`,
|
|
26
26
|
`{
|
|
27
27
|
"name": "${projectName}",
|
|
28
|
-
"version": "0.0
|
|
28
|
+
"version": "0.1.0",
|
|
29
29
|
"private": true,
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"wrangler": "^2.4.2"
|
|
@@ -34,7 +34,7 @@ fs.writeFileSync(
|
|
|
34
34
|
"publish": "wrangler publish"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"r2-explorer": "^0.2.
|
|
37
|
+
"r2-explorer": "^0.2.10"
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|