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
+11 -11
View File
@@ -27,14 +27,14 @@ use crate::view_components::{FeaturePopup, NewFeaturePopupEvent, NewFeaturePopup
use pathfinder_color::ColorU;
use pathfinder_geometry::vector::{vec2f, Vector2F};
use std::path::PathBuf;
use warp_core::ui::theme::Fill;
use warp_core::{features::FeatureFlag, ui::theme::color::internal_colors};
use warpui::elements::Empty;
use warpui::keymap::Keystroke;
use warpui::platform::Cursor;
use warpui::ui_components::components::UiComponentStyles;
use warpui::ui_components::components::{Coords, UiComponent};
use warpui::{
use galaxy_core::ui::theme::Fill;
use galaxy_core::{features::FeatureFlag, ui::theme::color::internal_colors};
use galaxyui::elements::Empty;
use galaxyui::keymap::Keystroke;
use galaxyui::platform::Cursor;
use galaxyui::ui_components::components::UiComponentStyles;
use galaxyui::ui_components::components::{Coords, UiComponent};
use galaxyui::{
elements::{
Border, ChildAnchor, ChildView, ConstrainedBox, Container, CornerRadius,
CrossAxisAlignment, Flex, Hoverable, MouseStateHandle, OffsetPositioning, ParentAnchor,
@@ -78,12 +78,12 @@ pub fn render_git_diff_stats_content(
let icon_element = if has_changes {
// Use file icon when there are changes
Icon::File
.to_warpui_icon(Fill::Solid(internal_colors::neutral_6(theme)))
.to_galaxyui_icon(Fill::Solid(internal_colors::neutral_6(theme)))
.finish()
} else {
// Use diff icon when there are no changes
Icon::Diff
.to_warpui_icon(Fill::Solid(internal_colors::neutral_6(theme)))
.to_galaxyui_icon(Fill::Solid(internal_colors::neutral_6(theme)))
.finish()
};
@@ -1810,7 +1810,7 @@ pub(crate) fn render_udi_chip(config: UdiChipConfig, appearance: &Appearance) ->
if let Some(icon) = config.icon {
content.add_child(
Container::new(
ConstrainedBox::new(icon.to_warpui_icon(Fill::Solid(config.color)).finish())
ConstrainedBox::new(icon.to_galaxyui_icon(Fill::Solid(config.color)).finish())
.with_height(icon_size)
.with_width(icon_size)
.finish(),