Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -14,10 +14,10 @@ use crate::view_components::action_button::{ActionButton, ButtonSize, SecondaryT
|
||||
use crate::TemplatableMCPServerManager;
|
||||
use std::path::PathBuf;
|
||||
use uuid::Uuid;
|
||||
use warp_core::features::FeatureFlag;
|
||||
use warpui::elements::ParentElement;
|
||||
use warpui::SingletonEntity;
|
||||
use warpui::{
|
||||
use galaxy_core::features::FeatureFlag;
|
||||
use galaxyui::elements::ParentElement;
|
||||
use galaxyui::SingletonEntity;
|
||||
use galaxyui::{
|
||||
elements::{
|
||||
ConstrainedBox, Container, CrossAxisAlignment, Flex, MainAxisAlignment, MainAxisSize,
|
||||
Shrinkable, Text, Wrap,
|
||||
@@ -380,10 +380,10 @@ impl View for ExecutionProfileView {
|
||||
)
|
||||
.with_background(appearance.theme().surface_2())
|
||||
.with_border(
|
||||
warpui::elements::Border::new(1.).with_border_fill(appearance.theme().outline()),
|
||||
galaxyui::elements::Border::new(1.).with_border_fill(appearance.theme().outline()),
|
||||
)
|
||||
.with_corner_radius(warpui::elements::CornerRadius::with_all(
|
||||
warpui::elements::Radius::Pixels(4.),
|
||||
.with_corner_radius(galaxyui::elements::CornerRadius::with_all(
|
||||
galaxyui::elements::Radius::Pixels(4.),
|
||||
))
|
||||
.with_horizontal_padding(16.)
|
||||
.with_vertical_padding(12.)
|
||||
@@ -439,11 +439,11 @@ where
|
||||
)
|
||||
.with_background(appearance.theme().surface_2())
|
||||
.with_border(
|
||||
warpui::elements::Border::all(1.)
|
||||
galaxyui::elements::Border::all(1.)
|
||||
.with_border_fill(appearance.theme().outline()),
|
||||
)
|
||||
.with_corner_radius(warpui::elements::CornerRadius::with_all(
|
||||
warpui::elements::Radius::Pixels(3.),
|
||||
.with_corner_radius(galaxyui::elements::CornerRadius::with_all(
|
||||
galaxyui::elements::Radius::Pixels(3.),
|
||||
))
|
||||
.with_horizontal_padding(6.)
|
||||
.with_vertical_padding(2.)
|
||||
@@ -470,7 +470,7 @@ fn render_allowlist_denylist_row(
|
||||
.with_child(
|
||||
Container::new(
|
||||
ConstrainedBox::new(
|
||||
icon.to_warpui_icon(if is_ai_enabled {
|
||||
icon.to_galaxyui_icon(if is_ai_enabled {
|
||||
appearance
|
||||
.theme()
|
||||
.sub_text_color(appearance.theme().surface_1())
|
||||
@@ -508,7 +508,7 @@ fn render_allowlist_denylist_row(
|
||||
.finish(),
|
||||
)
|
||||
.with_margin_left(8.)
|
||||
.with_border(warpui::elements::Border::left(1.).with_border_fill(appearance.theme().outline()))
|
||||
.with_border(galaxyui::elements::Border::left(1.).with_border_fill(appearance.theme().outline()))
|
||||
.with_padding_left(8.)
|
||||
.finish()
|
||||
}
|
||||
@@ -573,7 +573,7 @@ fn render_model_line_with_icon(
|
||||
.with_child(
|
||||
Container::new(
|
||||
ConstrainedBox::new(
|
||||
icon.to_warpui_icon(if is_ai_enabled {
|
||||
icon.to_galaxyui_icon(if is_ai_enabled {
|
||||
appearance
|
||||
.theme()
|
||||
.sub_text_color(appearance.theme().surface_1())
|
||||
@@ -634,7 +634,7 @@ fn render_permission_line_with_icon(
|
||||
.with_child(
|
||||
Container::new(
|
||||
ConstrainedBox::new(
|
||||
icon.to_warpui_icon(if is_ai_enabled {
|
||||
icon.to_galaxyui_icon(if is_ai_enabled {
|
||||
appearance
|
||||
.theme()
|
||||
.sub_text_color(appearance.theme().surface_1())
|
||||
|
||||
Reference in New Issue
Block a user