filefive 1.0.5 → 1.2.0
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 +13 -12
- package/dist/App.js +17 -3
- package/dist/Connection.js +5 -5
- package/dist/Password.js +5 -9
- package/dist/commands/checkVer.js +15 -0
- package/dist/commands/clear.js +1 -5
- package/dist/commands/connect.js +6 -2
- package/dist/commands/copy.js +1 -1
- package/dist/commands/index.js +3 -1
- package/dist/commands/remove.js +4 -6
- package/dist/commands/saveConnection.js +4 -2
- package/dist/index.js +1 -1
- package/dist/keybindings.json +4 -0
- package/dist/public/assets/yandex-browser-manifest.json +1 -1
- package/dist/public/index.js +1 -1
- package/dist/public/index.js.LICENSE.txt +16 -6
- package/dist/types.js +2 -0
- package/package.json +14 -14
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* @license React
|
|
17
|
-
* react-dom.production.
|
|
17
|
+
* react-dom-client.production.js
|
|
18
18
|
*
|
|
19
|
-
* Copyright (c)
|
|
19
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
20
20
|
*
|
|
21
21
|
* This source code is licensed under the MIT license found in the
|
|
22
22
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* @license React
|
|
27
|
-
* react.production.
|
|
27
|
+
* react-dom.production.js
|
|
28
28
|
*
|
|
29
|
-
* Copyright (c)
|
|
29
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
30
30
|
*
|
|
31
31
|
* This source code is licensed under the MIT license found in the
|
|
32
32
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -34,9 +34,19 @@
|
|
|
34
34
|
|
|
35
35
|
/**
|
|
36
36
|
* @license React
|
|
37
|
-
*
|
|
37
|
+
* react.production.js
|
|
38
38
|
*
|
|
39
|
-
* Copyright (c)
|
|
39
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
40
|
+
*
|
|
41
|
+
* This source code is licensed under the MIT license found in the
|
|
42
|
+
* LICENSE file in the root directory of this source tree.
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @license React
|
|
47
|
+
* scheduler.production.js
|
|
48
|
+
*
|
|
49
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
40
50
|
*
|
|
41
51
|
* This source code is licensed under the MIT license found in the
|
|
42
52
|
* LICENSE file in the root directory of this source tree.
|
package/dist/types.js
CHANGED
|
@@ -24,6 +24,7 @@ var QueueType;
|
|
|
24
24
|
})(QueueType || (exports.QueueType = QueueType = {}));
|
|
25
25
|
var QueueEventType;
|
|
26
26
|
(function (QueueEventType) {
|
|
27
|
+
QueueEventType["Start"] = "start";
|
|
27
28
|
QueueEventType["Create"] = "create";
|
|
28
29
|
QueueEventType["Update"] = "update";
|
|
29
30
|
QueueEventType["Ask"] = "ask";
|
|
@@ -43,4 +44,5 @@ var FailureType;
|
|
|
43
44
|
FailureType["MissingDir"] = "missing-dir";
|
|
44
45
|
FailureType["RemoteError"] = "remote-error";
|
|
45
46
|
FailureType["APIError"] = "api-error";
|
|
47
|
+
FailureType["Warning"] = "warning";
|
|
46
48
|
})(FailureType || (exports.FailureType = FailureType = {}));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "filefive",
|
|
3
3
|
"description": "A SFTP/FTP client and dual-panel file manager for macOS and Linux",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"author": "Max Miroshnikov",
|
|
7
7
|
"bin": {
|
|
@@ -34,31 +34,31 @@
|
|
|
34
34
|
"publish": "tsc -p . && npm publish"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"chalk": "^5.
|
|
38
|
-
"commander": "^
|
|
39
|
-
"express": "^4.
|
|
37
|
+
"chalk": "^5.4.1",
|
|
38
|
+
"commander": "^13.1.0",
|
|
39
|
+
"express": "^4.21.2",
|
|
40
40
|
"ftp": "^0.3.10",
|
|
41
41
|
"multer": "^1.4.5-lts.1",
|
|
42
42
|
"open": "^10.1.0",
|
|
43
43
|
"ramda": "^0.30.1",
|
|
44
44
|
"rxjs": "^7.8.1",
|
|
45
|
-
"ssh2": "^1.
|
|
45
|
+
"ssh2": "^1.16.0",
|
|
46
46
|
"trash": "^9.0.0",
|
|
47
|
-
"whatwg-url": "^14.
|
|
47
|
+
"whatwg-url": "^14.1.0",
|
|
48
48
|
"ws": "^8.18.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/express": "^
|
|
51
|
+
"@types/express": "^5.0.0",
|
|
52
52
|
"@types/ftp": "^0.3.36",
|
|
53
53
|
"@types/multer": "^1.4.12",
|
|
54
|
-
"@types/node": "^22.
|
|
55
|
-
"@types/ramda": "^0.30.
|
|
56
|
-
"@types/ssh2": "^1.15.
|
|
57
|
-
"@types/whatwg-url": "^
|
|
58
|
-
"@types/ws": "^8.5.
|
|
59
|
-
"nodemon": "^3.1.
|
|
54
|
+
"@types/node": "^22.12.0",
|
|
55
|
+
"@types/ramda": "^0.30.2",
|
|
56
|
+
"@types/ssh2": "^1.15.4",
|
|
57
|
+
"@types/whatwg-url": "^13.0.0",
|
|
58
|
+
"@types/ws": "^8.5.14",
|
|
59
|
+
"nodemon": "^3.1.9",
|
|
60
60
|
"ts-node": "^10.9.2",
|
|
61
|
-
"typescript": "^5.
|
|
61
|
+
"typescript": "^5.7.3"
|
|
62
62
|
},
|
|
63
63
|
"nodemonConfig": {
|
|
64
64
|
"ignore": [
|