version 0.14.0
Massimo Melina committed
Mar 14, 2022 at 16:11 UTC
127a6d2087854ea99db8f97b9b106a426854ab1a
3 files changed
+5
-5
README.md
+1
-1
@@ -53,7 +53,7 @@ As you can see from the list above, we already have some goods that you can't fi
53
If your system is not covered, you can try this alternative version:
54
55
1. install node.js version 16+ from https://nodejs.org/
56
-2. download and unzip the latest package named `hfsVERSION.zip` from https://github.com/rejetto/hfs/releases/
56
+2. download and unzip `hfs-node.zip`
57
3. chmod +x run
58
4. launch `./run`
59
package-lock.json
+2
-2
@@ -1,12 +1,12 @@
1
{
2
"name": "hfs",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
"lockfileVersion": 2,
5
"requires": true,
6
"packages": {
7
"": {
8
"name": "hfs",
9
- "version": "0.13.0",
9
+ "version": "0.14.0",
10
"license": "GPL-3.0",
11
"workspaces": [
12
"server",
package.json
+2
-2
@@ -1,6 +1,6 @@
1
{
2
"name": "hfs",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
"description": "HTTP File Server",
5
"keywords": [
6
"file server",
@@ -21,7 +21,7 @@
21
"build-frontend": "cd frontend && npm run build",
22
"build-admin": "cd admin && npm run build",
23
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
24
- "zip-dist": "cd dist && zip hfs.zip -r * -x *.zip *.exe",
24
+ "zip-dist": "cd dist && zip hfs-node.zip -r * -x *.zip *.exe hfs-*",
25
"exe-dist": "pkg . -C brotli && cd dist && mv -f hfs-win.exe hfs.exe && zip plugins.zip -r plugins",
26
"new-dist": "npm run build-all && npm run zip-dist && npm run exe-dist"
27
},