-
Notifications
You must be signed in to change notification settings - Fork 19
fix #69 : remove emojis from console output for professional appearance #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…pearance - Removed emojis from section headers, bullet points, and status messages - Updated display.go and createMsg.go to use plain text instead of emojis
fix DFanso#69 : remove emojis from console output for professional appearance
WalkthroughThis PR removes emoji/icons from CLI and display messages and revises display rendering to include per-category file lists with truncation for staged, unstaged, and untracked files. Section headers are updated to plain text. No exported APIs or control flow are changed. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant CLI as CLI (createMsg)
participant Display as Display Renderer
participant TTY as Terminal
User->>CLI: Generate commit message
CLI->>Display: ShowFileStatistics(staged, unstaged, untracked)
rect rgba(230, 240, 255, 0.6)
note right of Display: Render plain-text headers
Display->>Display: List staged (max 5) + “… and N more”
Display->>Display: List unstaged (max 3) + “… and N more”
Display->>Display: List untracked (max 3) + “… and N more”
end
Display->>TTY: Print summary + lists
CLI->>Display: ShowCommitMessage(message)
Display->>TTY: Print compact header + boxed message
CLI->>Display: ShowChangesPreview(stats?)
alt Stats available
Display->>TTY: Render 2-column info table
else No stats
Display->>TTY: Render no-stats message
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested labels
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
🔇 Additional comments (2)
Comment |
DFanso
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved 👾
Summary by CodeRabbit
New Features
Style