4runr-os 2.8.7 → 2.8.8
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/mk3-tui/src/app.rs
CHANGED
|
@@ -99,11 +99,6 @@ pub struct DetectionResult {
|
|
|
99
99
|
pub error: Option<String>,
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
#[derive(Debug, Clone)]
|
|
103
|
-
pub struct SetupPortalState {
|
|
104
|
-
pub selected_gateway_type: GatewayType,
|
|
105
|
-
}
|
|
106
|
-
|
|
107
102
|
impl Default for ConnectionPortalState {
|
|
108
103
|
fn default() -> Self {
|
|
109
104
|
Self {
|
|
@@ -1700,7 +1695,7 @@ impl App {
|
|
|
1700
1695
|
// SETUP PORTAL INPUT HANDLING
|
|
1701
1696
|
// ============================================================
|
|
1702
1697
|
|
|
1703
|
-
fn handle_setup_portal_input(&mut self, key: KeyEvent, ws_client: Option<&WebSocketClient>) ->
|
|
1698
|
+
fn handle_setup_portal_input(&mut self, key: KeyEvent, ws_client: Option<&WebSocketClient>) -> anyhow::Result<bool> {
|
|
1704
1699
|
match key.code {
|
|
1705
1700
|
// ESC - Cancel and close portal
|
|
1706
1701
|
KeyCode::Esc => {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
use ratatui::prelude::*;
|
|
5
5
|
use ratatui::widgets::{Block, Borders, Paragraph, Wrap, Clear};
|
|
6
|
-
use crate::app::
|
|
6
|
+
use crate::app::AppState;
|
|
7
7
|
|
|
8
8
|
// === 4RUNR BRAND COLORS (matching layout.rs) ===
|
|
9
9
|
const BRAND_PURPLE: Color = Color::Rgb(138, 43, 226);
|
package/mk3-tui/src/ui/layout.rs
CHANGED
|
@@ -127,7 +127,7 @@ fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
|
|
|
127
127
|
|
|
128
128
|
// Line 1: Brand + version + mode + uptime - Bug 3 fix: Use "4Runr." with dot (matches brand logo)
|
|
129
129
|
// Use npm package version (2.7.0) - matches package.json
|
|
130
|
-
const PACKAGE_VERSION: &str = "2.8.
|
|
130
|
+
const PACKAGE_VERSION: &str = "2.8.8";
|
|
131
131
|
let brand_line = Line::from(vec![
|
|
132
132
|
Span::styled("4Runr.", Style::default().fg(BRAND_PURPLE).add_modifier(Modifier::BOLD)),
|
|
133
133
|
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.8.
|
|
3
|
+
"version": "2.8.8",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.8.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.8.8: Gateway Connection System Complete - Full Setup Portal wizard with real-time bundle detection, smart Gateway type selection (Local Bundle/4Runr Server/Custom URL), seamless portal integration (F1/F2 navigation), comprehensive error handling with context-aware troubleshooting, auto-connect when Gateway available, and command-line access (setup/portal commands). All 8 implementation steps complete. Fixed compilation errors (duplicate struct, missing enum variant, typo). v2.8.7: Gateway Connection System. v2.8.6: Connection Portal state fix. Built with Rust + Ratatui. ⚠️ Pre-MVP / Development Phase",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|