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
+5 -5
View File
@@ -9,7 +9,7 @@ use crate::{
appearance::Appearance, channel::ChannelState, themes::theme::ColorScheme,
workspace::WorkspaceAction,
};
use warpui::{
use galaxyui::{
assets::asset_cache::AssetSource,
elements::{
Align, CacheOption, ConstrainedBox, Container, CrossAxisAlignment, Element, Flex, Image,
@@ -54,7 +54,7 @@ impl SettingsWidget for AboutPageWidget {
type View = AboutPageView;
fn search_terms(&self) -> &str {
"about warp version"
"about galaxy ai version"
}
fn render(
@@ -67,9 +67,9 @@ impl SettingsWidget for AboutPageWidget {
let ui_builder = appearance.ui_builder();
let image_path = if theme.inferred_color_scheme() == ColorScheme::LightOnDark {
"bundled/svg/warp-logo-with-light-title.svg"
"bundled/svg/bedrock.svg"
} else {
"bundled/svg/warp-logo-with-dark-title.svg"
"bundled/svg/bedrock.svg"
};
let version = ChannelState::app_version().unwrap_or("v#.##.###");
@@ -118,7 +118,7 @@ impl SettingsWidget for AboutPageWidget {
.with_child(version_row.finish())
.with_child(
ui_builder
.span("Copyright 2026 Warp")
.span("Copyright 2026 Samsung Electronics Co., Ltd.")
.build()
.with_margin_top(16.)
.finish(),