4runr-os 2.3.2 → 2.3.3
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/ui/boot.rs
CHANGED
|
@@ -130,7 +130,7 @@ pub fn render_boot(f: &mut Frame, area: Rect, state: &AppState) {
|
|
|
130
130
|
|
|
131
131
|
let current_y = current_y + progress_height + 2;
|
|
132
132
|
|
|
133
|
-
// === FOOTER: "Press any key to continue"
|
|
133
|
+
// === FOOTER: "Press any key to continue" (only when boot done) ===
|
|
134
134
|
if state.boot_done && current_y < area.height {
|
|
135
135
|
let footer_area = Rect {
|
|
136
136
|
x: area.x,
|
|
@@ -139,11 +139,8 @@ pub fn render_boot(f: &mut Frame, area: Rect, state: &AppState) {
|
|
|
139
139
|
height: footer_height,
|
|
140
140
|
};
|
|
141
141
|
|
|
142
|
-
const PACKAGE_VERSION: &str = "2.3.2";
|
|
143
|
-
let footer_text = format!("Press any key to continue... | v{}", PACKAGE_VERSION);
|
|
144
|
-
|
|
145
142
|
f.render_widget(
|
|
146
|
-
Paragraph::new(
|
|
143
|
+
Paragraph::new("Press any key to continue...")
|
|
147
144
|
.style(Style::default().fg(TEXT_DIM))
|
|
148
145
|
.alignment(Alignment::Center),
|
|
149
146
|
footer_area,
|
package/mk3-tui/src/ui/layout.rs
CHANGED
|
@@ -119,8 +119,8 @@ fn render_header(f: &mut Frame, area: Rect, state: &AppState) {
|
|
|
119
119
|
let uptime_str = format_uptime(state.uptime_secs);
|
|
120
120
|
|
|
121
121
|
// Line 1: Brand + version + uptime - Bug 3 fix: Use "4Runr." with dot (matches brand logo)
|
|
122
|
-
// Use npm package version (2.3.
|
|
123
|
-
const PACKAGE_VERSION: &str = "2.3.
|
|
122
|
+
// Use npm package version (2.3.3) - matches package.json
|
|
123
|
+
const PACKAGE_VERSION: &str = "2.3.3";
|
|
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.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.3.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.3.3 includes Step 4 TUI screens (Agent Builder, Run Manager, Settings), WebSocket integration, version display, and comprehensive navigation. Built with Rust + Ratatui. ⚠️ Pre-MVP / Development Phase",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|