From 2639d748148d57d94c4711c14459401e6ec76d90 Mon Sep 17 00:00:00 2001 From: gemini-cli-robot Date: Thu, 13 Nov 2025 08:57:49 -0800 Subject: [PATCH] fix(patch): cherry-pick 102905b to release/v0.15.0-preview.3-pr-12991 to patch version v0.15.0-preview.3 and create version 0.15.0-preview.4 (#13008) Co-authored-by: N. Taylor Mullen --- packages/cli/src/ui/components/AsciiArt.ts | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/packages/cli/src/ui/components/AsciiArt.ts b/packages/cli/src/ui/components/AsciiArt.ts index 6ca17d51a1..e1cb5e058b 100644 --- a/packages/cli/src/ui/components/AsciiArt.ts +++ b/packages/cli/src/ui/components/AsciiArt.ts @@ -4,10 +4,6 @@ * SPDX-License-Identifier: Apache-2.0 */ -function flipAsciiArt(art: string): string { - return art.split('\n').reverse().join('\n'); -} - export const shortAsciiLogo = ` █████████ ██████████ ██████ ██████ █████ ██████ █████ █████ ███░░░░░███░░███░░░░░█░░██████ ██████ ░░███ ░░██████ ░░███ ░░███ @@ -41,7 +37,7 @@ export const tinyAsciiLogo = ` ░░░ ░░░░░░░░░ `; -const rawShortAsciiLogoIde = ` +export const shortAsciiLogoIde = ` ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -54,9 +50,7 @@ const rawShortAsciiLogoIde = ` █████████ ██████████ ███ ███ █████ ███ █████ █████ `; -export const shortAsciiLogoIde = flipAsciiArt(rawShortAsciiLogoIde); - -const rawLongAsciiLogoIde = ` +export const longAsciiLogoIde = ` ░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -69,9 +63,7 @@ const rawLongAsciiLogoIde = ` ███ █████████ ██████████ ███ ███ █████ ███ █████ █████ `; -export const longAsciiLogoIde = flipAsciiArt(rawLongAsciiLogoIde); - -const rawTinyAsciiLogoIde = ` +export const tinyAsciiLogoIde = ` ░░░ ░░░░░░░░░ ░░░ ░░░ ░░░ ░░░ ░░░ @@ -83,5 +75,3 @@ const rawTinyAsciiLogoIde = ` ███ ███ ███ ███ █████████ `; - -export const tinyAsciiLogoIde = flipAsciiArt(rawTinyAsciiLogoIde);