4runr-os 2.9.35 → 2.9.36

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.35";
147
+ const PACKAGE_VERSION: &str = "2.9.36";
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)),
@@ -84,6 +84,9 @@ pub fn render(f: &mut Frame, state: &AppState) {
84
84
  }
85
85
 
86
86
  fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
87
+ // Clear the area first to prevent duplication
88
+ f.render_widget(Clear, area);
89
+
87
90
  let title = if state.setup_portal.error.is_some() {
88
91
  " ⚙ Gateway Setup Portal - Error "
89
92
  } else if state.setup_portal.detecting {
@@ -108,6 +111,9 @@ fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
108
111
  }
109
112
 
110
113
  fn render_description(f: &mut Frame, area: Rect) {
114
+ // Clear the area first to prevent duplication
115
+ f.render_widget(Clear, area);
116
+
111
117
  let block = Block::default()
112
118
  .borders(Borders::LEFT | Borders::RIGHT)
113
119
  .style(Style::default().bg(BG_PANEL));
@@ -137,6 +143,9 @@ fn render_content(f: &mut Frame, area: Rect, state: &AppState) {
137
143
  }
138
144
 
139
145
  fn render_options_list(f: &mut Frame, area: Rect, state: &AppState) {
146
+ // Clear the area first to prevent duplication
147
+ f.render_widget(Clear, area);
148
+
140
149
  let options = vec![
141
150
  ("Local Bundle", GatewayOption::LocalBundle),
142
151
  ("4Runr Server", GatewayOption::CloudServer),
@@ -186,6 +195,9 @@ fn render_options_list(f: &mut Frame, area: Rect, state: &AppState) {
186
195
  }
187
196
 
188
197
  fn render_option_details(f: &mut Frame, area: Rect, state: &AppState) {
198
+ // Clear the area first to prevent duplication
199
+ f.render_widget(Clear, area);
200
+
189
201
  let selected_option = &state.setup_portal.selected_option;
190
202
  let detection_result = &state.setup_portal.detection_result;
191
203
 
@@ -312,6 +324,9 @@ fn render_error_box(f: &mut Frame, area: Rect, state: &AppState) {
312
324
  }
313
325
 
314
326
  fn render_actions(f: &mut Frame, area: Rect, state: &AppState) {
327
+ // Clear the area first to prevent duplication
328
+ f.render_widget(Clear, area);
329
+
315
330
  let block = Block::default()
316
331
  .borders(Borders::ALL)
317
332
  .border_style(Style::default().fg(TEXT_DIM))
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "4runr-os",
3
- "version": "2.9.35",
3
+ "version": "2.9.36",
4
4
  "type": "module",
5
- "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.35: Fixed UI flashing during navigation - terminal now clears only on screen switches. Gateway bundle auto-builds during publish - dist folder included for ready-to-run Gateway. v2.9.34: Gateway bundle included in npm package. ⚠️ Pre-MVP / Development Phase",
5
+ "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.9.36: Fixed Setup Portal duplication issue - added Clear widgets to all render functions to prevent text overlap during navigation. v2.9.35: Fixed UI flashing during navigation. ⚠️ Pre-MVP / Development Phase",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "4runr": "dist/index.js",