4runr-os 2.9.35 → 2.9.37

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.37";
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)),
@@ -174,12 +174,15 @@ fn render_options_list(f: &mut Frame, area: Rect, state: &AppState) {
174
174
  let mut list_state = ListState::default();
175
175
  list_state.select(Some(selected_index));
176
176
 
177
+ // Use Block to properly contain and clear the area
178
+ let block = Block::default()
179
+ .borders(Borders::ALL)
180
+ .title(" Gateway Options ")
181
+ .border_style(Style::default().fg(CYBER_CYAN))
182
+ .style(Style::default().bg(BG_PANEL));
183
+
177
184
  let list = List::new(items)
178
- .block(Block::default()
179
- .borders(Borders::ALL)
180
- .title(" Gateway Options ")
181
- .border_style(Style::default().fg(CYBER_CYAN))
182
- .style(Style::default().bg(BG_PANEL)))
185
+ .block(block)
183
186
  .highlight_style(Style::default().fg(CYBER_CYAN).bold().bg(BG_PANEL));
184
187
 
185
188
  f.render_stateful_widget(list, area, &mut list_state);
@@ -271,6 +274,7 @@ fn render_option_details(f: &mut Frame, area: Rect, state: &AppState) {
271
274
  ),
272
275
  };
273
276
 
277
+ // Use Block to properly contain and clear the area
274
278
  let block = Block::default()
275
279
  .title(title)
276
280
  .borders(Borders::ALL)
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "4runr-os",
3
- "version": "2.9.35",
3
+ "version": "2.9.37",
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.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",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "4runr": "dist/index.js",