4runr-os 2.9.37 → 2.9.38

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.
@@ -144,7 +144,7 @@ fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
144
144
 
145
145
  // Line 1: Brand + version + mode + uptime - Bug 3 fix: Use "4Runr." with dot (matches brand logo)
146
146
  // Use npm package version (2.9.24) - matches package.json
147
- const PACKAGE_VERSION: &str = "2.9.37";
147
+ const PACKAGE_VERSION: &str = "2.9.38";
148
148
  let brand_line = Line::from(vec![
149
149
  Span::styled("4Runr.", Style::default().fg(BRAND_PURPLE).add_modifier(Modifier::BOLD)),
150
150
  Span::styled(" AI AGENT OS", Style::default().fg(BRAND_VIOLET)),
@@ -41,9 +41,6 @@ pub fn render(f: &mut Frame, state: &AppState) {
41
41
  height: portal_height,
42
42
  };
43
43
 
44
- // Clear the portal area for clean rendering
45
- f.render_widget(Clear, portal_area);
46
-
47
44
  // Split portal into sections
48
45
  use ratatui::layout::{Constraint, Direction, Layout};
49
46
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "4runr-os",
3
- "version": "2.9.37",
3
+ "version": "2.9.38",
4
4
  "type": "module",
5
- "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.37: Fixed Setup Portal rendering - removed interfering Clear widgets, using Block widgets properly for clean rendering. v2.9.36: Attempted Setup Portal duplication fix. ⚠️ Pre-MVP / Development Phase",
5
+ "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.38: Fixed Setup Portal character corruption - removed redundant Clear widget causing buffer corruption during navigation. ⚠️ Pre-MVP / Development Phase",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "4runr": "dist/index.js",