feat(update checks): started work on update checks

This commit is contained in:
Torkel Ödegaard
2016-04-11 12:21:48 -04:00
parent 8047f902a5
commit b4a8c227cc
8 changed files with 142 additions and 7 deletions
+8 -6
View File
@@ -18,12 +18,14 @@ type PluginSetting struct {
}
type PluginListItem struct {
Name string `json:"name"`
Type string `json:"type"`
Id string `json:"id"`
Enabled bool `json:"enabled"`
Pinned bool `json:"pinned"`
Info *plugins.PluginInfo `json:"info"`
Name string `json:"name"`
Type string `json:"type"`
Id string `json:"id"`
Enabled bool `json:"enabled"`
Pinned bool `json:"pinned"`
Info *plugins.PluginInfo `json:"info"`
LastesVersion string `json:"latestVersion"`
HasUpdate bool `json:"hasUpdate"`
}
type PluginList []PluginListItem