diff options
| author | Jeff Carr <[email protected]> | 2024-02-18 17:55:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-18 17:55:59 -0600 |
| commit | a7619389df4fc214e52e3db7c8336514bdcc82b0 (patch) | |
| tree | 9f6cbf2b2acbfc28327466bd143092207f70f3cd /globalDisplayOptions.go | |
| parent | 08c7765cc70bae20479ad0aa1897b6a4cfc3613a (diff) | |
attempting to fix guireleaser
Diffstat (limited to 'globalDisplayOptions.go')
| -rw-r--r-- | globalDisplayOptions.go | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/globalDisplayOptions.go b/globalDisplayOptions.go index 6bf9cdb..d29f35f 100644 --- a/globalDisplayOptions.go +++ b/globalDisplayOptions.go @@ -25,7 +25,7 @@ func showHideRepos() { } } if me.autoReleased.Checked() { - if repo.Status.GetGoSumStatus() == "RELEASED" { + if repo.GoState() == "RELEASED" { repo.Hide() continue } @@ -93,7 +93,7 @@ func globalDisplayOptions(box *gui.Node) { me.autoReleased.Custom = func() { if me.autoReleased.Checked() { for _, repo := range me.repos.View.AllRepos() { - if repo.Status.GetGoSumStatus() == "RELEASED" { + if repo.GoState() == "RELEASED" { repo.Hide() } } @@ -227,6 +227,14 @@ func globalDisplayOptions(box *gui.Node) { log.Info("All repos seem okay") }) + group1.NewButton("initialize all the repos", func() { + setRepoState() + }) + + group1.NewButton("scanForReady()", func() { + scanForReady() + }) + group2 := vbox.NewGroup("Debugger") group2.NewButton("logging Window", func() { logsettings.LogWindow() |
