electerm 1.21.34 β 1.21.57
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 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
</a>
|
|
5
5
|
</h1>
|
|
6
6
|
|
|
7
|
-
# electerm
|
|
7
|
+
# electerm [](https://twitter.com/intent/tweet?text=Open%20sourced%20terminal%2Fssh%2Fsftp%20client(linux%2C%20mac%2C%20win)&url=https%3A%2F%2Fgithub.com%2Felecterm%2Felecterm&hashtags=electerm,ssh,terminal,sftp)
|
|
8
8
|
|
|
9
9
|
[](https://github.com/electerm/electerm/releases)
|
|
10
10
|
[](https://github.com/electerm/electerm/actions)
|
|
@@ -25,7 +25,7 @@ Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/
|
|
|
25
25
|
- Works as a terminal/file manager or ssh/sftp client(similar to xshell)
|
|
26
26
|
- Global hotkey to toggle window visibility (similar to guake, default is `ctrl + 2`)
|
|
27
27
|
- Multi platform(linux, mac, win)
|
|
28
|
-
- πΊπΈ π¨π³ π§π· π·πΊ πͺπΈ π«π· πΉπ· ππ° π―π΅ πΈπ¦ Multi-language support([electerm-locales](https://github.com/electerm/electerm-locales), contributions/fixes welcome)
|
|
28
|
+
- πΊπΈ π¨π³ π§π· π·πΊ πͺπΈ π«π· πΉπ· ππ° π―π΅ πΈπ¦ π©πͺ Multi-language support([electerm-locales](https://github.com/electerm/electerm-locales), contributions/fixes welcome)
|
|
29
29
|
- Double click to directly edit (small) remote files.
|
|
30
30
|
- Edit (small) local files with built-in editor.
|
|
31
31
|
- Auth with publicKey + password.
|
|
@@ -90,7 +90,7 @@ npm i -g electerm
|
|
|
90
90
|
|
|
91
91
|
## Support
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
Would love to hear from you, please tell me what you think, [submit an issue](https://github.com/electerm/electerm/issues), [Start a new discussion](https://github.com/electerm/electerm/discussions/new), [create/fix language files](https://github.com/electerm/electerm-locales) or create pull requests, all welcome.
|
|
94
94
|
|
|
95
95
|
## Dev
|
|
96
96
|
|
|
@@ -98,7 +98,7 @@ Without user feedback/suggestions/pull requests/language files, this project wou
|
|
|
98
98
|
# tested in ubuntu16.04+/mac os 10.13+ only
|
|
99
99
|
# needs nodejs/npm, suggest using nvm to install nodejs/npm
|
|
100
100
|
# https://github.com/creationix/nvm
|
|
101
|
-
# with
|
|
101
|
+
# with nodejs 16+
|
|
102
102
|
|
|
103
103
|
git clone git@github.com:electerm/electerm.git
|
|
104
104
|
cd electerm
|
|
@@ -117,6 +117,12 @@ npm run lint
|
|
|
117
117
|
npm run fix
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
+
If you encounter some errors when running ```npm run app``` like ```libatk1.0.so.0: cannot open shared object file``` or ```libgtk-3.so.0: cannot open shared object file``` you need to install some required libraries (example for Ubuntu in WSL 2) :
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
sudo apt install libatk1.0-0 libatk1.0-dev libatk-bridge2.0-0 libatk-bridge2.0-dev libgtk-3-0 libgtk-3-dev
|
|
124
|
+
```
|
|
125
|
+
|
|
120
126
|
## Test
|
|
121
127
|
|
|
122
128
|
```bash
|
|
@@ -141,12 +147,12 @@ npm run test
|
|
|
141
147
|
npm i
|
|
142
148
|
npm run pre-test
|
|
143
149
|
npm run release -l
|
|
144
|
-
#
|
|
150
|
+
# check dist/ folder
|
|
145
151
|
```
|
|
146
152
|
|
|
147
153
|
## Use
|
|
148
154
|
|
|
149
|
-
- [Set autorun when login to os](https://github.com/electerm/electerm/wiki/
|
|
155
|
+
- [Set autorun when login to os](https://github.com/electerm/electerm/wiki/Autorun-electerm-when-login-to-os)
|
|
150
156
|
|
|
151
157
|
## Change log
|
|
152
158
|
|
package/package.json
CHANGED