Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+10 -10
View File
@@ -3,12 +3,12 @@ use std::pin::pin;
use std::rc::Rc;
use crate::ai::agent::conversation::ConversationStatus;
use warp_terminal::model::escape_sequences::{BRACKETED_PASTE_END, BRACKETED_PASTE_START};
use warpui::{notification::UserNotification, Presenter, WindowInvalidation};
use galaxy_terminal::model::escape_sequences::{BRACKETED_PASTE_END, BRACKETED_PASTE_START};
use galaxyui::{notification::UserNotification, Presenter, WindowInvalidation};
use crate::ai::agent::task::TaskId;
use crate::ai::blocklist::block::cli_controller::UserTakeOverReason;
use warpui::App;
use galaxyui::App;
use crate::pane_group::focus_state::PaneGroupFocusState;
use crate::pane_group::{BackingView, TerminalPaneId};
@@ -404,7 +404,7 @@ fn set_input_mode_agent_does_not_enter_local_agent_from_root_cloud_mode_pane() {
/// Test clearing of session flag state when terminal is cleared
#[test]
fn test_clear_session_flag_state() {
use warp_terminal::shell::ShellType;
use galaxy_terminal::shell::ShellType;
use crate::ai::blocklist::SerializedBlockListItem;
use crate::terminal::model::block::SerializedBlock;
@@ -855,7 +855,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseDown {
galaxyui::Event::LeftMouseDown {
position: start_position,
modifiers: Default::default(),
click_count: 1,
@@ -868,7 +868,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseDragged {
galaxyui::Event::LeftMouseDragged {
position: end_position,
modifiers: Default::default(),
},
@@ -879,7 +879,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseUp {
galaxyui::Event::LeftMouseUp {
position: end_position,
modifiers: Default::default(),
},
@@ -901,7 +901,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseDown {
galaxyui::Event::LeftMouseDown {
position: start_position,
modifiers: ModifiersState {
shift: true,
@@ -917,7 +917,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseDragged {
galaxyui::Event::LeftMouseDragged {
position: end_position,
modifiers: ModifiersState {
shift: true,
@@ -931,7 +931,7 @@ fn test_alt_screen_select_with_sgr_mouse() {
rerender!(app, presenter, invalidation, size_info);
app.update(enclose!((presenter) move |ctx| {
ctx.simulate_window_event(
warpui::Event::LeftMouseUp {
galaxyui::Event::LeftMouseUp {
position: end_position,
modifiers: ModifiersState {
shift: true,