diff options
| author | Jeff Carr <[email protected]> | 2024-01-20 18:45:55 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-20 18:45:55 -0600 |
| commit | 70bea426235efd0b66502c8eb4c93efe0f4fe9a6 (patch) | |
| tree | cdc5875b565acfbdbdd8fdc492c231332c795a13 /structs.go | |
| parent | 5f382cd5e317b7d76ff231e086de316fe5d4b626 (diff) | |
cleaner repo list window
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -20,8 +20,8 @@ type repoType struct { allrepos map[*repo]string myGui *gui.Node - // #### autotypist window autotypistWindow *gadgets.BasicWindow + // #### autotypist Global Display Options autoHidePerfect *gui.Node @@ -39,8 +39,9 @@ type repoType struct { // this button will regenerate everyones go.mod & go.sum rerunGoMod *gui.Node - // #### autotypist Global Distructive & Reset Options - // #### autotypist window end + + // if checked, will stop trying to os.Exec() things after failure + stopOnErrors *gui.Node } var cmds *gui.Node @@ -61,11 +62,11 @@ type repo struct { // tagsDrop *gui.Node // list of all tags dirtyLabel *gui.Node // git state (dirty or not?) - masterName *gui.Node // the master branch name + // masterName *gui.Node // the master branch name masterVersion *gui.Node // the master branch version - develName *gui.Node // the devel branch name + // develName *gui.Node // the devel branch name develVersion *gui.Node // the devel branch version - userName *gui.Node // the jcarr branch name + // userName *gui.Node // the jcarr branch name userVersion *gui.Node // the jcarr branch version cButton *gui.Node // commit button |
