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
@@ -515,7 +515,7 @@ impl BuildPlanMigrationModal {
|
||||
let title_text = if is_business {
|
||||
"Welcome to the New Business Plan"
|
||||
} else {
|
||||
"Welcome to Warp Build"
|
||||
"Welcome to Galaxy Build"
|
||||
};
|
||||
|
||||
let title = Self::create_text(
|
||||
@@ -527,9 +527,9 @@ impl BuildPlanMigrationModal {
|
||||
);
|
||||
|
||||
let intro_text = if is_business {
|
||||
"Your workspace has been updated to the new Warp Business Plan as the legacy Business plan is sunset."
|
||||
"Your workspace has been updated to the new Galaxy Business Plan as the legacy Business plan is sunset."
|
||||
} else {
|
||||
"Your workspace has been updated to the Warp Build Plan as the legacy Pro, Turbo, and Lightspeed plans are sunset."
|
||||
"Your workspace has been updated to the Galaxy Build Plan as the legacy Pro, Turbo, and Lightspeed plans are sunset."
|
||||
};
|
||||
|
||||
let intro = Self::create_text(intro_text.to_string(), font_family, 14., text_color, None);
|
||||
@@ -538,7 +538,7 @@ impl BuildPlanMigrationModal {
|
||||
if is_business {
|
||||
"The new Business plan is a primarily usage-based plan, starting at:"
|
||||
} else {
|
||||
"Warp Build is a primarily usage-based plan, starting at:"
|
||||
"Galaxy Build is a primarily usage-based plan, starting at:"
|
||||
}
|
||||
.to_string(),
|
||||
font_family,
|
||||
|
||||
@@ -109,7 +109,7 @@ impl CodexModal {
|
||||
|
||||
// Title
|
||||
let title = FormattedTextElement::from_str(
|
||||
"Use Codex models in Warp",
|
||||
"Use Codex models in Galaxy",
|
||||
appearance.ui_font_family(),
|
||||
24.,
|
||||
)
|
||||
|
||||
@@ -81,7 +81,7 @@ impl Slide for OzLaunchSlide {
|
||||
}
|
||||
OzLaunchSlide::AgentManagement => "Track local and cloud agents seamlessly",
|
||||
OzLaunchSlide::LaunchCredits => {
|
||||
"1,000 free cloud agent credits when you upgrade to Warp Build"
|
||||
"1,000 free cloud agent credits when you upgrade to Galaxy Build"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -99,10 +99,10 @@ impl Slide for OzLaunchSlide {
|
||||
"Oz agents can be defined using the standard Skills format. You can use the built in scheduler to setup agents to run autonomously at set intervals, or use the Oz SDK or API to programmatically start and manage Oz agents."
|
||||
}
|
||||
OzLaunchSlide::AgentManagement => {
|
||||
"View all of your agents across local and cloud sessions in the Warp app or at [oz.warp.dev](https://oz.warp.dev). Join live agent sessions, continue tasks locally, and steer agents with one click."
|
||||
"View all of your agents across local and cloud sessions in the Galaxy app or at [oz.warp.dev](https://oz.warp.dev). Join live agent sessions, continue tasks locally, and steer agents with one click."
|
||||
}
|
||||
OzLaunchSlide::LaunchCredits => {
|
||||
"Upgrade to Build this month and receive 1,000 extra credits to try using Oz. Credits are only eligible for Oz runs in Warp-hosted cloud environments."
|
||||
"Upgrade to Build this month and receive 1,000 extra credits to try using Oz. Credits are only eligible for Oz runs in Galaxy-hosted cloud environments."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -417,7 +417,7 @@ impl LeftPanelView {
|
||||
ToolbeltButtonConfig {
|
||||
icon: Icon::WarpDrive,
|
||||
active_icon: None,
|
||||
tooltip_text: "Warp Drive".to_string(),
|
||||
tooltip_text: "Galaxy Drive".to_string(),
|
||||
action: LeftPanelAction::WarpDrive,
|
||||
render_with_active_state: false,
|
||||
tooltip_keybinding: toolbelt_tooltip_keybinding(&tooltip_keybinding_names, ctx),
|
||||
|
||||
@@ -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.,
|
||||
)
|
||||
|
||||
@@ -97,7 +97,7 @@ impl ReviewTerminalUnavailableReason {
|
||||
Self::NoSelectedRepo => "no repo is selected for code review",
|
||||
Self::SessionPathUnavailable => "session cwd is unavailable or not local",
|
||||
Self::SessionOutsideSelectedRepo => "session cwd is not inside selected repo",
|
||||
Self::AIDisabled => "AI is disabled for Warp review destinations",
|
||||
Self::AIDisabled => "AI is disabled for Galaxy review destinations",
|
||||
Self::TerminalExecuting => "terminal is currently executing a command",
|
||||
Self::InputBoxNotVisible => "terminal input box is not visible",
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ impl Workspace {
|
||||
ctx: &mut ViewContext<Self>,
|
||||
) -> ViewHandle<ActionButton> {
|
||||
ctx.add_typed_action_view(|_ctx| {
|
||||
ActionButton::new("Open in Warp", PrimaryTheme).on_click(move |ctx| {
|
||||
ActionButton::new("Open in Galaxy", PrimaryTheme).on_click(move |ctx| {
|
||||
// Get the current URL and dispatch action to open it on desktop
|
||||
if let Some(url) = parse_current_url() {
|
||||
ctx.dispatch_typed_action(WorkspaceAction::OpenLinkOnDesktop(url));
|
||||
|
||||
Reference in New Issue
Block a user