electerm 3.10.5 → 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 CHANGED
@@ -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,7 +513,7 @@ 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') {
516
+ } else if (arch.includes('loong')) {
517
517
  await runLinux(`linux-loong64${suffix}`, `linux-loong64${suffix}.tar.gz`)
518
518
  } else {
519
519
  await runLinux(`linux-x64${suffix}`, `linux-x64${suffix}.tar.gz`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electerm",
3
- "version": "3.10.5",
3
+ "version": "3.11.0",
4
4
  "description": "Terminal/ssh/telnet/serialport/sftp client(linux, mac, win)",
5
5
  "main": "app.js",
6
6
  "bin": "npm/electerm",