Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-03 | ENGINES: Stop using 'single id' | Bastien Bouclet | |
2019-11-03 | ENGINES: Add an engine ID to all the engines | Bastien Bouclet | |
2019-09-01 | TESTBED: Fix include guard in speech.h | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Don't build TTS tests if TTS is disabled | Jaromir Wysoglad | |
2019-09-01 | JANITORIAL: Remove some trailing whitespaces | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Increase pause in TTS pause test | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Improve some TTS tests | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Make sure to process events while waiting for speech to finish | Thierry Crozat | |
Same implementations of TextToSpeechManager may require system events to be processed for the state synchronisation to work properly. This commit also fixes a few typos or inconsistencies in some texts. | |||
2019-09-01 | TESTBED: Move the TTS tests after the critical components | Thierry Crozat | |
2019-09-01 | TESTBED: Add tests for TTS *_NO_REPEAT actions | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Rewrite parts of TTS tests. | Jaromir Wysoglad | |
As suggested by Criezy on github | |||
2019-09-01 | TESTBED: Add state queries to TTS tests. | Jaromir Wysoglad | |
2019-09-01 | TESTBET: Add TTS tests | Jaromir Wysoglad | |
2019-08-25 | TESTBED: Fix GCC Unused Variable Compiler Warnings | D G Turner | |
2019-08-24 | TESTBED: Comment correction | vyzigold | |
Co-Authored-By: Cameron Cawley <ccawley2011@gmail.com> | |||
2019-08-24 | TESTBED: Move encoding conversion tests to testbed | Jaromir Wysoglad | |
This way it is possible to test the backend conversions too. | |||
2019-08-11 | TESTBED: Add createDirectory() test in FStests | Cameron Cawley | |
2019-07-01 | TESTBED: Correctly reset the number of skipped tests | Cameron Cawley | |
2019-03-09 | JANITORIAL: Update all scummvm.org URLS to use https | Cameron Cawley | |
2018-08-17 | JANITORIAL: Removing trailing spaces after int casts | Paul Gilbert | |
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-04-15 | JANITORIAL: Indent GFXTransaction code blocks | Adrian Frühwirth | |
2017-10-29 | TESTBED: Only build cloud tests if libcurl is available too | Willem Jan Palenstijn | |
This matches the module.mk checks for backends/cloud | |||
2017-10-07 | ENGINES: Remove default1x scaler flag | Colin Snover | |
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions. | |||
2017-07-10 | Revert "COMMON: Change way the Singleton instances are instantiated" | Eugene Sandulenko | |
This reverts commit eefa72afa1978a9dea10f5b1833fcc8f58a3468e. With this patch ConfigManager is broken. | |||
2017-07-10 | COMMON: Change way the Singleton instances are instantiated | Thierry Crozat | |
This fixes tons of warnings with clang from a recent xcode version on macOS (and possibly other systems) complaining that an instantiation of _singleton is required but no definition is available. | |||
2017-04-30 | TESTBED: Fix building with --disable-cloud (#938) | Tarek Soliman | |
The linker fails when building with --disable-cloud and not passing --disable-libcurl | |||
2016-10-13 | TESTBED: Add test for kFeatureFilteringMode | Thierry Crozat | |
2016-10-12 | TESTBED: Fix fullscreen test | Thierry Crozat | |
The test was always failing when starting from the fullscreen state. | |||
2016-09-10 | CLOUD: Move openUrl to OSystem | Thierry Crozat | |
2016-09-04 | TESTBED: Listen to events during mouse move test | Eugene Sandulenko | |
2016-09-03 | TESTBED: Added mouse cursor | Eugene Sandulenko | |
2016-09-03 | JANITORIAL: Fix include statements | Eugene Sandulenko | |
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | TESTBED: Fix a few Cloud warnings | Alexander Tkachev | |
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 | TESTBED: Add openUrl test in MiscTests | Alexander Tkachev | |
2016-08-24 | TESTBED: Add more Webserver tests | Alexander Tkachev | |
2016-08-24 | TESTBED: Add Webserver test suite | Alexander Tkachev | |
Two tests now: IP resolving and index page check. | |||
2016-08-24 | TESTBED: Fix CloudTests | Alexander Tkachev | |
Now work with all available Storages. | |||
2016-08-24 | TESTBED: Add CloudTests::testSavesSync() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testFolderDownloading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testDownloading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Add CloudTests::testUploading() | Alexander Tkachev | |
2016-08-24 | TESTBED: Fix CloudTests to ask users whether to wait | Alexander Tkachev | |
Callbacks might be slow (like in SyncSaves), but they also could hang forever, so users now are being asked whether they want to wait or to skip the test. | |||
2016-08-24 | TESTBED: Add first Cloud tests | Alexander Tkachev | |
Adding tests for: * Storage::info(); * Storage::listDirectory(); * Storage::createDirectory(). | |||
2016-05-17 | ALL: Change main engine header guard defines to <directory>_<engine>_H | Eugene Sandulenko | |
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines. | |||
2016-04-14 | JANITORIAL: Reduce audio header dependencies | Ori Avtalion | |
2016-04-14 | JANITORIAL: Reduce GUI header dependencies | Ori Avtalion | |
2016-04-13 | TESTBED: Include correct header | Ori Avtalion | |