Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-10 | CLOUD: Fix Remaining Shadowing Compiler Warnings. | D G Turner | |
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | CLOUD: Fix warnings | Eugene Sandulenko | |
2016-08-24 | CLOUD: Update GoogleDriveStorage and StorageFile | Alexander Tkachev | |
Because of the Google Drive StorageFile now contains yet another field, `id`. For other storages `id` == `path`, and thus all common Requests (such as SavesSyncRequest, DownloadFolderRequest, etc) must be using id() instead of path(). That way these Requests won't cause id resolving which could be quite slow (when you call it for all files in the folder, for example). | |||
2016-08-24 | CLOUD: Add GoogleDriveResolveIdRequest | Alexander Tkachev | |
GoogleDriveResolveIdRequest gets a lowercase path and searches for the specified file's id. To do that it lists path's subdirectories one by one with GoogleDriveListDirectoryByIdRequest. GoogleDriveListDirectoryByIdRequest gets a Google Drive id and lists that directory (not recursively). | |||
2016-08-24 | Fix comment formatting | Peter Bozsó | |
2016-08-24 | CLOUD: Add FolderDownloadRequest | Alexander Tkachev | |
Uses Storage's listDirectory() and download() methods to download contents. | |||
2016-08-24 | CLOUD: Add Callback typedefs | Alexander Tkachev | |
And do some minor cleanup work. |