mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 07:30:52 -07:00
feat: normalize verticality (#12991)
This commit is contained in:
@@ -4,10 +4,6 @@
|
|||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function flipAsciiArt(art: string): string {
|
|
||||||
return art.split('\n').reverse().join('\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
export const shortAsciiLogo = `
|
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);
|
export const longAsciiLogoIde = `
|
||||||
|
|
||||||
const rawLongAsciiLogoIde = `
|
|
||||||
░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░
|
░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░
|
||||||
░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░
|
░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░
|
||||||
░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░
|
░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░
|
||||||
@@ -69,9 +63,7 @@ const rawLongAsciiLogoIde = `
|
|||||||
███ █████████ ██████████ ███ ███ █████ ███ █████ █████
|
███ █████████ ██████████ ███ ███ █████ ███ █████ █████
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const longAsciiLogoIde = flipAsciiArt(rawLongAsciiLogoIde);
|
export const tinyAsciiLogoIde = `
|
||||||
|
|
||||||
const rawTinyAsciiLogoIde = `
|
|
||||||
░░░ ░░░░░░░░░
|
░░░ ░░░░░░░░░
|
||||||
░░░ ░░░ ░░░
|
░░░ ░░░ ░░░
|
||||||
░░░ ░░░
|
░░░ ░░░
|
||||||
@@ -83,5 +75,3 @@ const rawTinyAsciiLogoIde = `
|
|||||||
███ ███ ███
|
███ ███ ███
|
||||||
███ █████████
|
███ █████████
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const tinyAsciiLogoIde = flipAsciiArt(rawTinyAsciiLogoIde);
|
|
||||||
|
|||||||
Reference in New Issue
Block a user