ironcode-ai 1.20.6 → 1.20.7
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 +24 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
29
29
|
### Key Features
|
|
30
30
|
|
|
31
31
|
- ⌨️ **CLI-First** — Powerful terminal UI optimized for keyboard-driven workflows
|
|
32
|
+
- 📱 **Narrow Terminal Support** — Responsive TUI adapts to small screens (SSH via Termius, tmux panes, 60-col terminals)
|
|
32
33
|
- 🔀 **Multi-Account Round-Robin** — Connect multiple API keys per provider for automatic load balancing
|
|
33
34
|
- 🎯 **Git Source Control** — Stage, commit, diff, push without leaving the TUI
|
|
34
35
|
- 🔍 **Code Changes Panel** — Diff viewer with inline comments and hunk revert
|
|
@@ -383,6 +384,29 @@ Areas to help with: performance optimizations, bug fixes, documentation, new plu
|
|
|
383
384
|
|
|
384
385
|
## Changelog
|
|
385
386
|
|
|
387
|
+
<details>
|
|
388
|
+
<summary><strong>v1.20.5</strong> — Narrow Terminal / Mobile SSH Support</summary>
|
|
389
|
+
|
|
390
|
+
Responsive TUI that adapts when terminal width drops below 60 columns — usable over SSH from mobile clients (Termius, Blink Shell, JuiceSSH).
|
|
391
|
+
|
|
392
|
+
**Home screen**
|
|
393
|
+
- Logo hidden on narrow terminals to save vertical space
|
|
394
|
+
- CPU/Memory stats bar and tips hidden — only prompt is shown
|
|
395
|
+
|
|
396
|
+
**Session header**
|
|
397
|
+
- CPU/Memory bars and version number hidden — only session title and token context/cost shown
|
|
398
|
+
|
|
399
|
+
**Session footer**
|
|
400
|
+
- Directory path truncated to last folder name + branch (e.g. `ironcode:feature/my-branch ~4`)
|
|
401
|
+
- `/status` hint hidden
|
|
402
|
+
|
|
403
|
+
**Prompt area**
|
|
404
|
+
- Keyboard hint bar (`variants`, `agents`, `commands`, `changes`) hidden
|
|
405
|
+
- `esc interrupt` text fixed to never wrap (`wrapMode="none"`)
|
|
406
|
+
- Provider name hidden from model info row — only agent + model name + variant shown
|
|
407
|
+
|
|
408
|
+
</details>
|
|
409
|
+
|
|
386
410
|
<details>
|
|
387
411
|
<summary><strong>v1.18.0</strong> — Chat Integrations Upgrade</summary>
|
|
388
412
|
|
package/package.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.20.
|
|
9
|
+
"version": "1.20.7",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-baseline": "1.20.
|
|
13
|
-
"ironcode-linux-x64-modern": "1.20.
|
|
14
|
-
"ironcode-linux-x64-baseline-musl": "1.20.
|
|
15
|
-
"ironcode-windows-x64-modern": "1.20.
|
|
16
|
-
"ironcode-darwin-arm64": "1.20.
|
|
12
|
+
"ironcode-linux-x64-baseline": "1.20.7",
|
|
13
|
+
"ironcode-linux-x64-modern": "1.20.7",
|
|
14
|
+
"ironcode-linux-x64-baseline-musl": "1.20.7",
|
|
15
|
+
"ironcode-windows-x64-modern": "1.20.7",
|
|
16
|
+
"ironcode-darwin-arm64": "1.20.7"
|
|
17
17
|
}
|
|
18
18
|
}
|