Significant progress. Performing cleanup now

This commit is contained in:
Ryan Ward
2026-05-11 14:31:02 -05:00
parent fe105e0369
commit 140da74f99
37 changed files with 843 additions and 1220 deletions
+9 -9
View File
@@ -75,10 +75,10 @@ const ITEM_VERTICAL_SPACING: f32 = 24.;
const BUILT_IN_TEXT_INPUT_MARGIN: f32 = 10.;
const SPACE_AFTER_TEXT_INPUT: f32 = ITEM_VERTICAL_SPACING - BUILT_IN_TEXT_INPUT_MARGIN;
const SSH_TMUX_WARPIFICATION_DESCRIPTION: &str = "The tmux ssh wrapper works in many situations where the default one does not, but may require you to hit a button to warpify. Takes effect in new tabs.";
const SSH_TMUX_WARPIFICATION_DESCRIPTION: &str = "The tmux ssh wrapper works in many situations where the default one does not, but may require you to hit a button to galaxify. Takes effect in new tabs.";
const SSH_EXTENSION_INSTALL_MODE_DESCRIPTION: &str =
"Controls the installation behavior for Warp's SSH extension when a remote host doesn't have it installed.";
"Controls the installation behavior for Galaxy's SSH extension when a remote host doesn't have it installed.";
/// This page lets users configure when they get asked to warpify a session. Some shell commands
/// are recognized by default. Users can add new shell commands, or prevent the default ones from
@@ -185,7 +185,7 @@ impl WarpifyPageView {
{
categories.push(
Category::new("SSH", vec![Box::new(SSHWidget::default())])
.with_subtitle("Warpify your interactive SSH sessions."),
.with_subtitle("Galaxify your interactive SSH sessions."),
);
}
PageType::new_categorized(categories, None)
@@ -532,7 +532,7 @@ impl TitleWidget {
fn render_top_of_page(&self, appearance: &Appearance, _app: &AppContext) -> Box<dyn Element> {
let warpify_description = vec![
FormattedTextFragment::plain_text(
"Configure whether Warp attempts to “Warpify” (add support for blocks, \
"Configure whether Galaxy attempts to \u{201c}Galaxify\u{201d} (add support for blocks, \
input modes, etc) certain shells. ",
),
FormattedTextFragment::hyperlink(
@@ -556,7 +556,7 @@ impl TitleWidget {
.finish();
Flex::column()
.with_child(render_page_title("Warpify", HEADER_FONT_SIZE, appearance))
.with_child(render_page_title("Galaxify", HEADER_FONT_SIZE, appearance))
.with_child(warpify_description)
.finish()
}
@@ -566,7 +566,7 @@ impl SettingsWidget for TitleWidget {
type View = WarpifyPageView;
fn search_terms(&self) -> &str {
"ssh subshell warpify session"
"ssh subshell galaxify session"
}
fn render(
@@ -628,7 +628,7 @@ impl SettingsWidget for SubshellsWidget {
type View = WarpifyPageView;
fn search_terms(&self) -> &str {
"warpify subshell"
"galaxify subshell"
}
fn render(
@@ -655,7 +655,7 @@ impl SettingsWidget for SSHWidget {
type View = WarpifyPageView;
fn search_terms(&self) -> &str {
"warpify ssh"
"galaxify ssh"
}
fn render(
@@ -682,7 +682,7 @@ impl SettingsWidget for SSHWidget {
&WarpifySettings::as_ref(app).enable_ssh_warpification,
move || {
render_body_item::<WarpifyPageAction>(
"Warpify SSH Sessions".into(),
"Galaxify SSH Sessions".into(),
None,
LocalOnlyIconState::for_setting(
EnableSshWarpification::storage_key(),