fix: update terminal tab title from 'DeepSeek TUI' to 'CodeWhale'

This commit is contained in:
jayzhu
2026-05-28 21:05:31 +08:00
committed by Hunter Bown
parent 1379d354e4
commit b669ee7b94
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ impl Engine {
// Signal to the terminal / taskbar that a turn is in progress
// (OSC 9 ; 4 indeterminate progress + title spinner).
crate::tui::notifications::set_taskbar_progress_busy();
crate::tui::notifications::start_title_animation("DeepSeek TUI");
crate::tui::notifications::start_title_animation("CodeWhale");
let client = self
.deepseek_client
+2 -2
View File
@@ -315,7 +315,7 @@ pub fn stop_title_animation() {
// terminal-level visual indicator (flash/icon).
let mode = COMPLETION_SOUND_MODE.load(Ordering::SeqCst);
if mode == 1 {
set_terminal_title("DeepSeek TUI");
set_terminal_title("CodeWhale");
}
play_completion_sound();
}
@@ -326,7 +326,7 @@ pub fn stop_title_animation() {
/// marker doesn't persist once the user is back at the terminal.
pub fn reset_title_on_interaction() {
if COMPLETION_MARKER_SHOWN.swap(false, Ordering::SeqCst) {
set_terminal_title("DeepSeek TUI");
set_terminal_title("CodeWhale");
}
}