hfs 0.41.0 → 0.42.0-a
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 +6 -0
- package/admin/assets/{index-ba8da62c.css → index-94bbe0be.css} +1 -1
- package/admin/assets/index-c9fbb28c.js +511 -0
- package/{frontend/assets/sha512-09fdf0a5.js → admin/assets/sha512-535b693b.js} +1 -1
- package/admin/index.html +2 -2
- package/frontend/assets/index-91fd0c21.js +94 -0
- package/frontend/assets/index-a09cacfd.css +1 -0
- package/{admin/assets/sha512-de1e5bd3.js → frontend/assets/sha512-d6480daa.js} +1 -1
- package/frontend/index.html +2 -2
- package/package.json +1 -1
- package/plugins/vhosting/plugin.js +3 -3
- package/src/adminApis.js +14 -2
- package/src/api.accounts.js +9 -5
- package/src/api.file_list.js +3 -5
- package/src/api.vfs.js +2 -3
- package/src/block.js +1 -1
- package/src/const.js +2 -2
- package/src/github.js +4 -2
- package/src/listen.js +2 -2
- package/src/middlewares.js +7 -9
- package/src/misc.js +14 -1
- package/src/perm.js +3 -10
- package/src/serveFile.js +4 -4
- package/src/serveGuiFiles.js +5 -1
- package/src/vfs.js +8 -11
- package/src/watchLoad.js +21 -17
- package/admin/assets/index-5c926903.js +0 -510
- package/frontend/assets/index-25b49014.css +0 -1
- package/frontend/assets/index-7ceb2f4c.js +0 -94
package/README.md
CHANGED
|
@@ -46,6 +46,8 @@ This is a full rewrite of [the Delphi version](https://github.com/rejetto/hfs2).
|
|
|
46
46
|
|
|
47
47
|
## Installation
|
|
48
48
|
|
|
49
|
+
NB: minimum Windows version required is 8.1 , Windows Server 2012 R2 (because of Node.js 16)
|
|
50
|
+
|
|
49
51
|
1. go to https://github.com/rejetto/hfs/releases
|
|
50
52
|
2. click on `Assets`
|
|
51
53
|
3. **download** the right version for your computer
|
|
@@ -165,6 +167,10 @@ This is enough, but you may want to configure generated links accordingly:
|
|
|
165
167
|
- click the change button (right side of the field)
|
|
166
168
|
- enter the final URL of your proxy including the location
|
|
167
169
|
|
|
170
|
+
## Hidden features
|
|
171
|
+
|
|
172
|
+
- Going to address `#LOGIN` will bring up the login dialog
|
|
173
|
+
|
|
168
174
|
## Contribute
|
|
169
175
|
|
|
170
176
|
There are several ways to contribute
|
|
@@ -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}.dialog-backdrop{position:fixed;inset:0;background:#888a;display:flex;justify-content:center;align-items:center;z-index:1000}.dialog{background:#fff;background:var(--bg);padding:max(.5em,1vw);border-radius:1em;position:relative;margin:0 3vw;overflow:hidden;max-height:calc(100vh - 2em);display:flex;justify-content:center}.dialog-icon{color:#fff;background-color:var(--color);position:absolute;top:0;width:
|
|
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}.dialog-backdrop{position:fixed;inset:0;background:#888a;display:flex;justify-content:center;align-items:center;z-index:1000}.dialog{background:#fff;background:var(--bg);padding:max(.5em,1vw);border-radius:1em;position:relative;margin:0 3vw;overflow:hidden;max-height:calc(100vh - 2em);display:flex;justify-content:center}.dialog-icon{color:#fff;background-color:var(--color);position:absolute;top:0;width:2em;height:1.8em;text-align:center;border-radius:.8em 0}.dialog-title{font-size:120%;position:absolute;top:5px}.dialog-icon~.dialog-title{text-align:center}.dialog-closer{border-radius:0 .8em;right:0;padding:0;background-color:#c88}.dialog-icon~.dialog-content{margin-top:2em}.dialog-type{left:0;top:0;overflow:hidden;line-height:1.8em;opacity:.8}.dialog-content{overflow:auto;max-height:calc(100vh - 4.5em)}.dialog-content p{white-space:pre-wrap;margin:.5em 0}.dialog-confirm .dialog-content button{margin-top:1em}.dialog-alert-info{--color: #282 }.dialog-alert-warning{--color: #c91 }.dialog-alert-error{--color: #822}@media (max-width: 42em){.dialog-icon{font-size:120%}.dialog-icon~.dialog-content{margin-top:2.5em}.dialog-title{top:5px}}.dialog-prompt label{display:block;margin-bottom:.5em;margin-left:.1em}
|