Synced from monorepo
Synced from monorepo Changes: - Workspace server: surface preview-proxy metrics through the hub metric pump - Shell: reclaim a session’s retained state in one entry - Shell: reclaim a session’s resident state in one entry - Pager: withhold key event types from Alacritty builds that double keys - Tools: cancel a session’s subagents when it closes - Pager: keep the whole plan in scrollback and separate reasoning from output in minimal mode - Pager: probe terminal version over DA2 and include it with feedback - SuperGrok Plus: identity, CLI, and analytics tier surfaces - Shell: inherit the session process scope into subagents - Pager: build @-file-search matcher lazily on first use - Tools: fix description and output contradictions in tool definitions - Workspace: degrade @-file-search instead of aborting on thread exhaustion - Tools: reap a session’s LSP servers when it closes - Tools: fix contradictions and defects in tool descriptions, schemas, and harness pools - MCP: reap stdio MCP children on session close - Shell: reuse spawn-time skill discovery for session telemetry - Tools: stop leaking shell-wrapper positional params into sourced scripts (fixes activate_conda under persistent/static shell) - Shell: self-heal corrupt session-search SQLite cache - Workspace: cap workspace-server tokio workers on many-core hosts - Shell: reap a session’s child processes when it closes - Crash handler: capture SIGABRT so panic-aborts leave crash reports - CLI chat proxy: team-scoped Grok Code managed-config admin routes - MCP: add CLI enable/disable for MCP servers - Shell: cap tokio worker threads for startup thread demand - Workspace: harden git_commit and add git_sync_base operation - Circuit breaker: add feature-gated gRPC retry policy Source-Revision: 2a818575225183d8ca915f5632a09b8067b5156a
This commit is contained in:
parent
02d9359435
commit
5da6962e4a
192 changed files with 10337 additions and 3421 deletions
|
|
@ -138,28 +138,38 @@ impl AgentView {
|
|||
}
|
||||
if self
|
||||
.privacy_banner
|
||||
.hit_accept
|
||||
.hit_opt_in
|
||||
.contains(mouse.column, mouse.row)
|
||||
&& !self.pos_occluded(mouse.column, mouse.row)
|
||||
{
|
||||
return InputOutcome::Action(Action::PrivacyBannerAccept);
|
||||
return InputOutcome::Action(Action::PrivacyBannerOptIn);
|
||||
}
|
||||
if self
|
||||
.privacy_banner
|
||||
.hit_customize
|
||||
.hit_opt_out
|
||||
.contains(mouse.column, mouse.row)
|
||||
&& !self.pos_occluded(mouse.column, mouse.row)
|
||||
{
|
||||
return InputOutcome::Action(Action::PrivacyBannerCustomize);
|
||||
return InputOutcome::Action(Action::PrivacyBannerOptOut);
|
||||
}
|
||||
if self
|
||||
.privacy_banner
|
||||
.hit_legal
|
||||
.hit_terms
|
||||
.contains(mouse.column, mouse.row)
|
||||
&& !self.pos_occluded(mouse.column, mouse.row)
|
||||
{
|
||||
return InputOutcome::Action(Action::OpenUrl(
|
||||
crate::views::privacy_banner::PRIVACY_BANNER_LEGAL_URL.to_string(),
|
||||
crate::views::privacy_banner::PRIVACY_BANNER_TERMS_URL.to_string(),
|
||||
));
|
||||
}
|
||||
if self
|
||||
.privacy_banner
|
||||
.hit_policy
|
||||
.contains(mouse.column, mouse.row)
|
||||
&& !self.pos_occluded(mouse.column, mouse.row)
|
||||
{
|
||||
return InputOutcome::Action(Action::OpenUrl(
|
||||
crate::views::privacy_banner::PRIVACY_BANNER_POLICY_URL.to_string(),
|
||||
));
|
||||
}
|
||||
if self.hit_watching_cue.contains(mouse.column, mouse.row)
|
||||
|
|
@ -1099,15 +1109,19 @@ impl AgentView {
|
|||
.update_hover(mouse.column, mouse.row);
|
||||
changed |= self
|
||||
.privacy_banner
|
||||
.hit_accept
|
||||
.hit_opt_in
|
||||
.update_hover(mouse.column, mouse.row);
|
||||
changed |= self
|
||||
.privacy_banner
|
||||
.hit_customize
|
||||
.hit_opt_out
|
||||
.update_hover(mouse.column, mouse.row);
|
||||
changed |= self
|
||||
.privacy_banner
|
||||
.hit_legal
|
||||
.hit_terms
|
||||
.update_hover(mouse.column, mouse.row);
|
||||
changed |= self
|
||||
.privacy_banner
|
||||
.hit_policy
|
||||
.update_hover(mouse.column, mouse.row);
|
||||
changed |= self
|
||||
.plugin_cta
|
||||
|
|
|
|||
Loading…
Reference in a new issue