4runr-os 2.10.44 → 2.10.45
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 +26 -3
- package/package.json +2 -2
package/mk3-tui/src/app.rs
CHANGED
|
@@ -2546,7 +2546,9 @@ impl App {
|
|
|
2546
2546
|
|
|
2547
2547
|
// M — Portal Monitoring (after successful connect)
|
|
2548
2548
|
KeyCode::Char('m') | KeyCode::Char('M')
|
|
2549
|
-
if self.state.connection_portal.connection_success
|
|
2549
|
+
if self.state.connection_portal.connection_success
|
|
2550
|
+
|| (matches!(self.state.operation_mode, OperationMode::Connected)
|
|
2551
|
+
&& self.state.gateway_url.is_some()) =>
|
|
2550
2552
|
{
|
|
2551
2553
|
self.state
|
|
2552
2554
|
.navigation
|
|
@@ -2777,6 +2779,29 @@ impl App {
|
|
|
2777
2779
|
return Ok(false);
|
|
2778
2780
|
}
|
|
2779
2781
|
if key.code == KeyCode::Char('l') || key.code == KeyCode::Char('L') {
|
|
2782
|
+
let logs_open = self
|
|
2783
|
+
.state
|
|
2784
|
+
.advanced_monitoring
|
|
2785
|
+
.monitoring_state
|
|
2786
|
+
.selected_section
|
|
2787
|
+
== Some(MonitoringSection::Logs)
|
|
2788
|
+
&& self
|
|
2789
|
+
.state
|
|
2790
|
+
.advanced_monitoring
|
|
2791
|
+
.monitoring_state
|
|
2792
|
+
.sections
|
|
2793
|
+
.get(&MonitoringSection::Logs)
|
|
2794
|
+
.map(|section| section.expanded)
|
|
2795
|
+
.unwrap_or(false);
|
|
2796
|
+
if logs_open && !self.state.portal_monitoring.logs_fetch_loading {
|
|
2797
|
+
self.state
|
|
2798
|
+
.advanced_monitoring
|
|
2799
|
+
.monitoring_state
|
|
2800
|
+
.collapse_section(MonitoringSection::Logs);
|
|
2801
|
+
self.state.portal_monitoring.scroll_offset = 0;
|
|
2802
|
+
self.request_immediate_render("portal_monitoring_logs_close");
|
|
2803
|
+
return Ok(false);
|
|
2804
|
+
}
|
|
2780
2805
|
self.state
|
|
2781
2806
|
.advanced_monitoring
|
|
2782
2807
|
.monitoring_state
|
|
@@ -2995,7 +3020,6 @@ impl App {
|
|
|
2995
3020
|
.monitoring_state
|
|
2996
3021
|
.selected_section
|
|
2997
3022
|
== Some(MonitoringSection::Logs)
|
|
2998
|
-
&& self.state.portal_monitoring.scroll_offset > 0
|
|
2999
3023
|
{
|
|
3000
3024
|
self.state.portal_monitoring.scroll_offset =
|
|
3001
3025
|
self.state.portal_monitoring.scroll_offset.saturating_sub(1);
|
|
@@ -3016,7 +3040,6 @@ impl App {
|
|
|
3016
3040
|
.monitoring_state
|
|
3017
3041
|
.selected_section
|
|
3018
3042
|
== Some(MonitoringSection::Logs)
|
|
3019
|
-
&& self.state.portal_monitoring.scroll_offset < max_scroll
|
|
3020
3043
|
{
|
|
3021
3044
|
self.state.portal_monitoring.scroll_offset =
|
|
3022
3045
|
(self.state.portal_monitoring.scroll_offset + 1).min(max_scroll);
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.45",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.45: Fixes Portal Monitoring log toggle, log-bottom scroll, and monitor re-entry from linked Gateway sessions. v2.10.44: Stabilizes Portal Monitoring reading mode, global refresh, logs, and shortcut behavior.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|