v3.42.11: Replace all Unicode emojis with ASCII text
- Replace all emoji characters with ASCII equivalents throughout codebase - Replace Unicode box-drawing characters (═║╔╗╚╝━─) with ASCII (+|-=) - Replace checkmarks (✓✗) with [OK]/[FAIL] markers - 59 files updated, 741 lines changed - Improves terminal compatibility and reduces visual noise
This commit is contained in:
@@ -361,7 +361,7 @@ func (tm *TimelineManager) FormatTimelineTree(history *TimelineHistory) string {
|
||||
|
||||
var sb strings.Builder
|
||||
sb.WriteString("Timeline Branching Structure:\n")
|
||||
sb.WriteString("═════════════════════════════\n\n")
|
||||
sb.WriteString("=============================\n\n")
|
||||
|
||||
// Build tree recursively
|
||||
tm.formatTimelineNode(&sb, history, 1, 0, "")
|
||||
@@ -378,9 +378,9 @@ func (tm *TimelineManager) formatTimelineNode(sb *strings.Builder, history *Time
|
||||
|
||||
// Format current node
|
||||
indent := strings.Repeat(" ", depth)
|
||||
marker := "├─"
|
||||
marker := "+-"
|
||||
if depth == 0 {
|
||||
marker = "●"
|
||||
marker = "*"
|
||||
}
|
||||
|
||||
sb.WriteString(fmt.Sprintf("%s%s Timeline %d", indent, marker, tl.TimelineID))
|
||||
|
||||
Reference in New Issue
Block a user