diff options
| author | Jeff Carr <[email protected]> | 2024-01-15 08:11:08 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-15 08:11:08 -0600 |
| commit | e240e4149f92ada886884f542522d9b739df450d (patch) | |
| tree | 2b48ba018463ba5d4163d57bb5006843179023e5 /structs.go | |
| parent | 74502ed5fbedbf47c69d2bbedb6d96fe369fa129 (diff) | |
remove perfect branches works
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -13,6 +13,9 @@ var reposwin *gadgets.BasicWindow var reposbox *gui.Node var reposgrid *gui.Node var reposgroup *gui.Node +var cmds *gui.Node +var script [][]string +var doit *gui.Node var allrepos []*repo @@ -20,11 +23,11 @@ type repo struct { path string lasttagrev string lasttag string - tags []string + // tags []string pLabel *gui.Node // path label - bLabel *gui.Node // branch label - lastLabel *gui.Node // last tagged version label + // bLabel *gui.Node // branch label + lastTag *gui.Node // last tagged version label vLabel *gui.Node // version label // tagsDrop *gui.Node // list of all tags dirtyLabel *gui.Node // git state (dirty or not?) |
