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
@@ -45,7 +45,7 @@ const FEATURE_ITEMS: &[FeatureItem] = &[
FeatureItem {
icon: Icon::HeartHand,
title: "Contribute",
description: "Warp's client code is now open source. Get started by using the /feedback skill to open an issue, and follow the contribution guidelines here.",
description: "Galaxy's client code is now open source. Get started by using the /feedback skill to open an issue, and follow the contribution guidelines here.",
inline_link: Some(InlineLink {
text: "here",
url: CONTRIBUTING_URL,
@@ -54,7 +54,7 @@ const FEATURE_ITEMS: &[FeatureItem] = &[
FeatureItem {
icon: Icon::Oz,
title: "Open Automated Development",
description: "The Warp repo is managed by an agent-first workflow powered by Oz, our cloud agent orchestration platform.",
description: "The Galaxy repo is managed by an agent-first workflow powered by Oz, our cloud agent orchestration platform.",
inline_link: Some(InlineLink {
text: "Oz",
url: OZ_URL,
@@ -203,7 +203,7 @@ impl OpenWarpLaunchModal {
}
fn render_title(appearance: &Appearance) -> Box<dyn Element> {
Text::new("Warp is now open-source", appearance.ui_font_family(), 20.)
Text::new("Galaxy is now open-source", appearance.ui_font_family(), 20.)
.with_color(PhenomenonStyle::modal_title_text())
.with_style(Properties::default().weight(Weight::Semibold))
.finish()
@@ -211,7 +211,7 @@ impl OpenWarpLaunchModal {
fn render_description(appearance: &Appearance) -> Box<dyn Element> {
Text::new(
"You, our community, can participate in building Warp using an agent-first workflow.",
"You, our community, can participate in building Galaxy using an agent-first workflow.",
appearance.ui_font_family(),
14.,
)