ironcode-ai 1.12.2 → 1.12.3
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 +25 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,6 +24,28 @@
|
|
|
24
24
|
|
|
25
25
|
## 🎉 What's New
|
|
26
26
|
|
|
27
|
+
### Feb 18, 2026 - Editor & Terminal Improvements
|
|
28
|
+
|
|
29
|
+
**External editor with auto-install + redesigned built-in terminal:**
|
|
30
|
+
|
|
31
|
+
- **`/editor` - External Editor Integration**
|
|
32
|
+
- Opens `$VISUAL` or `$EDITOR` or `nvim` by default
|
|
33
|
+
- Auto-detects if editor is installed via `which`
|
|
34
|
+
- Shows install popup if Neovim not found (cross-platform: brew, apt, dnf, pacman, apk, winget, choco, scoop)
|
|
35
|
+
- One-click install button directly from the popup
|
|
36
|
+
|
|
37
|
+
- **`/terminal` - Redesigned Built-in Terminal**
|
|
38
|
+
- Clean terminal-like UI with no header/footer chrome
|
|
39
|
+
- Prompt at bottom with `~/path $ ` prefix (like real shell)
|
|
40
|
+
- Block cursor with left/right movement
|
|
41
|
+
- Streaming output (stdout/stderr appear in real-time)
|
|
42
|
+
- Syntax highlighting for file output (`cat file.ts`, `head file.py`, etc.)
|
|
43
|
+
- Fish-style history autosuggest (dim text, accept with Right/End)
|
|
44
|
+
- Tab completion for file/directory paths (single match auto-completes, multiple shows common prefix + options)
|
|
45
|
+
- Shell keybindings: Ctrl+A/E (home/end), Ctrl+U/K (clear line), Ctrl+W (delete word), Ctrl+L (clear screen)
|
|
46
|
+
- `cd` with directory validation, `clear`, `exit` commands
|
|
47
|
+
- Color-coded output: commands (primary+bold), errors (red), info (dim)
|
|
48
|
+
|
|
27
49
|
### Feb 15, 2026 - Code Changes Panel
|
|
28
50
|
|
|
29
51
|
**Code changes viewer with inline comments and hunk revert:**
|
|
@@ -136,6 +158,8 @@ IronCode is a **high-performance CLI fork** of [OpenCode](https://github.com/ano
|
|
|
136
158
|
- ⌨️ **CLI-First**: Powerful terminal UI optimized for command-line workflows
|
|
137
159
|
- 🎯 **Git Source Control**: Full Git integration - stage, commit, diff, push without leaving TUI
|
|
138
160
|
- 🔍 **Code Changes Panel**: Diff viewer with inline comments, hunk revert, and live change counts
|
|
161
|
+
- 📝 **External Editor**: Opens `$EDITOR`/nvim with auto-install popup if not found
|
|
162
|
+
- 💻 **Built-in Terminal**: Real terminal feel with syntax highlighting, fish-style autosuggest, and tab completion
|
|
139
163
|
- 🏠 **100% Local**: No cloud services, works completely offline
|
|
140
164
|
- 🔒 **Privacy First**: Your code never leaves your machine
|
|
141
165
|
- 🎯 **Lightweight**: Stripped down to core functionality - CLI only
|
|
@@ -752,6 +776,7 @@ Contributions are welcome! Please read [CONTRIBUTING.md](./CONTRIBUTING.md) befo
|
|
|
752
776
|
|
|
753
777
|
**Recent Contributions:**
|
|
754
778
|
|
|
779
|
+
- ✅ **Editor & Terminal** (External editor with auto-install + redesigned terminal with autosuggest - Feb 2026)
|
|
755
780
|
- ✅ **Code Changes Panel** (Diff viewer with hunk revert & inline comments - Feb 2026)
|
|
756
781
|
- ✅ **Git Source Control UI** (Full TUI integration with libgit2 - Feb 2026)
|
|
757
782
|
- ✅ **Streaming read optimization** (1.2-1.6x faster, 99.7% memory savings - Feb 2026)
|
package/package.json
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.12.
|
|
9
|
+
"version": "1.12.3",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-modern": "1.12.
|
|
13
|
-
"ironcode-windows-x64-modern": "1.12.
|
|
14
|
-
"ironcode-darwin-arm64": "1.12.
|
|
12
|
+
"ironcode-linux-x64-modern": "1.12.3",
|
|
13
|
+
"ironcode-windows-x64-modern": "1.12.3",
|
|
14
|
+
"ironcode-darwin-arm64": "1.12.3"
|
|
15
15
|
}
|
|
16
16
|
}
|