Merge pull request #1529 from calmh/modeldata

Push model data instead of pull (fixes #1434)
This commit is contained in:
Audrius Butkevicius
2015-04-01 13:10:44 +01:00
28 changed files with 2372 additions and 387 deletions

File diff suppressed because one or more lines are too long

View File

@@ -31,6 +31,8 @@ const (
FolderRejected
ConfigSaved
DownloadProgress
FolderSummary
FolderCompletion
AllEvents = (1 << iota) - 1
)
@@ -67,6 +69,10 @@ func (t EventType) String() string {
return "ConfigSaved"
case DownloadProgress:
return "DownloadProgress"
case FolderSummary:
return "FolderSummary"
case FolderCompletion:
return "FolderCompletion"
default:
return "Unknown"
}