@@ -126,6 +126,7 @@ func InstalledIcons() (ret []*Icon) {
}
icon := &Icon{}
+ icon.Installed = true
icon.Name = iconConf["name"].(string)
icon.Author = iconConf["author"].(string)
icon.URL = iconConf["url"].(string)
@@ -126,6 +126,7 @@ func InstalledTemplates() (ret []*Template) {
template := &Template{}
+ template.Installed = true
template.Name = templateConf["name"].(string)
template.Author = templateConf["author"].(string)
template.URL = templateConf["url"].(string)
@@ -128,6 +128,7 @@ func InstalledThemes() (ret []*Theme) {
theme := &Theme{}
+ theme.Installed = true
theme.Name = themeConf["name"].(string)
theme.Author = themeConf["author"].(string)
theme.URL = themeConf["url"].(string)
@@ -124,6 +124,7 @@ func InstalledWidgets() (ret []*Widget) {
widget := &Widget{}
+ widget.Installed = true
widget.Name = widgetConf["name"].(string)
widget.Author = widgetConf["author"].(string)
widget.URL = widgetConf["url"].(string)