Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-09 | POSIX: Fix compiler warning | jepael | |
2019-11-08 | SCI: Fix SQ5 WD40 alarm countdown lockup | sluicebox | |
Fixes bug #11255 | |||
2019-11-09 | TOUCHE: Fix Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-11-09 | I18N: Update translations templates | Thierry Crozat | |
2019-11-09 | TOON: Fix Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-11-09 | XEEN: Fix Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-11-09 | CRYO: Use byteswap functions from common/endian.h | Cameron Cawley | |
2019-11-08 | COMMON: Clarify documentation for OSystem::convertEncoding | Thierry Crozat | |
2019-11-08 | WIN32: Fix free being used on arrays allocated with new | Thierry Crozat | |
2019-11-08 | PRINCE: I18N: Update translation (English) | Eugene Sandulenko | |
Currently translated at 58.2% (1605 of 2757 strings) | |||
2019-11-08 | ANDROID: Fix OSD message display crash or fail | Thanasis Antoniou | |
For translated message text. Android expected UTF-8 format for the message Also makeToast for OSD needed to be run from the main UI thread | |||
2019-11-08 | GUI: Fix crash on low resolutions | Thanasis Antoniou | |
Related to about cls() and easter egg. Crashed on Android port on small screen devices | |||
2019-11-08 | BLADERUNNER: Fix wrong order for GPS map selection | Thanasis Antoniou | |
2019-11-08 | WIN32: Exit when WinSparkle runs installer | sluicebox | |
Trac #10368 | |||
2019-11-08 | I18N: Update translation (Dutch) | Ben Castricum | |
Currently translated at 100.0% (1179 of 1179 strings) | |||
2019-11-08 | SCUMM HE: Fix Signed vs. Unsigned Compiler Warning | D G Turner | |
2019-11-07 | SCUMM HE: MBC: Remove empty callbacks | Eugene Sandulenko | |
2019-11-07 | SCUMM HE: MBC: Implement Net::removeUser() | Eugene Sandulenko | |
2019-11-07 | SCUMM HE: MBC: Store generated player key | Eugene Sandulenko | |
2019-11-07 | I18N: Update translation (Hungarian) | George Kormendi | |
Currently translated at 100.0% (1179 of 1179 strings) | |||
2019-11-07 | SCI: Fix SQ5 WD40 fruit lockup | sluicebox | |
Fixes bug #5162 | |||
2019-11-07 | I18N: Update translations templates | Thierry Crozat | |
2019-11-07 | 3DS: Rework mouse cursor movement | Bastien Bouclet | |
- Fix clipping the cursor position - Ensure the mouse has the same vertical and horizontal speed | |||
2019-11-07 | 3DS: Use the full resolution for the overlay on the top screen | Bastien Bouclet | |
2019-11-07 | I18N: Update translation (Greek) | Antoniou Athanasios | |
Currently translated at 100.0% (1162 of 1162 strings) | |||
2019-11-06 | GUI: THEMES: FONTS: helvB12 greek should be 75 dip not 100 | Thanasis Antoniou | |
2019-11-06 | I18N: Regenerate translations data file (Nov 06 2019) | Thanasis Antoniou | |
2019-11-06 | I18N: Remove requirement for Drachma sign from ISO-8859-7 cp | Thanasis Antoniou | |
This glyph (U+20AF) is not really used in Greek text (ever) Marking it as required was breaking the TTF support for Greek in the themes that use scalable fonts, since most (if not all) of our ttf fonts in fonts.dat are missing that particular glyph (and only that). | |||
2019-11-06 | TTS: Improve Windows audio, remove sphelper-scummvm.h | sluicebox | |
- 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-06 | SUPERNOVA: Fix exiting scummvm from MSN 1 intro | Jaromir Wysoglad | |
2019-11-06 | 3DS: Improve the table of contents in the README.md file | Cameron Cawley | |
2019-11-06 | 3DS: Update the list of third-party libraries | Cameron Cawley | |
2019-11-06 | GUI: THEMES: Build zip themes using scummtheme.py makeall | Thanasis Antoniou | |
2019-11-06 | GUI: FONTS: Proper Greek BDF (and FCC) fonts added | Thanasis Antoniou | |
2019-11-06 | SCUMM HE: MBC: Pass userid for the endsession request | Eugene Sandulenko | |
2019-11-05 | I18N: Convert Russian and Ukrainian translations back to iso-8859-5 | Thierry Crozat | |
2019-11-05 | NETWORKING: Fix compilation for lower versions of libcurl | Eugene Sandulenko | |
2019-11-05 | SCUMM HE: MBC: Implement Net::destroyPlayer() | Eugene Sandulenko | |
2019-11-05 | 3DS: Fix centering of the game screen | Bastien Bouclet | |
2019-11-05 | 3DS: Reworked OSD message display | Bastien Bouclet | |
So the game remains interactive while OSD message are displayed. | |||
2019-11-05 | 3DS: Some changes to magnify mode | Bastien Bouclet | |
2019-11-05 | 3DS: Implement magnify mode toggle on L and move keyboard to Y/DRIGHT | Michael Ball | |
2019-11-05 | I18N: Update translation (Russian) | Eugene Sandulenko | |
Currently translated at 100.0% (1162 of 1162 strings) | |||
2019-11-05 | I18N: Update translation (Greek) | Antoniou Athanasios | |
Currently translated at 99.4% (1155 of 1162 strings) | |||
2019-11-05 | I18N: Update translation (Ukrainian) | Eugene Sandulenko | |
Currently translated at 100.0% (1162 of 1162 strings) | |||
2019-11-05 | NETWORKING: Enter Session | Alexander 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-05 | NETWORKING: Enter SessionRequest | Alexander 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-05 | NETWORKING: Add CurlRequest::wait() | Alexander Tkachev | |
2019-11-05 | JANITORIAL: Fix Networking::DataResponse typedef naming | Alexander Tkachev | |
2019-11-05 | BLADERUNNER: #11239 Fix buggy state and saved games for Desk Clerk | Thanasis Antoniou | |
Resolves ticket #11239 Occurs when McCoy leaves the scene with Leon and Desk Clerk too fast, before Leon drops the clerk Crash happens only when using CDFRAMES, but the animation would be bugged even when using HDFRAMES.DAT |