tweak agent term scrollback, bump vers
release / build (push) Successful in 4m56s

bound agent terminal scrollback memory, for one term could hold a whole 32MB of stuff beforehand
This commit is contained in:
lda
2026-07-21 05:47:50 +07:00 Verified
parent ea789b75c7
commit 50f21a5be2
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "wakey-agent"
version = "0.3.4"
version = "0.3.5"
edition = "2024"
publish = ["gitea"]
+1 -1
View File
@@ -13,7 +13,7 @@ use tokio_tungstenite::tungstenite::Message;
use tracing::{info, warn};
const MAX_TERMINAL_FRAME_BYTES: usize = 64 * 1024;
const TERMINAL_SCROLLBACK_ROWS: usize = 5_000;
const TERMINAL_SCROLLBACK_ROWS: usize = 1_000;
const RELAY_INPUT_QUEUE: usize = 32;
const RELAY_OUTPUT_QUEUE: usize = 32;
const PTY_EXIT_DRAIN_TIMEOUT: Duration = Duration::from_secs(1);