diff options
| author | Jeff Carr <[email protected]> | 2024-02-16 17:55:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-16 17:55:53 -0600 |
| commit | c253a30fb61cdc956e1cefb8296e34bf74ddf90c (patch) | |
| tree | fc4b962a2e768866619acce615deaa99fd56dde9 /structs.go | |
| parent | bdb761714361a3986834b8b50bb34cce45d01e4d (diff) | |
changing branches works
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -44,11 +44,6 @@ type autoType struct { // then switch back to your 'username' branch and do a build there toMoveToBranch string - // displays the preferred names used for the repo tree state - mainBranch *gadgets.BasicCombobox - develBranch *gadgets.BasicCombobox - userBranch *gadgets.BasicCombobox - // this button will regenerate everyones go.mod & go.sum rerunGoMod *gui.Node @@ -61,11 +56,9 @@ type autoType struct { // checkbox for --dry-run autoDryRun *gui.Node - // checkbox for intermittent scanning - scanEveryMinute *gui.Node - - // The current working directory - // autoWorkingPwd *gadgets.OneLiner + // checkbox to enable intermittent scanning + // if checked, it will check all your repos for changes + autoScanReposCB *gui.Node // what is being used as your home dir userHomePwd *gadgets.OneLiner @@ -82,6 +75,17 @@ type autoType struct { // has total dirty, total read-only // total patches, etc summary *patchSummary + + // shows how long the scan went for + duration *gui.Node + + // when switch to user or devel branches, autocreate them + autoCreateBranches *gui.Node + + // these hold the branches that the user can switch all + // the repositories to them + newBranch *gui.Node + setBranchB *gui.Node } type repo struct { |
