filefive 1.6.0 → 1.7.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 +7 -7
- package/dist/commands/settings.js +1 -1
- package/dist/index.js +1 -1
- package/dist/keybindings.json +20 -4
- package/dist/public/9f7265fc2b70bf1167a9.woff2 +0 -0
- package/dist/public/assets/manifest.webmanifest +1 -1
- package/dist/public/index.js +1 -1
- package/dist/queues/Queue.js +20 -1
- package/package.json +1 -1
- package/dist/public/76e5e3fe6b35d5e6a980.woff2 +0 -0
package/README.md
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
# FileFive: SFTP/FTP/AWS S3 GUI client and dual-panel file manager for macOS and Linux
|
|
7
|
-
FileFive is a free open-source SFTP/FTP/Amazon S3 client and file manager with intuitive and modern dual-panel interface, available on Mac, and Linux.
|
|
7
|
+
FileFive is a free open-source SFTP/FTP/Amazon S3 client and file manager with intuitive and modern dual-panel user interface, available on Mac, and Linux.
|
|
8
8
|
|
|
9
|
-
It
|
|
9
|
+
It has a unique set of features and may be a free alternative to `FileZilla Pro`, `Transmit`, `ForkLift` and `Cyberduck`.
|
|
10
10
|
|
|
11
|
-
FileFive
|
|
11
|
+
FileFive is also a visual, no-code and easy-to-use backup and CI/CD tool for developers and system administrators with user-friendly UI interface, offering similar functionality to `rsync`, `rclone` and `sshfs`.
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
14
14
|
<img src="https://github.com/miroshnikov/filefive/blob/main/docs/screenshots/screenshot-1.png" alt="FileFive" />
|
|
@@ -44,14 +44,14 @@ Options:
|
|
|
44
44
|
|
|
45
45
|
## Features
|
|
46
46
|
- **Cross-platform**, runs on MacOS, Linux and any *nix with Node.js
|
|
47
|
-
-
|
|
47
|
+
- **Upload, download, and manage files** on cloud servers using
|
|
48
48
|
- SSH File Transfer Protocol (**SFTP**)
|
|
49
49
|
- File Transfer Protocol (**FTP**)
|
|
50
50
|
- Amazon Simple Storage Service (**Amazon S3**)
|
|
51
|
-
-
|
|
52
|
-
- **Search/filter** files using wildcards
|
|
51
|
+
- Powerful, intuitive and minimalistic UI, that **mimics the look and feel of VSCode Explorer view**, including VS Code file icon themes
|
|
52
|
+
- **Search/filter** files using wildcards, **JavaScript Regular Expressions** and Git status
|
|
53
53
|
- **Synchronized browsing**
|
|
54
|
-
-
|
|
54
|
+
- **Upload/download/copy files and folders preserving relative paths**, similar to `cp --parents`, `rsync -R` or MacOS `ditto` commands. Any necessary parent directories in the destination will be created to replicate the path of the source files. It allows **synchronization files in nested folders in one click**
|
|
55
55
|
- **Remote file editing**
|
|
56
56
|
- **Files' Git statuses** (uses your machine's Git installation)
|
|
57
57
|
- Connections/servers are **plain files stored on your filesystem**, no need to export/import
|
|
@@ -27,7 +27,7 @@ async function default_1(path) {
|
|
|
27
27
|
keybindings: keybindings_json_1.default,
|
|
28
28
|
mode: config?.mode ?? 'system',
|
|
29
29
|
theme: config?.theme ?? 'black',
|
|
30
|
-
fileTheme: config?.fileTheme
|
|
30
|
+
fileTheme: typeof config?.fileTheme === 'string' ? config.fileTheme : 'material',
|
|
31
31
|
timeFmt: config?.timeFmt ?? 'yyyy-MM-dd HH:mm',
|
|
32
32
|
sizeFmt: config?.sizeFmt ?? '0.0 b',
|
|
33
33
|
local: (0, connect_1.explorerSettings)(Local_2.ATTRIBUTES, config?.local),
|
package/dist/index.js
CHANGED
|
@@ -20,7 +20,7 @@ const package_json_1 = __importDefault(require("../package.json"));
|
|
|
20
20
|
const options_1 = __importDefault(require("./options"));
|
|
21
21
|
commander_1.program
|
|
22
22
|
.name('F5')
|
|
23
|
-
.description('SFTP/FTP client, dual-panel file manager in the browser')
|
|
23
|
+
.description('SFTP/FTP/S3 client, dual-panel file manager in the browser')
|
|
24
24
|
.version(package_json_1.default.version)
|
|
25
25
|
.option('-p, --port <number>', 'port number', '3113')
|
|
26
26
|
.option('--log', 'prints the log information');
|
package/dist/keybindings.json
CHANGED
|
@@ -40,21 +40,37 @@
|
|
|
40
40
|
"command": "copy-name"
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
"key": "
|
|
44
|
-
"command": "
|
|
43
|
+
"key": "shift+arrowright",
|
|
44
|
+
"command": "upload"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"key": "alt+arrowright",
|
|
48
|
+
"command": "mirror-local"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"key": "shift+arrowleft",
|
|
52
|
+
"command": "download"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"key": "alt+arrowleft",
|
|
56
|
+
"command": "mirror-remote"
|
|
45
57
|
},
|
|
46
58
|
{
|
|
47
59
|
"key": "ctrl+f",
|
|
48
60
|
"command": "show-filter"
|
|
49
61
|
},
|
|
50
62
|
{
|
|
51
|
-
"key": "
|
|
63
|
+
"key": "meta+bracketleft",
|
|
52
64
|
"command": "go-back"
|
|
53
65
|
},
|
|
54
66
|
{
|
|
55
|
-
"key": "
|
|
67
|
+
"key": "meta+bracketright",
|
|
56
68
|
"command": "go-forward"
|
|
57
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"key": "meta+arrowup",
|
|
72
|
+
"command": "go-up"
|
|
73
|
+
},
|
|
58
74
|
{
|
|
59
75
|
"key": "meta+y",
|
|
60
76
|
"command": "sync-browsing"
|
|
Binary file
|