Merge branch 'main' into subtle-ux-improvements

Resolved modify/delete conflict: cmd/bd/mail.go was deleted on main
(mail functionality moved to Gas Town), accepting deletion.
This commit is contained in:
Steve Yegge
2025-12-20 23:26:35 -08:00
39 changed files with 1216 additions and 1652 deletions

View File

@@ -39,9 +39,9 @@ func parseTimeFlag(s string) (time.Time, error) {
return time.Time{}, fmt.Errorf("unable to parse time %q (try formats: 2006-01-02, 2006-01-02T15:04:05, or RFC3339)", s)
}
// pinIndicator returns a pushpin emoji prefix for pinned issues (bd-18b)
// pinIndicator returns a pushpin emoji prefix for pinned issues (bd-18b, bd-7h5)
func pinIndicator(issue *types.Issue) string {
if issue.Status == types.StatusPinned {
if issue.Pinned {
return "📌 "
}
return ""