Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | ALL: Fix debug, warning and error usage | Alexander Tkachev | |
Added prefixes, used debug(9). | |||
2016-08-24 | CLOUD: JANITORIAL: Fix code formatting | Eugene Sandulenko | |
2016-08-24 | CLOUD: Fix FolderDownloadRequest TODO | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix code formatting | Peter Bozsó | |
2016-08-24 | JANITORIAL: Remove spaces at the end of the line | Alexander Tkachev | |
I knew there were some, but I wanted to fix them once, instead of doing it all the time. | |||
2016-08-24 | CLOUD: Do some refactoring/cleanup | Alexander Tkachev | |
Nothing really major. | |||
2016-08-24 | CLOUD: Calculate FolderDownload download speed | Alexander Tkachev | |
2016-08-24 | CLOUD: Update FolderDownloadRequest::getProgress() | Alexander Tkachev | |
It now is based on downloaded size, not number of files. | |||
2016-08-24 | CLOUD: Update FolderDownloadRequest | Alexander Tkachev | |
It now keeps track of downloaded bytes. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest | Alexander Tkachev | |
It now sends kDownloadEndedCmd on success without waiting to be destructed. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now it doesn't stop on 100 % on last file and it ignores the directories, so it doesn't "jump" suddenly as there are no directories to skip. | |||
2016-08-24 | CLOUD: Rename _files to _pendingFiles in FolderDownloadRequest | Peter Bozsó | |
2016-08-24 | CLOUD: Upgrade FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now NetworkReadStream, which is used in DownloadRequest, which is used in FolderDownloadRequest, returns progress information provided by libcurl. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest | Alexander Tkachev | |
Actually, I'm not completely sure, but this fixed the segfault when user closes ScummVM during the download. Even if that's not a fix, these lines must be in this method anyway. | |||
2016-08-24 | GUI: Upgrade DownloadDialog | Alexander Tkachev | |
It now shows the remote and local directories and a progress bar. Storage now shows OSD messages on download success and failure. | |||
2016-08-24 | CLOUD: Add FolderDownload-related methods in Storage | Alexander Tkachev | |
CloudManager's shortcuts are added too. The idea is to keep FolderDownload request within Storage, and provide necessary means to access it. The download is started and cancelled through the DownloadDialog. | |||
2016-08-24 | CLOUD: Fix finishSuccess() warning | Alexander Tkachev | |
2016-08-24 | CLOUD: Update Requests to use StorageFile::id() | Alexander Tkachev | |
Only two places to update, as others still require id resolving. | |||
2016-08-24 | CLOUD: Refactor Request | Alexander Tkachev | |
Added ErrorResponse and ErrorCallback. Each Request now has an ErrorCallback, which should be called instead of usual callback in case of failure. | |||
2016-08-24 | CLOUD: Add ListDirectoryStatus struct | Alexander Tkachev | |
It contains flags to indicate whether Request was interrupted or failed, so dependent Requests may see that list is incomplete. | |||
2016-08-24 | Remove some unnecessary blank lines | Peter Bozsó | |
2016-08-24 | Fix comment formatting | Peter Bozsó | |
2016-08-24 | CLOUD: Fix Requests destructors | Alexander Tkachev | |
I forgot to delete callbacks! | |||
2016-08-24 | CLOUD: Add FolderDownloadRequest | Alexander Tkachev | |
Uses Storage's listDirectory() and download() methods to download contents. |