summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go24
1 files changed, 14 insertions, 10 deletions
diff --git a/structs.go b/structs.go
index d831a16..1f24534 100644
--- a/structs.go
+++ b/structs.go
@@ -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 {