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
+4 -4
View File
@@ -107,7 +107,7 @@ use pathfinder_geometry::vector::{vec2f, Vector2F};
use std::{any::Any, collections::HashMap, sync::Arc};
use url::Url;
const WARP_DRIVE_TITLE: &str = "Warp Drive";
const WARP_DRIVE_TITLE: &str = "Galaxy Drive";
// Team zero state consts
const HINT_HORIZONTAL_PADDING: f32 = 18.;
@@ -1721,7 +1721,7 @@ impl DriveIndex {
(DriveIndexVariant::MainIndex, DriveIndexSection::JoinTeam) => {
if self.is_online(app) {
let join_teams_text = format!(
"Collaborate with {} of your teammates already on Warp.",
"Collaborate with {} of your teammates already on Galaxy.",
UserWorkspaces::handle(app)
.as_ref(app)
.total_teammates_in_joinable_teams()
@@ -2974,7 +2974,7 @@ impl DriveIndex {
if mouse_state.is_hovered() {
let tooltip = appearance
.ui_builder()
.tool_tip(String::from("Syncing Warp Drive"));
.tool_tip(String::from("Syncing Galaxy Drive"));
stack.add_positioned_overlay_child(
tooltip.build().finish(),
@@ -3956,7 +3956,7 @@ impl DriveIndex {
.with_cross_axis_alignment(CrossAxisAlignment::Start)
.with_main_axis_alignment(MainAxisAlignment::SpaceBetween)
.with_child(
Text::new_inline("Warp Drive".to_string(), appearance.ui_font_family(), 14.)
Text::new_inline("Galaxy Drive".to_string(), appearance.ui_font_family(), 14.)
.with_color(theme.main_text_color(background_color).into())
.with_style(Properties {
weight: galaxyui::fonts::Weight::Bold,
+2 -2
View File
@@ -15,7 +15,7 @@ define_settings_group!(WarpDriveSettings, settings: [
sync_to_cloud: SyncToCloud::Globally(RespectUserSyncSetting::Yes),
private: false,
toml_path: "warp_drive.sorting_choice",
description: "The sort order for items in Warp Drive.",
description: "The sort order for items in Galaxy Drive.",
},
sharing_onboarding_block_shown: WarpDriveSharingOnboardingBlockShown {
type: bool,
@@ -32,7 +32,7 @@ define_settings_group!(WarpDriveSettings, settings: [
sync_to_cloud: SyncToCloud::Globally(RespectUserSyncSetting::Yes),
private: false,
toml_path: "warp_drive.enabled",
description: "Whether Warp Drive is enabled.",
description: "Whether Galaxy Drive is enabled.",
},
]);