summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go16
1 files changed, 15 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index afa16af..7e163f3 100644
--- a/structs.go
+++ b/structs.go
@@ -18,12 +18,26 @@ var me repoType
type repoType struct {
script [][]string
- toMoveToBranch string // what the current working branch name is
+
+ // #### autotypist window
+ autotypistWindow *gadgets.BasicWindow
+ // #### autotypist Global Display Options
autoHidePerfect *gui.Node
+ // #### autotypist Global Build Options
+ // what to change all the branches to
+ // so, as a developer, you can move all the repos
+ // to the 'devel' branch and then test a devel branch build
+ // 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
+
+ // #### autotypist Global Distructive & Reset Options
+ // #### autotypist window end
}
var cmds *gui.Node