diff options
| author | Jeff Carr <[email protected]> | 2025-10-16 02:58:23 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-16 02:58:23 -0500 | 
| commit | 82bc641294462e34616235572da7599ef1183801 (patch) | |
| tree | e3e0029928aa9301f4d109d16df71f354f1855bb | |
| parent | 23ab76aa96facbc7eba3e6c5d09dd66bcc8e3d43 (diff) | |
need to show thisv0.1.41
| -rw-r--r-- | tablePackaging.go | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/tablePackaging.go b/tablePackaging.go index 496ae95..be52ff9 100644 --- a/tablePackaging.go +++ b/tablePackaging.go @@ -58,6 +58,11 @@ func makePackagingTable(pb *gitpb.Repos) *gitpb.ReposTable {  	})  	col.Width = 8 +	col = tablePB.AddStringFunc("cur .deb Version", func(r *gitpb.Repo) string { +		return "find this" +	}) +	col.Width = 16 +  	col = tablePB.AddStringFunc("new .deb Version", func(r *gitpb.Repo) string {  		return me.forge.GetPackageVersion(r)  	})  | 
