summaryrefslogtreecommitdiff
path: root/controlBox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-19 05:30:56 -0600
committerJeff Carr <[email protected]>2024-11-19 05:30:56 -0600
commit4bf23793574fb57d749cf6a213195b195f957017 (patch)
tree7ed975b0cb30821c987f349aa17af9db1975e008 /controlBox.go
parent1c2246e709d8669faeb035df6a2470861239d48b (diff)
better control file value handlingv0.22.16
Diffstat (limited to 'controlBox.go')
-rw-r--r--controlBox.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/controlBox.go b/controlBox.go
index ba8d377..2f9f73f 100644
--- a/controlBox.go
+++ b/controlBox.go
@@ -14,6 +14,8 @@ type controlBox struct {
Source *gadgets.OneLiner
Version *gadgets.OneLiner
Maintainer *gadgets.OneLiner
+ Packager *gadgets.BasicEntry
+ URL *gadgets.BasicEntry
Architecture *gadgets.BasicDropdown
InstallPath *gadgets.BasicCombobox
Depends *gadgets.OneLiner
@@ -29,7 +31,7 @@ type controlBox struct {
dirtyL *gadgets.OneLiner
currentL *gadgets.OneLiner
buildDate *gadgets.OneLiner
- tagDate *gadgets.OneLiner
+ tagDate *gadgets.BasicEntry
status *repostatus.RepoStatus
}
@@ -72,6 +74,12 @@ func newControl(parent *gui.Node) *controlBox {
c.Maintainer = gadgets.NewOneLiner(c.grid, "Maintainer")
c.grid.NextRow()
+ c.Packager = gadgets.NewBasicEntry(c.grid, "Packager")
+ c.grid.NextRow()
+
+ c.URL = gadgets.NewBasicEntry(c.grid, "URL")
+ c.grid.NextRow()
+
c.Depends = gadgets.NewOneLiner(c.grid, "Depends")
c.grid.NextRow()