summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-20 16:11:00 -0600
committerJeff Carr <[email protected]>2024-02-20 16:11:00 -0600
commit8cc86a91cb6408fe1380b904c86162e931936a4f (patch)
tree9e7a5a1b724786a254f6f4249b5d7b3ab8017f60 /structs.go
parente927975dc890216c7172f711222cfdf283c0dd1c (diff)
guirelease finally does a single package again
after a week of recoding, fixing and improving the original code, it was able to find a primitive package (toolkits/debian) and update it correctly
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/structs.go b/structs.go
index 4aa57cf..a6b9e82 100644
--- a/structs.go
+++ b/structs.go
@@ -4,20 +4,20 @@ package main
import (
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
+ "go.wit.com/lib/gui/repolist"
)
-// the main window nodes
-// var reposwin *gadgets.BasicWindow
-var reposbox *gui.Node
-var reposgrid *gui.Node
-var reposgroup *gui.Node
-
var me *autoType
type autoType struct {
myGui *gui.Node
releaseReasonS string // = "gocui dropdown select"
+ release releaseStruct
+ reposbox *gui.Node
+ reposgrid *gui.Node
+ reposgroup *gui.Node
+ current *repolist.Repo
// guireleaser window
mainWindow *gui.Node