summaryrefslogtreecommitdiff
path: root/controlBox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-11 03:51:37 -0600
committerJeff Carr <[email protected]>2024-02-11 03:51:37 -0600
commit2df4dc135abf279511c9c44c2609453b8cd612c1 (patch)
treec384d77e2a5668abf352d1d9f0b07a360606dbfa /controlBox.go
parent3740ef98340655a2ec950eb4396095a423045d93 (diff)
next thing to do is generate the md5sums file
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'controlBox.go')
-rw-r--r--controlBox.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/controlBox.go b/controlBox.go
index 4d3cec4..b25e91e 100644
--- a/controlBox.go
+++ b/controlBox.go
@@ -12,6 +12,7 @@ type controlFile struct {
Package *gadgets.OneLiner
Source *gadgets.OneLiner
+ Version *gadgets.OneLiner
Maintainer *gadgets.OneLiner
Architecture *gadgets.BasicDropdown
InstallPath *gadgets.BasicCombobox
@@ -34,6 +35,9 @@ func newControl(parent *gui.Node) *controlFile {
c.Source = gadgets.NewOneLiner(c.grid, "Source")
c.grid.NextRow()
+ c.Version = gadgets.NewOneLiner(c.grid, "Version")
+ c.grid.NextRow()
+
c.Architecture = gadgets.NewBasicDropdown(c.grid, "Architecture")
c.Architecture.AddText("riscv")
c.Architecture.AddText("amd64")