hfs 0.49.0 → 0.50.0-alpha1
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 +3 -0
- package/admin/assets/{index-3c80e1c3.js → index-c618ba7d.js} +112 -111
- package/admin/assets/{index-1c2b890b.css → index-f3fd8783.css} +1 -1
- package/{frontend/assets/sha512-37516713.js → admin/assets/sha512-1ee27408.js} +1 -1
- package/admin/index.html +2 -2
- package/frontend/assets/index-83cd0389.js +94 -0
- package/frontend/assets/{index-669a2741.css → index-b50efd06.css} +1 -1
- package/{admin/assets/sha512-03998350.js → frontend/assets/sha512-90bb0108.js} +1 -1
- package/frontend/index.html +2 -2
- package/package.json +1 -1
- package/plugins/antibrute/plugin.js +1 -1
- package/plugins/vhosting/plugin.js +3 -3
- package/src/acme.js +14 -14
- package/src/adminApis.js +12 -13
- package/src/api.accounts.js +7 -1
- package/src/api.auth.js +7 -31
- package/src/api.file_list.js +3 -1
- package/src/api.monitor.js +2 -2
- package/src/api.vfs.js +6 -8
- package/src/auth.js +49 -0
- package/src/block.js +1 -1
- package/src/const.js +1 -1
- package/src/cross.js +43 -3
- package/src/listen.js +16 -5
- package/src/log.js +2 -2
- package/src/middlewares.js +23 -21
- package/src/nat.js +1 -0
- package/src/perm.js +1 -6
- package/src/plugins.js +0 -1
- package/src/selfCheck.js +26 -36
- package/src/serveGuiFiles.js +2 -4
- package/src/srp.js +22 -0
- package/src/upload.js +2 -2
- package/src/vfs.js +10 -14
- package/src/zip.js +2 -0
- package/frontend/assets/index-0be475af.js +0 -94
package/README.md
CHANGED
|
@@ -182,6 +182,7 @@ Some actions you can take for improved security:
|
|
|
182
182
|
- Appending `#LOGIN` to address will bring up the login dialog
|
|
183
183
|
- Appending ?lang=CODE to address will force a specific language
|
|
184
184
|
- right/ctrl/command click on toggle-all checkbox will invert each checkbox state
|
|
185
|
+
- Appending `?login=USER:PASSWORD` will automatically log in the browser
|
|
185
186
|
|
|
186
187
|
## Contribute
|
|
187
188
|
|
|
@@ -210,6 +211,8 @@ There are several ways to contribute
|
|
|
210
211
|
|
|
211
212
|
## More
|
|
212
213
|
|
|
214
|
+
- [APIs](https://github.com/rejetto/hfs/wiki/APIs)
|
|
215
|
+
|
|
213
216
|
- [Build yourself](dev.md)
|
|
214
217
|
|
|
215
218
|
- [License](https://github.com/rejetto/hfs/blob/master/LICENSE.txt)
|