summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-20 06:49:16 -0600
committerJeff Carr <[email protected]>2025-02-20 06:49:16 -0600
commit5db0b57b311570f4fffe84427c795bdc32894e62 (patch)
tree2f9f885c636baef8c29e562c18a586e1bd58ebfa
parentbe3e625f1585c24d1b755efdbd79bacb932b5a29 (diff)
simple tablev0.22.86
-rw-r--r--doGui.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/doGui.go b/doGui.go
index ca62a32..8d52310 100644
--- a/doGui.go
+++ b/doGui.go
@@ -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()
})