diff options
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 |
