4runr-os 2.6.5 → 2.6.6

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.
@@ -256,6 +256,7 @@ fn render_help_content(f: &mut Frame, area: Rect) {
256
256
 
257
257
  f.render_widget(
258
258
  Paragraph::new(help_lines)
259
+ .style(Style::default().bg(BG_PANEL))
259
260
  .wrap(Wrap { trim: false }),
260
261
  inner
261
262
  );
@@ -276,6 +277,7 @@ fn render_help_content(f: &mut Frame, area: Rect) {
276
277
  f.render_widget(footer_block, chunks[2]);
277
278
  f.render_widget(
278
279
  Paragraph::new(footer_text)
280
+ .style(Style::default().bg(BG_PANEL))
279
281
  .alignment(Alignment::Center),
280
282
  footer_inner
281
283
  );
@@ -120,7 +120,7 @@ fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
120
120
 
121
121
  // Line 1: Brand + version + uptime - Bug 3 fix: Use "4Runr." with dot (matches brand logo)
122
122
  // Use npm package version (2.3.5) - matches package.json
123
- const PACKAGE_VERSION: &str = "2.6.5";
123
+ const PACKAGE_VERSION: &str = "2.6.6";
124
124
  let brand_line = Line::from(vec![
125
125
  Span::styled("4Runr.", Style::default().fg(BRAND_PURPLE).add_modifier(Modifier::BOLD)),
126
126
  Span::styled(" AI AGENT OS", Style::default().fg(BRAND_VIOLET)),
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "4runr-os",
3
- "version": "2.6.5",
3
+ "version": "2.6.6",
4
4
  "type": "module",
5
- "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.6.5: MAJOR UI overhaul - Completely redesigned help popup (clean, readable, single-column layout). Fixed agent detail popup rendering bugs (proper dimming, no overlap). Enhanced visual hierarchy with better spacing and alignment. Built with Rust + Ratatui. ⚠️ Pre-MVP / Development Phase",
5
+ "description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.6.6: CRITICAL FIX - Help popup transparency fixed (solid background). Completely redesigned help popup (clean, readable, single-column layout). Fixed agent detail popup rendering bugs (proper dimming, no overlap). Enhanced visual hierarchy with better spacing. Built with Rust + Ratatui. ⚠️ Pre-MVP / Development Phase",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "4runr": "dist/index.js",