hfs 0.51.0-beta7 → 0.51.0-beta9
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 +5 -0
- package/admin/assets/{index-4c6b6530.js → index-fd6317f1.js} +131 -131
- package/{frontend/assets/sha512-e149e2f9.js → admin/assets/sha512-1eacece2.js} +1 -1
- package/admin/index.html +2 -2
- package/frontend/assets/{index-75533b70.js → index-54b920e7.js} +21 -21
- package/frontend/assets/{index-a452a199.css → index-7468bc8b.css} +1 -1
- package/{admin/assets/sha512-268b7a61.js → frontend/assets/sha512-0e641e75.js} +1 -1
- package/frontend/index.html +2 -2
- package/package.json +1 -1
- package/plugins/download-counter/plugin.js +3 -3
- package/src/SendList.js +127 -0
- package/src/adminApis.js +3 -2
- package/src/api.get_file_list.js +4 -3
- package/src/api.lang.js +2 -1
- package/src/api.monitor.js +19 -30
- package/src/api.plugins.js +13 -7
- package/src/api.vfs.js +2 -1
- package/src/apiMiddleware.js +4 -95
- package/src/connections.js +15 -7
- package/src/const.js +2 -2
- package/src/cross.js +12 -3
- package/src/errorPages.js +1 -0
- package/src/frontEndApis.js +2 -1
- package/src/geo.js +2 -2
- package/src/index.js +4 -3
- package/src/langs/embedded.js +3 -2
- package/src/langs/hfs-lang-ja.json +137 -0
- package/src/langs/hfs-lang-pt-br.json +137 -0
- package/src/langs/hfs-lang-ru.json +19 -11
- package/src/listen.js +4 -5
- package/src/log.js +3 -2
- package/src/middlewares.js +13 -132
- package/src/misc.js +2 -2
- package/src/plugins.js +12 -1
- package/src/roots.js +2 -2
- package/src/selfCheck.js +35 -23
- package/src/serveFile.js +14 -11
- package/src/serveGuiAndSharedFiles.js +124 -0
- package/src/throttler.js +8 -9
- package/src/upload.js +5 -6
- package/src/vfs.js +2 -2
- package/src/watchLoad.js +1 -0
- package/src/zip.js +1 -1
- package/src/langs/hfs-lang-pt.json +0 -109
package/README.md
CHANGED
|
@@ -186,6 +186,7 @@ Some actions you can take for improved security:
|
|
|
186
186
|
- Appending `?login=USER:PASSWORD` will automatically log in the browser
|
|
187
187
|
- Appending `?overwrite` on uploads, will try override the dont_overwrite_uploading configuration, provided you also have delete permission
|
|
188
188
|
- Right-click on "check for updates" will let you input a URL of a version to install
|
|
189
|
+
- Admin: ctrl+digit will switch page
|
|
189
190
|
|
|
190
191
|
## Contribute
|
|
191
192
|
|
|
@@ -197,6 +198,10 @@ There are several ways to contribute
|
|
|
197
198
|
If you find important security problems, please [contact us privately](mailto:a@rejetto.com) so that we can publish a fix before
|
|
198
199
|
the problem is disclosed, for the safety of other users.
|
|
199
200
|
|
|
201
|
+
- Use beta versions, and give feedback.
|
|
202
|
+
|
|
203
|
+
While betas have more problems, you'll get more features and give a huge help to the project.
|
|
204
|
+
|
|
200
205
|
- [Translate to your language](https://github.com/rejetto/hfs/wiki/Translation).
|
|
201
206
|
|
|
202
207
|
- [Suggest ideas](https://github.com/rejetto/hfs/discussions)
|