diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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 |
