hfs 0.46.1 → 0.47.0-alpha5
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 +4 -4
- package/admin/assets/{index-35f6e3dc.css → index-20dd43f3.css} +1 -1
- package/admin/assets/index-fb9e0c09.js +518 -0
- package/{frontend/assets/sha512-d9635c9d.js → admin/assets/sha512-da763b08.js} +1 -1
- package/admin/index.html +2 -2
- package/frontend/assets/index-0e105986.js +94 -0
- package/{admin/assets/sha512-3412b98f.js → frontend/assets/sha512-5c008206.js} +1 -1
- package/frontend/index.html +1 -2
- package/package.json +2 -2
- package/plugins/list-uploader/plugin.js +1 -1
- package/plugins/list-uploader/public/main.js +9 -10
- package/src/adminApis.js +20 -5
- package/src/api.file_list.js +3 -2
- package/src/api.monitor.js +34 -31
- package/src/api.vfs.js +37 -34
- package/src/apiMiddleware.js +42 -14
- package/src/commands.js +2 -2
- package/src/config.js +15 -12
- package/src/connections.js +3 -4
- package/src/consoleLog.js +17 -0
- package/src/const.js +4 -3
- package/src/frontEndApis.js +17 -10
- package/src/index.js +3 -1
- package/src/langs/hfs-lang-it.json +2 -2
- package/src/langs/hfs-lang-ru.json +3 -3
- package/src/log.js +2 -2
- package/src/middlewares.js +2 -2
- package/src/misc.js +5 -1
- package/src/serveFile.js +2 -1
- package/src/throttler.js +1 -1
- package/src/update.js +44 -7
- package/src/util-http.js +8 -3
- package/src/vfs.js +36 -12
- package/admin/assets/index-7f1741ba.js +0 -517
- package/frontend/assets/index-b49b8a16.js +0 -94
package/README.md
CHANGED
|
@@ -28,16 +28,16 @@ This is a full rewrite of [the Delphi version](https://github.com/rejetto/hfs2).
|
|
|
28
28
|
- https
|
|
29
29
|
- unicode
|
|
30
30
|
- virtual file system
|
|
31
|
-
- mobile friendly
|
|
31
|
+
- mobile friendly
|
|
32
32
|
- search
|
|
33
33
|
- accounts
|
|
34
|
-
- resumable downloads
|
|
35
|
-
- resumable uploads
|
|
34
|
+
- resumable downloads & uploads
|
|
36
35
|
- download folders as zip archive
|
|
37
36
|
- remote delete
|
|
38
37
|
- simple website serving
|
|
39
38
|
- plug-ins
|
|
40
|
-
-
|
|
39
|
+
- real-time monitoring of connections
|
|
40
|
+
- [show some files](https://github.com/rejetto/hfs/discussions/270)
|
|
41
41
|
- speed throttler
|
|
42
42
|
- admin web interface
|
|
43
43
|
- multi-language front-end
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{height:100dvh}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:100vh;background:#000}#root{min-height:100%;display:flex}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.MuiTreeItem-content{box-sizing:border-box}ol,ul{margin-top:.2em}
|
|
1
|
+
:root{height:100dvh}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:100vh;background:#000}#root{min-height:100%;display:flex}main{word-break:break-word}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.MuiTreeItem-content{box-sizing:border-box}ol,ul{margin-top:.2em}
|