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
+1 -1
View File
@@ -30,7 +30,7 @@ define_settings_group!(WorkflowAliases, settings: [
]);
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone, schemars::JsonSchema, SettingsValue)]
#[schemars(description = "A shortcut alias for a Warp Drive workflow.")]
#[schemars(description = "A shortcut alias for a Galaxy Drive workflow.")]
pub struct WorkflowAlias {
#[schemars(description = "The alias text that triggers this workflow.")]
pub alias: String,
+1 -1
View File
@@ -224,7 +224,7 @@ pub fn prompt_chip_logging_workflow(shell_family: ShellFamily) -> Option<Workflo
),
arguments: vec![],
source_url: None,
author: Some("Warp".into()),
author: Some("Galaxy".into()),
author_url: None,
shells: vec![],
environment_variables: None,
+2 -2
View File
@@ -184,7 +184,7 @@ const AI_ASSIST_LOADING_TEXT: &str = "Loading";
const ALIAS_HELP_TEXT: &str = "Aliases allow you to create short strings to execute workflows. Each alias can have different argument values and environment variables, and aliases are personal to you.";
const RUN_ON_DESKTOP_BUTTON_TEXT: &str = "Run in Warp";
const RUN_ON_DESKTOP_BUTTON_TEXT: &str = "Run in Galaxy";
const RUN_ON_DESKTOP_BUTTON_WIDTH: f32 = 108.;
const UNSAVED_CHANGES_TEXT: &str = "You have unsaved changes.";
@@ -2465,7 +2465,7 @@ impl WorkflowView {
.finish();
let button_with_tool_tip = appearance.ui_builder().tool_tip_on_element(
"Generate a title, descriptions, or parameters with Warp AI".to_string(),
"Generate a title, descriptions, or parameters with Galaxy AI".to_string(),
self.ui_state_handles.ai_assist_tool_tip.clone(),
rendered_button,
ParentAnchor::TopMiddle,