diff options
| author | Jeff Carr <[email protected]> | 2025-02-20 06:49:16 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-20 06:49:16 -0600 |
| commit | 5db0b57b311570f4fffe84427c795bdc32894e62 (patch) | |
| tree | 2f9f885c636baef8c29e562c18a586e1bd58ebfa | |
| parent | be3e625f1585c24d1b755efdbd79bacb932b5a29 (diff) | |
simple tablev0.22.86
| -rw-r--r-- | doGui.go | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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() }) |
