Showing detailed sync progress (fixes #476)

based on commit by Audrius Butkevicius <audrius.butkevicius@gmail.com>
This commit is contained in:
piobpl
2014-11-16 23:18:59 +00:00
parent b48d9a3a82
commit 90a31589bb
14 changed files with 570 additions and 188 deletions

View File

@@ -38,6 +38,7 @@ const (
StateChanged
FolderRejected
ConfigSaved
DownloadProgress
AllEvents = (1 << iota) - 1
)
@@ -70,6 +71,8 @@ func (t EventType) String() string {
return "FolderRejected"
case ConfigSaved:
return "ConfigSaved"
case DownloadProgress:
return "DownloadProgress"
default:
return "Unknown"
}