2744285508
- Add comprehensive documentation suite in docs/ directory - ARCHITECTURE.md: System design and technical architecture - CONTRIBUTING.md: Development guidelines and contribution process - installation.md: Detailed installation instructions - usage.md: Command-line options and game interface guide - supported-languages.md: Language support status and roadmap - docs/images/README.md: Banner generation instructions - Create professional banner image with GitType ASCII logo - Generate 1200x630px OGP-compliant PNG banner - Include SVG version for scalability - Use Ubuntu Mono font with proper spacing and readability - Add shell script for banner regeneration - Update main README.md with modern design - Add banner image at top - Restructure content with better sections and emojis - Add catchphrase: "Show your AI who's boss: just you, your keyboard, and your coding sins" - Include comprehensive "Why GitType?" section with humor - Link to all documentation files - Add MIT LICENSE file - Update language support roadmap - Prioritize Swift, Kotlin, Ruby as high priority - Add more languages with realistic timelines 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
905 B
Bash
Executable File
25 lines
905 B
Bash
Executable File
#!/bin/bash
|
|
# GitType Banner Generator Script
|
|
# This script generates the GitType banner image using freeze
|
|
|
|
export FORCE_COLOR=1
|
|
oh-my-logo "GitType" purple
|
|
echo
|
|
echo '"Show your AI who'\''s boss: just you, your keyboard,'
|
|
echo ' and your coding sins"'
|
|
echo
|
|
echo "────────────────────────────────────────────────"
|
|
echo
|
|
echo "Turn your own source code into typing challenges"
|
|
echo
|
|
echo "[*] Addictive gameplay [>] Real-time feedback [+] Track your progress"
|
|
echo
|
|
echo "$ brew install gittype"
|
|
echo "$ gittype"
|
|
echo
|
|
echo "github.com/unhappychoice/gittype"
|
|
|
|
# To regenerate the banner:
|
|
# chmod +x docs/images/banner-source.sh
|
|
# freeze --execute "docs/images/banner-source.sh" -o docs/images/gittype-banner.svg \
|
|
# --theme "Dracula" --window --background="#1e1e2e" --margin 20 --padding 20 --border.radius 15 |