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
@@ -154,18 +154,18 @@ impl View for WasmNUXDialog {
|
||||
|
||||
let dialog = if self.requested_download {
|
||||
Dialog::new(
|
||||
"Open in Warp Desktop?".to_string(),
|
||||
"Open in Galaxy Desktop?".to_string(),
|
||||
Some("Future links will automatically open on desktop.".to_string()),
|
||||
dialog_styles,
|
||||
)
|
||||
.with_bottom_row_child(Self::render_dialog_button(
|
||||
"Open in Warp",
|
||||
"Open in Galaxy",
|
||||
WasmNUXDialogAction::OpenNativeAndClose,
|
||||
&self.confirm_mouse_state,
|
||||
appearance,
|
||||
))
|
||||
} else if app_install_detected == &UserAppInstallStatus::NotDetected {
|
||||
Dialog::new("Download Warp Desktop?".to_string(), None, dialog_styles)
|
||||
Dialog::new("Download Galaxy Desktop?".to_string(), None, dialog_styles)
|
||||
.with_child(
|
||||
Flex::column()
|
||||
.with_cross_axis_alignment(CrossAxisAlignment::Stretch)
|
||||
@@ -173,7 +173,7 @@ impl View for WasmNUXDialog {
|
||||
.with_child(
|
||||
appearance
|
||||
.ui_builder()
|
||||
.span("Warp is the intelligent terminal with AI and your dev team's knowledge built-in.")
|
||||
.span("Galaxy is a clone of Warp built for Samsung to use with Bedrock. Get the best features of Warp with the security provided by Bedrock!")
|
||||
.with_style(UiComponentStyles {
|
||||
font_weight: Some(Weight::Thin),
|
||||
font_color: Some(
|
||||
@@ -218,9 +218,9 @@ impl View for WasmNUXDialog {
|
||||
))
|
||||
} else {
|
||||
let object_kind = match web_intent_parser::current_web_intent() {
|
||||
Some(WebIntent::DriveObject(_)) => "Warp Drive objects",
|
||||
Some(WebIntent::DriveObject(_)) => "Galaxy Drive objects",
|
||||
Some(WebIntent::SessionView(_)) => "shared sessions",
|
||||
_ => "Warp links",
|
||||
_ => "Galaxy links",
|
||||
};
|
||||
|
||||
Dialog::new(
|
||||
|
||||
Reference in New Issue
Block a user