simple table

This commit is contained in:
Jeff Carr 2025-02-20 06:49:16 -06:00
parent be3e625f15
commit 5db0b57b31
1 changed files with 19 additions and 0 deletions

View File

@ -222,6 +222,25 @@ func drawWindow(win *gadgets.BasicWindow) {
foundWin.Show()
})
grid.NewButton("find merge to devel", func() {
findMergeToDevel()
t := me.found.NewTable("testFind2")
t.AddStringFunc("repo", func(r *gitpb.Repo) string {
return r.GetGoPath()
})
t.AddMasterVersion()
t.AddState()
t.ShowTable()
/*
t.AddStringFunc("zood", func(m *zoopb.Machine) string {
return findVersion(m, "zood")
})
t.AddTimeFunc("age", func(m *zoopb.Machine) time.Time {
return m.Laststamp.AsTime()
})
*/
})
grid.NewButton("forge ConfigSave()", func() {
me.forge.ConfigSave()
})