diff options
Diffstat (limited to 'controlBox.go')
| -rw-r--r-- | controlBox.go | 10 |
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() |
