electerm 1.16.28 β 1.19.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 +16 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,23 +20,24 @@ Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/
|
|
|
20
20
|
|
|
21
21
|
## Features
|
|
22
22
|
|
|
23
|
-
-
|
|
24
|
-
- Global hotkey to toggle window visibility (
|
|
23
|
+
- Works as a terminal/file manager or ssh/sftp client(similar to xshell)
|
|
24
|
+
- Global hotkey to toggle window visibility (similar to guake, default is `ctrl + 2`)
|
|
25
25
|
- Multi platform(linux, mac, win)
|
|
26
|
-
- πΊπΈ π¨π³ π§π· π·πΊ πͺπΈ π«π· πΉπ· ππ° π―π΅
|
|
27
|
-
- Double click to directly edit
|
|
28
|
-
- Edit local
|
|
29
|
-
- Auth with
|
|
26
|
+
- πΊπΈ π¨π³ π§π· π·πΊ πͺπΈ π«π· πΉπ· ππ° π―π΅ πΈπ¦ Multi-language support([electerm-locales](https://github.com/electerm/electerm-locales), contributions/fixes welcome)
|
|
27
|
+
- Double click to directly edit (small) remote files.
|
|
28
|
+
- Edit (small) local files with built-in editor.
|
|
29
|
+
- Auth with publicKey + password.
|
|
30
30
|
- Zmodem(rz, sz).
|
|
31
|
+
- [Trzsz](https://github.com/trzsz/trzsz)(trz/tsz), similar to rz/sz, and compatible with tmux.
|
|
31
32
|
- Transparent window(Mac, win).
|
|
32
33
|
- Terminal background image.
|
|
33
34
|
- Global/session proxy.
|
|
34
35
|
- Quick commands
|
|
35
36
|
- Sync bookmarks/themes/quick commands to github/gitee secret gist
|
|
36
37
|
- ~~Serial Port support~~(removed after version 1.10.14)
|
|
37
|
-
- Quick input to one or all
|
|
38
|
+
- Quick input to one or all terminals.
|
|
38
39
|
- Command line usage: check [wiki](https://github.com/electerm/electerm/wiki/Command-line-usage)
|
|
39
|
-
- Zip
|
|
40
|
+
- Zip/transfer/auto-unzip folders.
|
|
40
41
|
|
|
41
42
|
## Download/install
|
|
42
43
|
|
|
@@ -62,17 +63,17 @@ scoop install dorado/electerm
|
|
|
62
63
|
```bash
|
|
63
64
|
npm i -g electerm
|
|
64
65
|
|
|
65
|
-
# after
|
|
66
|
-
# for
|
|
66
|
+
# after installation, it will immediately open for windows and linux,
|
|
67
|
+
# for macOS, it will open the drag to install panel
|
|
67
68
|
|
|
68
69
|
```
|
|
69
70
|
|
|
70
71
|
## Upgrade
|
|
71
72
|
|
|
72
|
-
- Auto upgrade: When new version released, you will get upgrade notification after you start electerm again
|
|
73
|
+
- Auto upgrade: When a new version is released, you will get an upgrade notification after you start electerm again. You can then click the upgrade button to upgrade.
|
|
73
74
|
- Download: Just download the latest edition, reinstall.
|
|
74
75
|
- Npm: If you install from npm, just run `npm i -g electerm` again.
|
|
75
|
-
- If use Snap or some other distribution
|
|
76
|
+
- If use Snap or some other distribution system, these systems may provide upgrades.
|
|
76
77
|
|
|
77
78
|
## Known issues
|
|
78
79
|
|
|
@@ -84,13 +85,13 @@ npm i -g electerm
|
|
|
84
85
|
|
|
85
86
|
## Support
|
|
86
87
|
|
|
87
|
-
Without
|
|
88
|
+
Without user feedback/suggestions/pull requests/language files, this project would not get this far.I would love to hear from you, please tell me what you think, [submit an issue](https://github.com/electerm/electerm/issues), [send me an email](mailto:zxdong@gmail.com), [create/fix language files](https://github.com/electerm/electerm-locales) or create pull requests, all are welcome.
|
|
88
89
|
|
|
89
90
|
## Dev
|
|
90
91
|
|
|
91
92
|
```bash
|
|
92
93
|
# tested in ubuntu16.04+/mac os 10.13+ only
|
|
93
|
-
#
|
|
94
|
+
# needs nodejs/npm, suggest using nvm to install nodejs/npm
|
|
94
95
|
# https://github.com/creationix/nvm
|
|
95
96
|
# with node 8.6+
|
|
96
97
|
|
|
@@ -98,7 +99,7 @@ git clone git@github.com:electerm/electerm.git
|
|
|
98
99
|
cd electerm
|
|
99
100
|
npm i
|
|
100
101
|
|
|
101
|
-
# start webpack dev server, requires 5570
|
|
102
|
+
# start webpack dev server, requires port 5570
|
|
102
103
|
npm start
|
|
103
104
|
|
|
104
105
|
# in a separate terminal session run app
|
package/package.json
CHANGED