Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-03 | LINUXMOTO: Fix OSD performance when OSD is not drawn | Eugene Sandulenko | |
2016-09-03 | GPH: Fix OSD performance when OSD is not drawn | Eugene Sandulenko | |
2016-09-03 | DINGUX: Fix OSD performance when OSD is not drawn | Eugene Sandulenko | |
2016-09-03 | JANITORIAL: Remove trailing whitespaces | Eugene Sandulenko | |
2016-09-03 | SDL: Optimize OSD drawing | Eugene Sandulenko | |
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-09-03 | LINUXMOTO: Adapt to OSD changes | Eugene Sandulenko | |
2016-09-03 | GPH: Fix formatting | Eugene Sandulenko | |
2016-09-03 | DINGUX: Adapt to new OSD changes | Eugene Sandulenko | |
2016-09-03 | BACKENDS: Remove extra line returns in warnings | Bastien Bouclet | |
2016-09-02 | GPH: Attempt to fix OSD | Eugene Sandulenko | |
2016-08-31 | PS2: Fix Ps2SaveFileManager | Alexander Tkachev | |
* updateSavefilesList() stub; * openRawFile(); * Common::OutSaveFile in openForLoading(). | |||
2016-08-31 | DC: Add RoninCDFileNode::create() | Alexander Tkachev | |
Returns false, as we don't create files/directories on CD. | |||
2016-08-31 | DC: Fix VMSaveManager | Alexander Tkachev | |
* updateSavefilesList() stub; * openRawFile(); * Common::OutSaveFile in openForSaving(); * OutVMSave derived from WriteStream. | |||
2016-08-31 | DS, N64: Fix openForSaving() | Alexander Tkachev | |
Fails to build because OutSaveFile's name should've been qualified. | |||
2016-08-31 | DS, N64: Fix SaveFileManagers | Alexander Tkachev | |
Added updateSavefilesList() and openRawFile() stubs. It should build fine now, I guess. | |||
2016-08-31 | N64: Fix OutSaveFile error | Alexander Tkachev | |
OutSaveFile was just a typedef of WriteStream once, but now it's not. These Out*Save classes are then wrapped with OutSaveFile, so it should be OK to derive them from WriteStream instead of OutSaveFile. | |||
2016-08-30 | OSX: Implement clipboard support | Thierry Crozat | |
There was already an implementation using SDL2 in the SDL backend, but this way we have it available also when using the SDL 1. | |||
2016-08-30 | BACKENDS: Rename variable shadowing function | Willem Jan Palenstijn | |
2016-08-30 | SDL: Fix const cast | Willem Jan Palenstijn | |
2016-08-30 | CLOUD: Fix Windows cross-compilation | Eugene Sandulenko | |
2016-08-30 | BACKENDS: Use open instead of creat to create files | Bastien Bouclet | |
creat is not defined on the PS3. Also close the file descriptor. | |||
2016-08-30 | Merge branch 'master' of https://github.com/scummvm/scummvm | Alexander Tkachev | |
2016-08-30 | CLOUD: Fix Webserver's usage of DefaultSaveFileManager | Alexander Tkachev | |
concatWithSavesPath() is only defined when curl is used, but was used in Webserver even when curl is unavailable. | |||
2016-08-30 | Merge pull request #433 from klusark/assets | Eugene Sandulenko | |
ANDROID: Update the asset archive code to use AAssets | |||
2016-08-30 | Merge pull request #788 from Tkachov/cloud | Eugene Sandulenko | |
ALL: Add Cloud storage support | |||
2016-08-29 | ANDROIDSDL: Fix menu button | Eugene Sandulenko | |
2016-08-24 | COMMON: Fix WriteStream::pos() once again | Alexander Tkachev | |
MemoryReadWriteStream now returns int32, not uint32. It actually doesn't ever return -1 to indicate that an error occured, so uint32 was a better choice, but that's what is used in WriteStream base class now. That method is abstract, so that's also why OutSaveFile had to override it. | |||
2016-08-24 | CLOUD: Remove unused includes | Peter Bozsó | |
2016-08-24 | CLOUD: Update LocalWebserver | Alexander Tkachev | |
Reader now reads headers into stream, and some checks are added there and in UploadFileClientHandler, so if headers are too long, they are treated as bad request. | |||
2016-08-24 | CLOUD: Use forbidden combinations | Alexander Tkachev | |
I accidentally tried "folder../" instead "folder/../" and understood that I made "folder../" forbidden too, though it's a valid folder name. | |||
2016-08-24 | CLOUD: Update handlers | Alexander Tkachev | |
Now if there is no "rootpath" specified, it's not even listed by FilesPageHandler and ListAjaxHandler. And, of course, not available to use anywhere else. | |||
2016-08-24 | CLOUD: Handle paths in marked places | Alexander Tkachev | |
Paths containing '../' are forbidden to use in Files Manager. There is also a special inner black list of paths which are not used and a check that specified path is under "savepath" or "rootpath" (from "cloud" domain). | |||
2016-08-24 | CLOUD: Mark places where path handling is needed | Alexander Tkachev | |
2016-08-24 | CLOUD: Add "minimal mode" in LocalWebserver | Alexander Tkachev | |
StorageWizardDialog now runs LocalWebserver in "minimal mode" for security reasons. In this mode server uses only those handlers which state to support it. There are two handlers which support minimal mode: IndexPageHandler (which handles `code` requests needed by StorageWizardDialog) and ResourceHandler (which provides inner resources like `style.css` or `logo.png` from `wwwroot.zip` archive). | |||
2016-08-24 | CLOUD: Use overriden handle() instead of ClientHandlerCallback in page handlers | Peter Bozsó | |
Using a dedicated callback object for this was an unnecessary overhead. | |||
2016-08-24 | CLOUD: Fix UploadFileClientHandler | Alexander Tkachev | |
It now redirects user on success not only when file was the last field in the content, but also when it was uploaded already and Handler worked further to search for more files. | |||
2016-08-24 | CLOUD: Add custom User-Agent | Alexander Tkachev | |
Full version is used like in Eugene's Google Analytics stub. Plus, on PS3 that string contains "PlayStation", and that would be cool to know that ScummVM+libcurl+PS3 work together. | |||
2016-08-24 | CLOUD: Fix warnings | Eugene Sandulenko | |
2016-08-24 | CLOUD: Move determineMimeType to ResourceHandler | Peter Bozsó | |
2016-08-24 | CLOUD: Remove unused removePathHandler(), make addPathHandler() private | Peter Bozsó | |
2016-08-24 | CLOUD: Fix Requests | Alexander Tkachev | |
Remove unnecessary JSON warnings, fix a few places. | |||
2016-08-24 | CLOUD: Update SavesSyncRequest | Alexander Tkachev | |
Add JSON checks in the callback. | |||
2016-08-24 | CLOUD: Update OneDriveUploadRequest | Alexander Tkachev | |
More JSON checks. | |||
2016-08-24 | CLOUD: Update OneDrive | Alexander Tkachev | |
Added JSON checks. New jsonContainsObject() method added to CurlJsonRequest. | |||
2016-08-24 | CLOUD: Update GoogleDriveUploadRequest | Alexander Tkachev | |
JSON checks in callback. | |||
2016-08-24 | CLOUD: Update GoogleDriveStorage | Alexander Tkachev | |
More JSON checks in callbacks. | |||
2016-08-24 | CLOUD: Update DropboxUploadRequest | Alexander Tkachev | |
JSON checks. | |||
2016-08-24 | CLOUD: Update DropboxStorage | Alexander Tkachev | |
JSON checks added. | |||
2016-08-24 | CLOUD: Update Dropbox Requests | Alexander Tkachev | |
Adding more JSON checks there. |