electerm 1.20.4 → 1.21.9
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 +12 -4
- package/package.json +2 -6
package/README.md
CHANGED
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
[](https://github.com/electerm/electerm/blob/master/LICENSE)
|
|
12
12
|
[](https://standardjs.com)
|
|
13
13
|
[](https://snapcraft.io/electerm)
|
|
14
|
+
[](https://www.microsoft.com/store/apps/9NCN7272GTFF)
|
|
15
|
+
|
|
14
16
|
|
|
15
17
|
Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/[subx](https://github.com/tylerlong/subx) and other libs.
|
|
16
18
|
|
|
@@ -27,17 +29,16 @@ Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/
|
|
|
27
29
|
- Double click to directly edit (small) remote files.
|
|
28
30
|
- Edit (small) local files with built-in editor.
|
|
29
31
|
- Auth with publicKey + password.
|
|
30
|
-
- Zmodem(rz, sz).
|
|
31
|
-
- [Trzsz](https://github.com/trzsz/trzsz)(trz/tsz), similar to rz/sz, and compatible with tmux.
|
|
32
|
+
- Support Zmodem(rz, sz).
|
|
33
|
+
- Support [Trzsz](https://github.com/trzsz/trzsz)(trz/tsz), similar to rz/sz, and compatible with tmux.
|
|
32
34
|
- Transparent window(Mac, win).
|
|
33
35
|
- Terminal background image.
|
|
34
36
|
- Global/session proxy.
|
|
35
37
|
- Quick commands
|
|
36
38
|
- Sync bookmarks/themes/quick commands to github/gitee secret gist
|
|
37
|
-
-
|
|
39
|
+
- Support serial Port(version > 1.21.8)
|
|
38
40
|
- Quick input to one or all terminals.
|
|
39
41
|
- Command line usage: check [wiki](https://github.com/electerm/electerm/wiki/Command-line-usage)
|
|
40
|
-
- Zip/transfer/auto-unzip folders.
|
|
41
42
|
|
|
42
43
|
## Download/install
|
|
43
44
|
|
|
@@ -83,6 +84,10 @@ npm i -g electerm
|
|
|
83
84
|
|
|
84
85
|
[https://github.com/electerm/electerm/wiki/Troubleshoot](https://github.com/electerm/electerm/wiki/Troubleshoot)
|
|
85
86
|
|
|
87
|
+
## Discussion
|
|
88
|
+
|
|
89
|
+
[Discussion board](https://github.com/electerm/electerm/discussions)
|
|
90
|
+
|
|
86
91
|
## Support
|
|
87
92
|
|
|
88
93
|
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.
|
|
@@ -117,6 +122,9 @@ npm run fix
|
|
|
117
122
|
```bash
|
|
118
123
|
npm run pre-test
|
|
119
124
|
cp .sample.env .env
|
|
125
|
+
|
|
126
|
+
# install playwright
|
|
127
|
+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright --no-save
|
|
120
128
|
# then edit .env, fill your test host/username/password
|
|
121
129
|
npm run test
|
|
122
130
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electerm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.9",
|
|
4
4
|
"description": "Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"bin": "npm/electerm",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://electerm.github.io/electerm",
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">=16.0.0"
|
|
30
30
|
},
|
|
31
31
|
"preferGlobal": true,
|
|
32
32
|
"dependencies": {
|
|
@@ -45,10 +45,6 @@
|
|
|
45
45
|
"/app/assets/"
|
|
46
46
|
],
|
|
47
47
|
"globals": [
|
|
48
|
-
"describe",
|
|
49
|
-
"beforeEach",
|
|
50
|
-
"afterEach",
|
|
51
|
-
"it",
|
|
52
48
|
"log",
|
|
53
49
|
"MouseEvent",
|
|
54
50
|
"WebSocket",
|