summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-07-07 19:58:34 -0500
committerJeff Carr <[email protected]>2025-07-07 19:58:34 -0500
commitd3938adf63247cb7393be427f7f5f67d90b4c3b2 (patch)
tree346440760fa7d702f7fcb014af50260e1df6bd02 /structs.go
parent08b7f2406ccfc5c249c5fb59e9229e37d40fdb4d (diff)
deprecate the "forge mode" concept
unfortunately, this was a bad idea. boo I wasted lots of time on this. live and learn
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/structs.go b/structs.go
index a6f4cc7..012ab28 100644
--- a/structs.go
+++ b/structs.go
@@ -37,17 +37,9 @@ type mainType struct {
gitAuthor *gadgets.OneLiner // ENV GIT_AUTHOR NAME and EMAIL
// these hold the branches that the user can switch all the repositories to them
- newBranch *gui.Node // deprecate?
- setBranchB *gui.Node // deprecate?
reposWinB *gui.Node // button that opens the repos window
repoAllB *gui.Node // "all" repos button
repoDirtyB *gui.Node // "dirty" repos button
repoDevelMergeB *gui.Node // "merge to devel" repos button
repoWritableB *gui.Node // "what repos are writable" repos button
-
- // deprecate these
- forgeMode *gui.Node // is the user in 'master', 'devel' or 'user' branches
- argvCheckoutUser bool // shared between the GUI and the command line tools
- argvCheckoutDevel bool // shared between the GUI and the command line tools
- argvCheckoutMaster bool // shared between the GUI and the command line tools
}