From 2df4dc135abf279511c9c44c2609453b8cd612c1 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 11 Feb 2024 03:51:37 -0600 Subject: next thing to do is generate the md5sums file Signed-off-by: Jeff Carr --- controlBox.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'controlBox.go') 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") -- cgit v1.2.3