From e59f87c92c8df9465952ecd8c76478e4dc351608 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 27 Sep 2025 11:17:01 -0500 Subject: show devel branches --- humanForgedTable.go | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) (limited to 'humanForgedTable.go') diff --git a/humanForgedTable.go b/humanForgedTable.go index a4d19f5..96472da 100644 --- a/humanForgedTable.go +++ b/humanForgedTable.go @@ -17,30 +17,44 @@ func (f *Forge) makeForgedTable(pb *gitpb.Repos) *gitpb.ReposTable { var col *gitpb.RepoAnyFunc - col = t.AddMasterVersion() - col.Width = 7 - col = t.AddMasterBranchName() + col.Width = 3 + + col = t.AddMasterVersion() col.Width = 10 - col = t.AddStringFunc("blah", func(r *gitpb.Repo) string { + col = t.AddStringFunc("hash", func(r *gitpb.Repo) string { if r.Tags == nil { - return "tags=nil" + return "nil" } if r.Tags.Master == nil { - return "mtag=nil" + return "nil" } return r.Tags.Master.Hash }) - col.Width = 12 + col.Width = 6 + + col = t.AddDevelBranchName() + col.Width = 3 + + col = t.AddDevelVersion() + col.Width = 10 + + col = t.AddStringFunc("hash", func(r *gitpb.Repo) string { + if r.Tags == nil { + return "nil" + } + if r.Tags.Devel == nil { + return "nil" + } + return r.Tags.Devel.Hash + }) + col.Width = 6 col = t.AddNamespace() - col.Width = 32 + col.Width = 42 col = t.AddURL() - col.Width = 32 - - col = t.AddFullPath() col.Width = -1 return t } -- cgit v1.2.3