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:
co-authored by
Claude Opus 4.6
parent
99159184cb
commit
ccc67e6a33
@@ -394,7 +394,7 @@ impl ResourceCenterMainView {
|
||||
.with_text_and_icon_label(
|
||||
TextAndIcon::new(
|
||||
TextAndIconAlignment::IconFirst,
|
||||
"Invite a friend to Warp",
|
||||
"Invite a friend to Galaxy",
|
||||
Icon::new(SEND_SVG_PATH, appearance.theme().accent()),
|
||||
MainAxisSize::Max,
|
||||
MainAxisAlignment::Center,
|
||||
|
||||
@@ -40,7 +40,7 @@ impl FeatureSection {
|
||||
match self {
|
||||
FeatureSection::WhatsNew => "What's New?",
|
||||
FeatureSection::GettingStarted => "Getting Started",
|
||||
FeatureSection::MaximizeWarp => "Maximize Warp",
|
||||
FeatureSection::MaximizeWarp => "Maximize Galaxy",
|
||||
FeatureSection::AdvancedSetup => "Advanced Setup",
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,13 +36,13 @@ pub fn sections(ctx: &mut ViewContext<ResourceCenterMainView>) -> Vec<Section> {
|
||||
),
|
||||
FeatureItem::new(
|
||||
"Open command palette",
|
||||
"Access all of Warp via the keyboard.",
|
||||
"Access all of Galaxy via the keyboard.",
|
||||
Tip::Action(TipAction::CommandPalette),
|
||||
ctx,
|
||||
),
|
||||
FeatureItem::new(
|
||||
"Set your theme",
|
||||
"Make Warp your own by choosing a theme.",
|
||||
"Make Galaxy your own by choosing a theme.",
|
||||
Tip::Action(TipAction::ThemePicker),
|
||||
ctx,
|
||||
),
|
||||
@@ -61,19 +61,19 @@ pub fn sections(ctx: &mut ViewContext<ResourceCenterMainView>) -> Vec<Section> {
|
||||
items: vec![
|
||||
ContentItem {
|
||||
title: "Use your custom prompt",
|
||||
description: "Set up Warp to honor your PS1 setting",
|
||||
description: "Set up Galaxy to honor your PS1 setting",
|
||||
url: "https://docs.warp.dev/terminal/appearance/prompt",
|
||||
button_label: "View documentation",
|
||||
},
|
||||
ContentItem {
|
||||
title: "Integrate Warp with your IDE",
|
||||
description: "Configure Warp to launch from your most used development tools",
|
||||
title: "Integrate Galaxy with your IDE",
|
||||
description: "Configure Galaxy to launch from your most used development tools",
|
||||
url: "https://docs.warp.dev/terminal/integrations-and-plugins",
|
||||
button_label: "View documentation",
|
||||
},
|
||||
ContentItem {
|
||||
title: "How Warp uses Warp",
|
||||
description: "Learn how Warp's engineering team uses their favorite features",
|
||||
title: "How Galaxy uses Galaxy",
|
||||
description: "Learn how Galaxy's engineering team uses their favorite features",
|
||||
url: "https://www.warp.dev/blog/how-warp-uses-warp",
|
||||
button_label: "Read article",
|
||||
},
|
||||
|
||||
@@ -124,7 +124,7 @@ pub fn get_additional_keybindings() -> Vec<CommandBinding> {
|
||||
),
|
||||
CommandBinding::new(
|
||||
"workspace:hide_warp".into(),
|
||||
"Hide Warp".into(),
|
||||
"Hide Galaxy".into(),
|
||||
Some(Keystroke::parse("cmd-h").expect("Valid keystroke")),
|
||||
),
|
||||
CommandBinding::new(
|
||||
@@ -134,7 +134,7 @@ pub fn get_additional_keybindings() -> Vec<CommandBinding> {
|
||||
),
|
||||
CommandBinding::new(
|
||||
"workspace:quit_warp".into(),
|
||||
"Quit Warp".into(),
|
||||
"Quit Galaxy".into(),
|
||||
Some(Keystroke::parse("cmd-q").expect("Valid keystroke")),
|
||||
),
|
||||
CommandBinding::new(
|
||||
|
||||
@@ -336,7 +336,7 @@ impl ResourceCenterView {
|
||||
if FeatureFlag::AvatarInTabBar.is_enabled() {
|
||||
String::new()
|
||||
} else {
|
||||
"Warp Essentials".to_string()
|
||||
"Galaxy Essentials".to_string()
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user