aboutsummaryrefslogtreecommitdiff
path: root/backends
AgeCommit message (Collapse)Author
2019-11-06TTS: Improve Windows audio, remove sphelper-scummvm.hsluicebox
- Remove sphelper-scummvm.h - Use default audio quality instead of lowest - Add HRESULT tests - Fix new[]/free() mismatches - Fix voice description memory leak
2019-11-063DS: Improve the table of contents in the README.md fileCameron Cawley
2019-11-063DS: Update the list of third-party librariesCameron Cawley
2019-11-05NETWORKING: Fix compilation for lower versions of libcurlEugene Sandulenko
2019-11-053DS: Fix centering of the game screenBastien Bouclet
2019-11-053DS: Reworked OSD message displayBastien Bouclet
So the game remains interactive while OSD message are displayed.
2019-11-053DS: Some changes to magnify modeBastien Bouclet
2019-11-053DS: Implement magnify mode toggle on L and move keyboard to Y/DRIGHTMichael Ball
2019-11-05NETWORKING: Enter SessionAlexander Tkachev
Session allows to reuse SessionRequests to the same host by making them keeping alive connection. Turns out, though, that libcurl already does that for us, and we didn't gain any speedup we thought we'd get. Usage: ``` Networking::Session s; Networking::SessionRequest *request = s.get(url); request->startAndWait(); warning("HTTP GET: %s", request->text()); s.close(); ``` You can still use SessionRequest without Session (but you can't put them on stack!): ``` Networking::SessionRequest *request = new Networking::SessionRequest(url); request->startAndWait(); warning("HTTP GET: %s", request->text()); request->close(); ```
2019-11-05NETWORKING: Enter SessionRequestAlexander Tkachev
It is to be used in a Session, though it might be used separately. It must implement keep-alive, but it does not yet. You must not put it to ConnMan by yourself (instead, use start()) and you must call close() after you've finished using this request. You can either work with it in callback, or wait() and simply use its methods (check it's success() and then, for example, use text()). Like this: ``` Networking::SessionRequest *rq = new Networking::SessionRequest(url); rq->startAndWait(); if (rq->success()) warning("HTTP GET: %s", rq->text()); rq->close(); ```
2019-11-05NETWORKING: Add CurlRequest::wait()Alexander Tkachev
2019-11-05JANITORIAL: Fix Networking::DataResponse typedef namingAlexander Tkachev
2019-11-043DS: Add a make rule for a distributable packageBastien Bouclet
2019-11-03PS3: Implement the cloud synchronization featuresBastien Bouclet
2019-11-033DS: Implement cloud sync supportBastien Bouclet
2019-11-033DS: Use DATA_PATH to configure support files locationBastien Bouclet
2019-11-03NETWORKING: Try loading the CA bundle from DATA_PATHBastien Bouclet
2019-11-03NETWORKING: Improve libcurl error handlingBastien Bouclet
Error messages for failed requests are now printed as warnings.
2019-11-03DC: Update for the engineId changesBastien Bouclet
2019-11-013DS: Remove 3dstool dependencyMrHuu
This patch alters the way the .cia is build. It removes the need for 3dstool. Instead of first generating a .romfs file using 3dstool, let makerom generate the romfs while building the .cia.
2019-11-01ANDROID: Disable verification of certificates validity for cloud savingThanasis Antoniou
Also added macros for the plain (non-SDL) Android port __ANDROID_PLAIN_PORT__ and ANDROID_PLAIN_PORT The workaround of this commit uses the same logic as for the Nintendo Switch port and should suffice for testing purposes. It should be replaced by more elaborate code of installing and maintaining a certificates pem file.
2019-11-01OPENGL: Implement high DPI support on Android (#1895)Cameron Cawley
* OPENGL: Implement high DPI support on Android * PSP2: Fix build
2019-10-313DS: Avoid stat calls in DrivePOSIXFilesystemNodeBastien Bouclet
2019-10-303DS: Set 'scummvm.romfs' to be removed by 3ds_clean in 3ds.mkMichael Ball
2019-10-283DS: Load per-game settingsBastien Bouclet
2019-10-253DS: Upload the textures to VRAM in a separate frameBastien Bouclet
So rendering waits for the textures to finish uploading before using them. Fixes glitchy mouse pointer in Riven.
2019-10-25NETWORKING: Remove unnesessary checkEugene Sandulenko
2019-10-24SDL: Fix typo in commentHubert Maier
2019-10-243DS: Fix hi-color cursorsBastien Bouclet
2019-10-243DS: Add files to be removed by 3ds_clean in 3ds.mk:Michael Ball
backends/platform/3ds/shader.shbin (byproduct of "make"), backends/platform/3ds/shader_shbin.h (byproduct of "make"), $(TARGET).smdh (aka scummvm.smdh, byproduct of "make scummvm.3dsx"), $(TARGET).bnr (aka scummvm.bnr, byproduct of "make scummvm.cia")
2019-10-24NETWORKING: Reworked PostRequest to a more universal APIEugene Sandulenko
2019-10-24NETWORKING: Changed PostRequest to accept JSONValueEugene Sandulenko
2019-10-24NETWORKING: Added simple request handlerEugene Sandulenko
2019-10-23ANDROID: Simplify handling of menu/back button eventsCameron Cawley
2019-10-23ANDROID: Add swap menu and back buttons optionCameron Cawley
2019-10-21AMIGAOS4: Automate special target installation even more (#1901)Hubert Maier
* AMIGAOS4: Update amigaos.mk - reorg - add stripping/copying engine plugins - add Ext_Ins_so.rexx * Ext_Inst_so.rexx Add script to extract and install all compiled-in shared libraries to a local sobjs/ dir. Reason is that not every AmigaOS4 installation, especially vanilla ones, feature all mandatory libraries (which has led to many bug reports and lots of gathering of the correct libraries for users in the past) * AMIGAOS4: RM2AG.rexx - Add automatic installation to the correct path - Add deleting the temp file - Typos and rewording - Add I/O panic switches
2019-10-21ANDROID: Set target SDK to 28Thanasis Antoniou
2019-10-203DS: Change the audio thread to wait for the audio buffers to completeBastien Bouclet
Fixes the regular pop sounds caused by buffer underruns / clobbering of the previous implementation.
2019-10-203DS: Don't immediately update the screen when enabling the overlayBastien Bouclet
Fixes the overlay dirty buffer being visible for a frame when opening the GUI while in-game.
2019-10-19IOS7: enable home indicator auto-hide on iPhone X and upStefan Will
This makes the annoying white line at the bottom of the screen go away on newer (home button-less) iPhones. https://developer.apple.com/documentation/uikit/uiviewcontroller/2887510-prefershomeindicatorautohidden
2019-10-18OPENGL: Fix warning when using builtin OpenGL functionsCameron Cawley
2019-10-18ANDROID: Fix warningCameron Cawley
2019-10-16SDL: Fix Missing Default Switch Cases in Events ClassD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-10-16TTS: Fix language setting.Jaromir Wysoglad
2019-10-16ANDROID: Use more portable directory query methodEugene Sandulenko
2019-10-143DS: Fix creating the scummvm directory on the SD cardBastien Bouclet
2019-10-143DS: Fix OSystem::grabOverlayBastien Bouclet
Fixes the transparency effects in the GUI.
2019-10-143DS: Embed ScummVM's support files in the packageBastien Bouclet
2019-10-13SWITCH: Fix cloud integrationrsn8887
2019-10-13AMIGAOS4: amigaos.mk - Fix cp commandHubert Maier