filecat 1.0.8 → 1.0.10

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.
@@ -353,21 +353,6 @@ See the Apache Version 2.0 License for specific language governing permissions
353
353
  and limitations under the License.
354
354
  ***************************************************************************** */
355
355
 
356
- /*! *****************************************************************************
357
- Copyright (c) Microsoft Corporation.
358
-
359
- Permission to use, copy, modify, and/or distribute this software for any
360
- purpose with or without fee is hereby granted.
361
-
362
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
363
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
364
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
365
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
366
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
367
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
368
- PERFORMANCE OF THIS SOFTWARE.
369
- ***************************************************************************** */
370
-
371
356
  /*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
372
357
 
373
358
  /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
package/env CHANGED
@@ -1,12 +1,16 @@
1
1
 
2
2
  #服务器端口
3
+ #server port
3
4
  port=5567
4
- # 文件夹起始地址
5
- #base_folder=D:\
5
+ # 文件夹起始地址 文件管理的默认地址,不填的话会是执行程序的目录
6
+ # The starting folder address, the default address for file management. If not specified, it will be the directory of the executing program.
7
+ #base_folder=D:\ 或者 /home/user
6
8
 
7
9
  # 本地账号密码
8
- username=123
9
- password=123
10
+ username=admin
11
+ password=admin
10
12
 
11
- #work_dir=D:\data
13
+ # 该程序需要一个目录来存放数据,最好是空目录
14
+ # The program requires a directory to store data, preferably an empty directory.
15
+ #work_dir=D:\data 或者 /home
12
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "filecat",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "filecat 文件管理器",
5
5
  "author": "xiaobaidadada",
6
6
  "scripts": {
@@ -29,19 +29,36 @@
29
29
  "bin": {
30
30
  "filecat": "shell/filecat"
31
31
  },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git@github.com:xiaobaidadada/filecat.git"
35
+ },
36
+ "homepage": "https://github.com/xiaobaidadada/filecat",
37
+ "bugs": {
38
+ "url": "https://github.com/xiaobaidadada/filecat/issues"
39
+ },
40
+ "license": "Apache-2.0",
32
41
  "keywords": [
42
+ "文件服务器",
43
+ "linux管理",
44
+ "运维面板",
45
+ "远程桌面",
46
+ "浏览器代理",
47
+ "简洁",
48
+ "filebrowser",
33
49
  "administrator",
34
50
  "filemanager",
35
51
  "cpu",
36
52
  "docker",
37
53
  "linux",
38
- "文件服务器",
39
- "运维面板",
54
+ "rdp",
55
+ "rtsp",
40
56
  "react",
41
57
  "ssh",
42
58
  "ftp",
43
59
  "systeminfo",
44
60
  "vpn",
61
+ "p2p",
45
62
  "docker",
46
63
  "ddns"
47
64
  ],
@@ -54,7 +71,7 @@
54
71
  "package.json"
55
72
  ],
56
73
  "dependencies": {
57
- "@xiaobaidadada/node-pty-prebuilt": "^1.0.3",
74
+ "@xiaobaidadada/node-pty-prebuilt": "^1.0.4",
58
75
  "@xiaobaidadada/node-tuntap2-wintun": "^1.0.6",
59
76
  "node-process-watcher": "^1.0.2",
60
77
  "node-unrar-js": "^2.0.2",
@@ -72,7 +89,7 @@
72
89
  "@xterm/xterm": "^5.5.0",
73
90
  "ace-builds": "^1.32.9",
74
91
  "archiver": "^7.0.1",
75
- "axios": "^1.6.8",
92
+ "axios": "^1.7.7",
76
93
  "babel-loader": "^9.1.3",
77
94
  "chart.js": "^4.4.2",
78
95
  "copy-webpack-plugin": "^12.0.2",
@@ -118,7 +135,6 @@
118
135
  "style-loader": "^3.3.4",
119
136
  "systeminformation": "^5.22.11",
120
137
  "tar": "^7.4.3",
121
- "tencentcloud-sdk-nodejs": "^4.0.858",
122
138
  "tldts": "^6.1.20",
123
139
  "ts-node": "^10.9.2",
124
140
  "typedi": "^0.10.0",
@@ -16,6 +16,9 @@ const plugins = [
16
16
  }),
17
17
  new webpack.DefinePlugin({
18
18
  'process.env.run_env': JSON.stringify("docker") // 必须用 JSON.stringify
19
+ }),
20
+ new webpack.IgnorePlugin({
21
+ resourceRegExp: /Debug/,
19
22
  })
20
23
  ];
21
24
  module.exports = {
@@ -16,6 +16,9 @@ const plugins = [
16
16
  }),
17
17
  new webpack.DefinePlugin({
18
18
  'process.env.run_env': JSON.stringify("pkg")
19
+ }),
20
+ new webpack.IgnorePlugin({
21
+ resourceRegExp: /Debug/,
19
22
  })
20
23
  ];
21
24
  module.exports = {