Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-17 | DC: Fix Variable Shadowing Compiler Warning. | D G Turner | |
2017-01-01 | ALL: Bump copyright year to 2017 | Eugene Sandulenko | |
2016-11-12 | Merge pull request #853 from criezy/ios-no-sleep | Eugene Sandulenko | |
IOS: Disable idle timer while an engine is running | |||
2016-10-23 | ANDROIDSDL: default storage-sdcard directory location getting direct from ↵ | lubomyr | |
libSDL wrapper | |||
2016-10-22 | SDL: Fix typos | Ori Avtalion | |
2016-10-22 | DC: Add Dreamcast specific clean target | Marcus Comstedt | |
2016-10-21 | IOS: Add support for filtering feature | Thierry Crozat | |
2016-10-20 | IOS: Disable idle timer while an engine is running | Thierry Crozat | |
2016-10-16 | PSP: Added release building script | Eugene Sandulenko | |
2016-10-10 | ANDROIDSDL: Update port settings | Eugene Sandulenko | |
2016-10-09 | GCW0: Fixed wording in the README | Eugene Sandulenko | |
2016-10-09 | GCW0: Mention that only 320x240 games are supported | Eugene Sandulenko | |
2016-10-09 | JANITORIAL: Remove more trailing spaces | Eugene Sandulenko | |
2016-09-28 | MAEMO: Update debian/changelog | Tarek Soliman | |
2016-09-28 | DC: Fix indentation | Marcus Comstedt | |
2016-09-27 | DC: Ignore case for VM filenames | Marcus Comstedt | |
2016-09-27 | DC: Implement atexit handling for plugins | Marcus Comstedt | |
2016-09-27 | DC: Update versions of dependencies in README | Marcus Comstedt | |
The new GCC and Newlib are required for correct atexit handling in plugins. The new Ronin is required to support the Newlib upgrade, and also for custom filename handling on VM saves. | |||
2016-09-26 | RELEASE: This is 1.10.0git | Eugene Sandulenko | |
2016-09-18 | ANDROIDSDL: set default gfx_mode to 2x | lubomyr | |
2016-09-16 | ANDROIDSDL: default config key browser_lastpath changed to '/storage' | lubomyr | |
2016-09-13 | SDL: Add a fixme regarding the encoding of the string returned by ↵ | Bastien Bouclet | |
getTextFromClipboard | |||
2016-09-13 | SDL: Plug a memory leak in OSystem_SDL::getTextFromClipboard | Bastien Bouclet | |
2016-09-10 | CLOUD: Move openUrl to OSystem | Thierry Crozat | |
2016-09-04 | SDL: Move mouse in SDL2 only when window has focus. | Eugene Sandulenko | |
2016-09-04 | SDL: Do not forbid time.h symbols when FORBIDDEN_SYMBOL_EXCEPTION_time_h is ↵ | Thierry Crozat | |
defined This hopefully fixes a regression from 848c5c3. | |||
2016-09-03 | Merge pull request #810 from tsoliman/sdl2-macports | Thierry Crozat | |
SDL: Fix build with MacPorts SDL2 | |||
2016-09-03 | BUILD: Tie the SDL_net version to the SDL version | Thierry Crozat | |
This means that when using SDL 1.2 we use SDL_net 1.2, but when using SDL 2 we now use SLD_net 2 as well. Both versions work properly and there is not code change needed in ScummVM. This change is because SDL_net depends on SDL, and using SDL_net 1.2 with SDL 2 means we can end up needing to link with both the SDL and SDL2 libraries. | |||
2016-09-03 | JANITORIAL: Make GPL headers uniform | 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 | Merge pull request #433 from klusark/assets | Eugene Sandulenko | |
ANDROID: Update the asset archive code to use AAssets | |||
2016-08-24 | ALL: Move Clipboard support to OSystem | Alexander Tkachev | |
Commit adds kFeatureClipboardSupport. hasTextInClipboard() and getTextFromClipboard(). OSystem_SDL has this feature if SDL2 is used. EditableWidget and StorageWizardDialog use g_system to access clipboard now. | |||
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: Add Networking::Connection::isLimited() | Alexander Tkachev | |
`false` everywhere by default, but works on Android (`true` if not Wi-Fi). | |||
2016-08-24 | CLOUD: Add openurl-android.cpp | Alexander Tkachev | |
2016-08-24 | CLOUD: Make OutSaveFile start saves sync | Alexander Tkachev | |
It had to become a proxy class in order to do that. finalize() starts the saves sync. | |||
2016-08-24 | CLOUD: Init SDL_Net | Alexander Tkachev | |
2016-08-24 | CLOUD: Make CloudManager singleton | Alexander Tkachev | |
It's needed to ::destroy() it in main(). | |||
2016-08-24 | CLOUD: Add CurlJsonRequest | Alexander Tkachev | |
Now we can do REST API request by creating CurlJsonRequest and waiting for it to call our callback. Passed pointer is Common::JSONValue. This commit also does some minor variable renaming fixes. | |||
2016-08-24 | CLOUD: Add USE_CLOUD feature | Alexander Tkachev | |
Adds USE_CLOUD in both configure and create_project. | |||
2016-08-24 | CLOUD: Add Cloud::Manager and Cloud::Storage | Alexander Tkachev | |
This commit introduces Common::CloudManager, which can be accessed from OSystem. The backend for this manager is Cloud::Manager (defined in backends/cloud/manager.h). It should load all users storages from configs and provide access to current Storage instance. For now it just creates a new one. Cloud::Storage (backends/cloud/storage.h) provides an API to interact with cloud storage, for example, create new directory or sync files. Right now it's not ready and has only two dummy methods: listDirectory() and syncSaves(). There is Cloud::Dropbox::DropboxStorage backend (backends/cloud/dropbox/dropboxstorage.h) for Cloud::Storage. Right now it implements both listDirectory() and syncSaves() with starting timer task and handling it by printing out some JSON examples. | |||
2016-08-24 | CLOUD: Integrate CloudThread into OSystem | Alexander Tkachev | |
Would be changed soon. | |||
2016-08-20 | SDL: Fix build with MacPorts SDL2 | Tarek Soliman | |
2016-08-04 | POSIX: Add #ifdef guards for DATA_PATH. | Alyssa Milburn | |
Thanks to snover for pointing out they should be there. |