hfs 0.42.0-c → 0.42.3
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 -7
- package/admin/assets/index-08017e15.js +511 -0
- package/admin/assets/{sha512-ec7bc467.js → sha512-69b26793.js} +1 -1
- package/admin/index.html +1 -1
- package/frontend/assets/{index-e2f1aded.js → index-5f125477.js} +19 -19
- package/frontend/assets/{sha512-d6f2f1c5.js → sha512-f6798733.js} +1 -1
- package/frontend/index.html +1 -1
- package/package.json +2 -2
- package/plugins/updater-disabled/plugin.js +6 -3
- package/src/api.accounts.js +2 -1
- package/src/api.vfs.js +9 -4
- package/src/const.js +1 -1
- package/src/index.js +1 -0
- package/src/plugins.js +66 -60
- package/src/vfs.js +8 -6
- package/admin/assets/index-9d67bc67.js +0 -511
package/README.md
CHANGED
|
@@ -64,12 +64,11 @@ If you don't like this behavior, disable it in the Admin-panel or enter this con
|
|
|
64
64
|
If your system is not Windows/Linux/Mac, you can try this alternative version:
|
|
65
65
|
|
|
66
66
|
1. [install node.js](https://nodejs.org)
|
|
67
|
-
2. execute
|
|
68
|
-
3. launch: `hfs`
|
|
67
|
+
2. execute at command line `npx hfs@latest`
|
|
69
68
|
|
|
70
|
-
|
|
69
|
+
The `@latest` part is optional, and ensures that you are always up to date.
|
|
71
70
|
|
|
72
|
-
|
|
71
|
+
Configuration and other files will be stored in `%HOME%/.vfs`
|
|
73
72
|
|
|
74
73
|
### Service
|
|
75
74
|
|
|
@@ -97,11 +96,11 @@ Translation is applied automatically based on the configuration of the visitor's
|
|
|
97
96
|
|
|
98
97
|
## Plug-ins
|
|
99
98
|
|
|
100
|
-
|
|
99
|
+
You can use the Admin-panel to manage your plugins and install new ones.
|
|
101
100
|
|
|
102
|
-
|
|
101
|
+
Under the hood, installing a plugin just means copying its folder inside `plugins` folder. Deleting will uninstall it.
|
|
103
102
|
|
|
104
|
-
HFS will ignore all folders with `-disabled` at the end of the name.
|
|
103
|
+
HFS will ignore all plugin folders with `-disabled` at the end of the name.
|
|
105
104
|
|
|
106
105
|
## Why you should upgrade from HFS 2.x to 3
|
|
107
106
|
|