2024-01-09 15:34:53 -06:00
|
|
|
package repostatus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go.wit.com/gui/gui"
|
|
|
|
"go.wit.com/gui/gadgets"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RepoStatus struct {
|
|
|
|
ready bool
|
|
|
|
hidden bool
|
|
|
|
changed bool
|
|
|
|
|
|
|
|
repopath string
|
|
|
|
lasttagrev string
|
|
|
|
tags map[string]string
|
|
|
|
|
|
|
|
parent *gui.Node
|
|
|
|
|
|
|
|
window *gadgets.BasicWindow
|
|
|
|
group *gui.Node
|
|
|
|
grid *gui.Node
|
|
|
|
|
|
|
|
// status *gadgets.OneLiner
|
|
|
|
dirtyLabel *gadgets.OneLiner
|
|
|
|
path *gadgets.OneLiner
|
|
|
|
|
|
|
|
currentBranch *gadgets.OneLiner
|
|
|
|
currentVersion *gadgets.OneLiner
|
|
|
|
tagsDrop *gui.Node
|
|
|
|
|
|
|
|
lasttag *gadgets.OneLiner
|
|
|
|
masterBranch *gadgets.OneLiner
|
|
|
|
develBranch *gadgets.OneLiner
|
|
|
|
jcarrBranch *gadgets.OneLiner
|
|
|
|
|
2024-01-09 19:22:16 -06:00
|
|
|
develMerge *gui.Node
|
|
|
|
releaseVersion *gui.Node
|
|
|
|
|
2024-01-09 15:34:53 -06:00
|
|
|
speed *gadgets.OneLiner
|
|
|
|
speedActual *gadgets.OneLiner
|
|
|
|
}
|