Galaxy v1.0.0: Remove warp-channel-config, rebrand bins/icons/settings, remove teams from Drive
- Remove warp-channel-config dependency; all bin targets hardcode ChannelConfig inline - Rename bin targets: galaxy-oss, galaxy-local, galaxy-stable, galaxy-dev, galaxy-preview - Rename config dir from .galaxy-ai to .galaxy - Add Galaxy app icon (512x512 rounded PNG + SVG logo) - Replace settings gear icon with Stars (sparkle) icon - Remove lightbulb/resource center button from header toolbar - Add Galaxy logo SVG to Settings > About page - Rename Galaxify -> Galaxyize across all UI strings - Remove Create Team / Join Team sections from Galaxy Drive - Fix missing => in OpenRichInput match arms - Clean up unused imports and warnings - Update Cargo.toml bundle metadata with Samsung branding - Re-enable code review, project explorer, global search in settings
This commit is contained in:
@@ -17327,37 +17327,11 @@ impl Workspace {
|
||||
);
|
||||
}
|
||||
|
||||
if FeatureFlag::AvatarInTabBar.is_enabled() {
|
||||
let resource_center_closed = !self.current_workspace_state.is_resource_center_open;
|
||||
if resource_center_closed && ContextFlag::WarpEssentials.is_enabled() {
|
||||
target.add_child(
|
||||
Container::new(self.render_resource_center_button(appearance, ctx))
|
||||
.with_margin_left(TAB_BAR_PADDING_LEFT)
|
||||
.finish(),
|
||||
);
|
||||
}
|
||||
|
||||
target.add_child(
|
||||
Container::new(self.render_settings_button(appearance))
|
||||
.with_margin_left(TAB_BAR_PADDING_LEFT)
|
||||
.finish(),
|
||||
);
|
||||
} else {
|
||||
let resource_center_closed = !self.current_workspace_state.is_resource_center_open;
|
||||
if resource_center_closed && ContextFlag::WarpEssentials.is_enabled() {
|
||||
target.add_child(
|
||||
Container::new(self.render_resource_center_button(appearance, ctx))
|
||||
.with_margin_left(TAB_BAR_PADDING_LEFT)
|
||||
.finish(),
|
||||
);
|
||||
}
|
||||
|
||||
target.add_child(
|
||||
Container::new(self.render_settings_button(appearance))
|
||||
.with_margin_left(TAB_BAR_PADDING_LEFT)
|
||||
.finish(),
|
||||
);
|
||||
}
|
||||
target.add_child(
|
||||
Container::new(self.render_settings_button(appearance))
|
||||
.with_margin_left(TAB_BAR_PADDING_LEFT)
|
||||
.finish(),
|
||||
);
|
||||
|
||||
if self.auth_state.is_anonymous_or_logged_out()
|
||||
&& !FeatureFlag::OpenWarpNewSettingsModes.is_enabled()
|
||||
@@ -17798,7 +17772,7 @@ impl Workspace {
|
||||
Align::new(
|
||||
self.render_tab_bar_icon_button(
|
||||
appearance,
|
||||
icons::Icon::Gear,
|
||||
icons::Icon::Stars,
|
||||
&self.mouse_states.settings_icon,
|
||||
WorkspaceAction::ShowSettings,
|
||||
"Settings".to_string(),
|
||||
|
||||
Reference in New Issue
Block a user