Rebrand Warp to Galaxy v1.1.0

- Rename all UI-facing "Warp" references to "Galaxy"
- Rename "Warpify" to "Wormhole" throughout the UI
- Replace app icons with 5 new Galaxy-branded variants
- Update About page to show selected app icon dynamically
- Rephrase Privacy page for Bedrock context
- Remove "Fallback to Warp server" toggle from Bedrock settings
- Widen model selector dropdowns in profile editor (480px)
- Update TERM_PROGRAM to "GalaxyTerminal"
- Bump version to 1.1.0

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ryan Ward
2026-05-19 11:21:44 -05:00
co-authored by Claude Opus 4.6
parent 99159184cb
commit ccc67e6a33
139 changed files with 319 additions and 398 deletions
+14 -2
View File
@@ -5,7 +5,11 @@ use super::{
},
SettingsSection,
};
use crate::{appearance::Appearance, channel::ChannelState, workspace::WorkspaceAction};
use crate::{
appearance::Appearance, channel::ChannelState, settings::app_icon::AppIconSettings,
workspace::WorkspaceAction,
};
use galaxyui::SingletonEntity;
use galaxyui::{
assets::asset_cache::AssetSource,
elements::{
@@ -62,7 +66,15 @@ impl SettingsWidget for AboutPageWidget {
) -> Box<dyn Element> {
let ui_builder = appearance.ui_builder();
let image_path = "bundled/svg/galaxy-logo.svg";
let icon_file = AppIconSettings::get_base_icon_file_name(*AppIconSettings::as_ref(_app).app_icon);
let image_path = match icon_file {
"galaxy" => "bundled/png/galaxy.png",
"galaxy_dotmatrix" => "bundled/png/galaxy_dotmatrix.png",
"galaxy_explorer" => "bundled/png/galaxy_explorer.png",
"galaxy_rainbow" => "bundled/png/galaxy_rainbow.png",
"galaxy_wormhole" => "bundled/png/galaxy_wormhole.png",
_ => "bundled/png/galaxy.png",
};
let version =
ChannelState::app_version().unwrap_or(concat!("v", env!("CARGO_PKG_VERSION")));