diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f6a27fc9..4d2d47529 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ Docs: https://docs.clawd.bot - CLI: move auth probe errors below the table to reduce wrapping. - CLI: prevent ANSI color bleed when table cells wrap. - CLI: explain when auth profiles are excluded by auth.order in probe details. +- CLI: drop the em dash when the banner tagline wraps to a second line. - Linux: include env-configured user bin roots in systemd PATH and align PATH audits. (#1512) Thanks @robbyczgw-cla. - TUI: render Gateway slash-command replies as system output (for example, `/context`). - Media: preserve PNG alpha when possible; fall back to JPEG when still over size cap. (#1491) Thanks @robbyczgw-cla. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index faa6fd684..388e0ca10 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -304,6 +304,8 @@ importers: extensions/imessage: {} + extensions/llm-task: {} + extensions/lobster: {} extensions/matrix: diff --git a/src/cli/banner.ts b/src/cli/banner.ts index d697be8e5..7a811f56e 100644 --- a/src/cli/banner.ts +++ b/src/cli/banner.ts @@ -51,14 +51,14 @@ export function formatCliBannerLine(version: string, options: BannerOptions = {} const line1 = `${theme.heading(title)} ${theme.info(version)} ${theme.muted( `(${commitLabel})`, )}`; - const line2 = `${" ".repeat(prefix.length)}${theme.muted("—")} ${theme.accentDim(tagline)}`; + const line2 = `${" ".repeat(prefix.length)}${theme.accentDim(tagline)}`; return `${line1}\n${line2}`; } if (fitsOnOneLine) { return plainFullLine; } const line1 = `${title} ${version} (${commitLabel})`; - const line2 = `${" ".repeat(prefix.length)}— ${tagline}`; + const line2 = `${" ".repeat(prefix.length)}${tagline}`; return `${line1}\n${line2}`; }