electerm 3.10.0 → 3.11.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 +2 -2
- package/npm/install.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Online demo: [https://electerm-demo.html5beta.com](https://electerm-demo.html5be
|
|
|
34
34
|
|
|
35
35
|
<div align="center">
|
|
36
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"
|
|
37
|
+
<img src="https://github.com/electerm/electerm-resource/blob/master/static/images/atlas-cloud.png?raw=true" alt="Atlas Cloud" width="200" />
|
|
38
38
|
</a>
|
|
39
39
|
</div>
|
|
40
40
|
|
|
@@ -63,7 +63,7 @@ Online demo: [https://electerm-demo.html5beta.com](https://electerm-demo.html5be
|
|
|
63
63
|
- UI/terminal theme
|
|
64
64
|
- Sync bookmarks/themes/quick commands to github/gitee secret gist/webdav/custom server/electerm cloud
|
|
65
65
|
- Quick input to one or all terminals.
|
|
66
|
-
- AI assistant integration (supporting [DeepSeek](https://www.deepseek.com), OpenAI, and other AI APIs) to help with command suggestions, script writing, and explaining selected terminal content
|
|
66
|
+
- AI assistant integration (supporting [DeepSeek](https://www.deepseek.com), OpenAI, and any other AI APIs) to help with command suggestions, script writing, and explaining selected terminal content, create bookmarks
|
|
67
67
|
- MCP (Model Context Protocol) widget for AI assistants and external tools integration - see [MCP Widget Usage Guide](https://github.com/electerm/electerm/wiki/MCP-Widget-Usage-Guide)
|
|
68
68
|
- Deep link support: Open connections with URLs like `telnet://192.168.2.31:34554` or `ssh://user@host:22` - see [Deep link support wiki](https://github.com/electerm/electerm/wiki/Deep-link-support)
|
|
69
69
|
- Command line usage: check [wiki](https://github.com/electerm/electerm/wiki/Command-line-usage)
|
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.includes('loong')) {
|
|
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
|
}
|