electerm 1.21.48 β†’ 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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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
- 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.
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 node 8.6+
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electerm",
3
- "version": "1.21.48",
3
+ "version": "1.21.57",
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",