summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-10 09:05:52 -0500
committerJeff Carr <[email protected]>2025-10-10 09:05:52 -0500
commitaf65616d4113375a2e79d1b8981e54980373414a (patch)
tree2fb58415f638fe12a0ff457d29f7f34810c326cb
parent637dfccde510b19cfe6babd02b37bc2cc32e73ab (diff)
show full Statev0.0.160v0.0.159
-rw-r--r--tableMissing.go11
1 files changed, 8 insertions, 3 deletions
diff --git a/tableMissing.go b/tableMissing.go
index fe729dd..0a13923 100644
--- a/tableMissing.go
+++ b/tableMissing.go
@@ -109,6 +109,10 @@ func (pb *Repos) MakeDefaultTB() *ReposTable {
col.Width = 12
col.Header.Name = "master"
+ col = t.AddLastTag()
+ col.Width = 12
+ col.Header.Name = "lasttag"
+
col = t.AddStringFunc("type", func(r *Repo) string {
return getRepoType(r)
})
@@ -124,10 +128,11 @@ func (pb *Repos) MakeDefaultTB() *ReposTable {
col.Width = 3
*/
+ col = t.AddURL()
+ col.Width = 20
+
col = t.AddState()
- col.Width = 12
+ col.Width = -1
- col = t.AddURL()
- col.Width = 42
return t
}