electerm 3.9.15 → 3.10.5
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 +11 -1
- package/npm/install.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,16 @@ For experienced developers, you may try the web app version running in browser(i
|
|
|
30
30
|
|
|
31
31
|
Online demo: [https://electerm-demo.html5beta.com](https://electerm-demo.html5beta.com)
|
|
32
32
|
|
|
33
|
+
## Atlas Cloud
|
|
34
|
+
|
|
35
|
+
<div align="center">
|
|
36
|
+
<a href="https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=electerm">
|
|
37
|
+
<img src="https://github.com/electerm/electerm-resource/blob/master/static/images/atlas-cloud.png?raw=true" alt="Atlas Cloud" width="200" />
|
|
38
|
+
</a>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
[Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=electerm) provides OpenAI-compatible AI APIs and model access for AI-powered workflows in electerm.
|
|
42
|
+
|
|
33
43
|
<div align="center">
|
|
34
44
|
<img src="https://github.com/electerm/electerm-resource/raw/master/static/images/electerm.gif", alt="" />
|
|
35
45
|
</div>
|
|
@@ -37,7 +47,7 @@ Online demo: [https://electerm-demo.html5beta.com](https://electerm-demo.html5be
|
|
|
37
47
|
## Features
|
|
38
48
|
|
|
39
49
|
- Works as a terminal/file manager or ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client
|
|
40
|
-
- Support Window 7+(X64/ARM64), Mac OS 10.15+(x64/arm64), Linux(x64/arm64), even old Linux with glibc 2.17+ like UOS/Kylin/Ubuntu 18.04 etc
|
|
50
|
+
- Support Window 7+(X64/ARM64), Mac OS 10.15+(x64/arm64), Linux(x64/arm64/Loong64), even old Linux with glibc 2.17+ like UOS/Kylin/Ubuntu 18.04 etc
|
|
41
51
|
- Global hotkey to toggle window visibility (similar to guake, default is `ctrl + 2`)
|
|
42
52
|
- Multi platform(linux, mac, win)
|
|
43
53
|
- 🇺🇸 🇨🇳 🇧🇷 🇷🇺 🇪🇸 🇫🇷 🇹🇷 🇭🇰 🇯🇵 🇸🇦 🇩🇪 🇰🇷 🇮🇩 🇵🇱 Multi-language support([electerm-locales](https://github.com/electerm/electerm-locales), contributions/fixes welcome)
|
package/npm/install.js
CHANGED
|
@@ -513,6 +513,8 @@ async function main () {
|
|
|
513
513
|
await runLinux(`linux-arm64${suffix}`, `linux-arm64${suffix}.tar.gz`)
|
|
514
514
|
} else if (arch === 'arm') {
|
|
515
515
|
await runLinux(`linux-armv7l${suffix}`, `linux-armv7l${suffix}.tar.gz`)
|
|
516
|
+
} else if (arch === 'loong64') {
|
|
517
|
+
await runLinux(`linux-loong64${suffix}`, `linux-loong64${suffix}.tar.gz`)
|
|
516
518
|
} else {
|
|
517
519
|
await runLinux(`linux-x64${suffix}`, `linux-x64${suffix}.tar.gz`)
|
|
518
520
|
}
|