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
+9 -9
View File
@@ -217,25 +217,25 @@ pub fn init(app: &mut AppContext) {
.with_context_predicate(id!("Workspace")),
EditableBinding::new(
"workspace:open_openwarp_launch_modal",
"[Debug] Open OpenWarp Launch Modal",
"[Debug] Open OpenGalaxy Launch Modal",
WorkspaceAction::OpenOpenWarpLaunchModal,
)
.with_context_predicate(id!("Workspace")),
EditableBinding::new(
"workspace:reset_openwarp_launch_modal_state",
"[Debug] Reset OpenWarp Launch Modal State",
"[Debug] Reset OpenGalaxy Launch Modal State",
WorkspaceAction::ResetOpenWarpLaunchModalState,
)
.with_context_predicate(id!("Workspace")),
EditableBinding::new(
"workspace:install_opencode_warp_plugin",
"[Debug] Install OpenCode Warp plugin",
"[Debug] Install OpenCode Galaxy plugin",
WorkspaceAction::InstallOpenCodeWarpPlugin,
)
.with_context_predicate(id!("Workspace")),
EditableBinding::new(
"workspace:use_local_opencode_warp_plugin",
"[Debug] Use local OpenCode Warp plugin (testing only)",
"[Debug] Use local OpenCode Galaxy plugin (testing only)",
WorkspaceAction::UseLocalOpenCodeWarpPlugin,
)
.with_context_predicate(id!("Workspace")),
@@ -790,7 +790,7 @@ pub fn init(app: &mut AppContext) {
EditableBinding::new(
TOGGLE_WARP_DRIVE_BINDING_NAME,
BindingDescription::new("Toggle Galaxy Drive")
.with_custom_description(bindings::MAC_MENUS_CONTEXT, "Warp Drive"),
.with_custom_description(bindings::MAC_MENUS_CONTEXT, "Galaxy Drive"),
WorkspaceAction::ToggleWarpDrive,
)
.with_context_predicate(id!("Workspace") & id!(flags::ENABLE_WARP_DRIVE)),
@@ -1148,7 +1148,7 @@ pub fn init(app: &mut AppContext) {
.with_custom_action(CustomAction::NewAgentModePane),
EditableBinding::new(
"workspace:toggle_ai_assistant",
"Toggle Warp AI",
"Toggle Galaxy AI",
WorkspaceAction::ToggleAIAssistant,
)
.with_enabled(|| !FeatureFlag::AgentMode.is_enabled())
@@ -1420,8 +1420,8 @@ fn add_open_setting_pages_as_editable_binding(app: &mut AppContext) {
.with_context_predicate(id!("Workspace")),
EditableBinding::new(
"workspace:show_settings_warpify_page",
BindingDescription::new("Open Settings: Warpify")
.with_custom_description(bindings::MAC_MENUS_CONTEXT, "Configure Warpify..."),
BindingDescription::new("Open Settings: Wormhole")
.with_custom_description(bindings::MAC_MENUS_CONTEXT, "Configure Wormhole..."),
WorkspaceAction::ShowSettingsPage(SettingsSection::Warpify),
)
.with_group(bindings::BindingGroup::Settings.as_str())
@@ -1515,7 +1515,7 @@ fn add_overflow_menu_items_as_editable_binding(app: &mut AppContext) {
#[cfg(not(target_family = "wasm"))]
EditableBinding::new(
"workspace:view_logs",
"View Warp logs",
"View Galaxy logs",
WorkspaceAction::ViewLogs,
)
.with_context_predicate(id!("Workspace")),