From ab9a41ab8361c2cd4e06e0e172112a40af85636c Mon Sep 17 00:00:00 2001 From: Mplan Date: Tue, 16 Jun 2026 02:10:09 +0800 Subject: [PATCH] feat(brand): redesign logo with bold box-drawing ASCII art; bump v0.1.3 Replace the simple ASCII logo with a bold 'GAI' box-drawing font that renders cleanly in modern terminals. Fix version to v0.1.3 across all files (brand, cli, index, package.json). --- index.ts | 4 ++-- package.json | 2 +- src/brand.ts | 12 +++++++----- src/cli.ts | 2 +- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/index.ts b/index.ts index 3c153a9..7c1488b 100644 --- a/index.ts +++ b/index.ts @@ -1,7 +1,7 @@ #!/usr/bin/env bun // gai — AI-powered git commit and PR helper -// v0.2.0 +// v0.1.3 import { runCLI, registerCommands, formatHelp, type CommandDef, type ParsedArgs } from "./src/cli"; import { handleCommit } from "./src/commands/commit"; @@ -239,7 +239,7 @@ async function showMenu(): Promise { process.stdin.setRawMode(wasRaw === true); process.stdin.pause(); process.stdout.write("\x1b[2J\x1b[H"); - console.log("gai v0.2.0"); + console.log("gai v0.1.3"); return 0; } if (lower === "q") { diff --git a/package.json b/package.json index ed9aa5f..849414d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gai", - "version": "0.2.0", + "version": "0.1.3", "description": "AI-powered git helper — commit messages, PRs, code review, changelogs, and more", "module": "index.ts", "type": "module", diff --git a/src/brand.ts b/src/brand.ts index 56fb7b6..508fbbb 100644 --- a/src/brand.ts +++ b/src/brand.ts @@ -2,7 +2,7 @@ import { GREEN, CYAN, RESET } from "./terminal"; -const VERSION = "0.2.0"; +const VERSION = "0.1.3"; export function showBanner(): string { const G = GREEN(); @@ -11,10 +11,12 @@ export function showBanner(): string { return [ "", - `${G} ___ ___ _${R}`, - `${G} / _ \\ / _ | (_)${R}`, - `${G} | (_) | (_| | | |${R} ${C}AI-powered git helper${R}`, - `${G} \\___/ \\__,_|_|_|${R} ${C}v${VERSION}${R}`, + `${G} ██████╗ █████╗ ██╗${R}`, + `${G} ██╔════╝ ██╔══██╗██║${R}`, + `${G} ██║ ██╗ ███████║██║${R}`, + `${G} ██║ ██║ ██╔══██║██║${R}`, + `${G} ╚██████╝ ██║ ██║██║${R} ${C}AI-powered git helper${R}`, + `${G} ╚═════╝ ╚═╝ ╚═╝╚═╝${R} ${C}v${VERSION}${R}`, "", ].join("\n"); } diff --git a/src/cli.ts b/src/cli.ts index c29c668..1c10a3a 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -282,7 +282,7 @@ export async function runCLI(rawArgs: string[], commands: Map