hfs 0.46.0-alpha3 → 0.46.1-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 +2 -8
- package/admin/assets/index-963c15a5.js +517 -0
- package/{frontend/assets/sha512-acedcaa7.js → admin/assets/sha512-471fbd54.js} +2 -2
- package/admin/index.html +1 -1
- package/frontend/assets/index-c0f02a72.js +94 -0
- package/frontend/assets/index-f2f8fd6b.css +1 -0
- package/{admin/assets/sha512-734ea9fb.js → frontend/assets/sha512-7dcc825b.js} +2 -2
- package/frontend/fontello.css +1 -1
- package/frontend/index.html +2 -2
- package/package.json +2 -1
- package/plugins/download-counter/plugin.js +3 -1
- package/plugins/download-counter/public/main.js +3 -2
- package/plugins/list-uploader/plugin.js +21 -0
- package/plugins/list-uploader/public/main.js +27 -0
- package/plugins/vhosting/plugin.js +6 -3
- package/src/adminApis.js +2 -1
- package/src/api.auth.js +4 -4
- package/src/api.file_list.js +4 -5
- package/src/api.monitor.js +7 -5
- package/src/api.plugins.js +57 -11
- package/src/api.vfs.js +2 -1
- package/src/apiMiddleware.js +4 -0
- package/src/commands.js +9 -0
- package/src/config.js +9 -5
- package/src/connections.js +1 -1
- package/src/const.js +4 -3
- package/src/frontEndApis.js +33 -1
- package/src/github.js +20 -8
- package/src/index.js +4 -4
- package/src/lang.js +3 -2
- package/src/langs/embedded.js +2 -1
- package/src/langs/hfs-lang-fr.json +16 -4
- package/src/langs/hfs-lang-it.json +11 -4
- package/src/langs/hfs-lang-ru.json +16 -4
- package/src/langs/hfs-lang-vi.json +116 -0
- package/src/log.js +50 -47
- package/src/middlewares.js +10 -3
- package/src/plugins.js +178 -102
- package/src/serveFile.js +13 -5
- package/src/serveGuiFiles.js +8 -3
- package/src/throttler.js +11 -6
- package/src/upload.js +26 -9
- package/src/util-files.js +26 -12
- package/src/zip.js +2 -2
- package/admin/assets/index-74847322.js +0 -510
- package/frontend/assets/index-d7a9a422.js +0 -94
- package/frontend/assets/index-db36ef67.css +0 -1
package/README.md
CHANGED
|
@@ -69,6 +69,8 @@ If your system is not Windows/Linux/Mac or you just don't want to run the binari
|
|
|
69
69
|
|
|
70
70
|
The `@latest` part is optional, and ensures that you are always up to date.
|
|
71
71
|
|
|
72
|
+
If this procedure fails, it may be that you are missing one of [these requirements](https://github.com/nodejs/node-gyp#installation).
|
|
73
|
+
|
|
72
74
|
Configuration and other files will be stored in `%HOME%/.vfs`
|
|
73
75
|
|
|
74
76
|
### Service
|
|
@@ -116,14 +118,6 @@ In the Languages section of the Admin-panel you can install additional language
|
|
|
116
118
|
|
|
117
119
|
If your language is missing, please consider [translating yourself](https://github.com/rejetto/hfs/wiki/Translation).
|
|
118
120
|
|
|
119
|
-
## Plug-ins
|
|
120
|
-
|
|
121
|
-
You can use the Admin-panel to manage your plugins and install new ones.
|
|
122
|
-
|
|
123
|
-
Under the hood, installing a plugin just means copying its folder inside `plugins` folder. Deleting will uninstall it.
|
|
124
|
-
|
|
125
|
-
HFS will ignore all plugin folders with `-disabled` at the end of the name.
|
|
126
|
-
|
|
127
121
|
## Why you should upgrade from HFS 2.x to 3
|
|
128
122
|
|
|
129
123
|
As you can see from the list of features, we already have some goods that you cannot find in HFS 2.
|