Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-01 | TTS: Rename LinuxTextToSpeechManager to SpeechDispatcherManager | Jaromir Wysoglad | |
Add a new define for the SpeechDispatcherManager | |||
2019-09-01 | TTS: Remove USE_PLATFORM_TTS defines | Jaromir Wysoglad | |
Use defined(USE_TTS) && defined(PLATFORM) instead | |||
2019-09-01 | TTS: Create a TTS skeleton | Jaromir Wysoglad | |
2019-08-05 | SDL: Simplify implementation of createLogFile() | Cameron Cawley | |
2018-12-02 | POSIX: Set the default screenshots path to the XDG Pictures directory | Bastien Bouclet | |
2018-08-18 | POSIX: Allow forbidden symbols required by FreeMiNT | Cameron Cawley | |
2017-12-15 | BUILD: Check if posix_spawn is available in configure | Thierry Crozat | |
2017-12-14 | POSIX: Fix compilation with some old macOS SDKs | Thierry Crozat | |
2017-12-14 | POSIX: Do not hang ScummVM when opening a browser | Colin Snover | |
If the call used to open the browser does not return until the browser is closed, this would previously cause ScummVM to hang. Since we are using waitpid now, we can avoid hanging by telling waitpid to not block on a child which has not exited. | |||
2017-12-14 | POSIX: Fix CVE-2017-17528 | Colin Snover | |
2016-09-10 | CLOUD: Move openUrl to OSystem | Thierry Crozat | |
2016-08-04 | POSIX: Add #ifdef guards for DATA_PATH. | Alyssa Milburn | |
Thanks to snover for pointing out they should be there. | |||
2016-07-29 | POSIX: Add $SNAP to search path if available. | Alyssa Milburn | |
This allows ScummVM to find data files while running in a snap (e.g. from the new Ubuntu store). | |||
2016-03-13 | POSIX: Cleanup AudioCD manager creation. | Johannes Schickel | |
2016-03-13 | BACKENDS: Add a Linux CD-ROM audio player | Matthew Hoops | |
2016-02-02 | POSIX: Move assureDirectoryExists to posix-fs{.h,.cpp}. | Johannes Schickel | |
2016-02-02 | POSIX: Move default config file location to ↵ | Johannes Schickel | |
'$XDG_CONFIG_HOME/scummvm/scummvm.ini'. This is what the XDG Base Directory Specification suggests to use. We still use the old location of '~/.scummvmrc' in case that is present. This tackles an aspect of bug #6036 "POSIX: Use XDG dirs instead of HOME". | |||
2016-02-02 | POSIX: Use modern path for log file. | Johannes Schickel | |
This makes use use the XDG Base Directory Specification for the log file path. This tackles one part of bug #6036 "POSIX: Use XDG dirs instead of HOME". | |||
2016-02-02 | POSIX: Restructure code in OSystem_POSIX::createLogFile. | Johannes Schickel | |
2016-02-02 | POSIX: Make assureDirectoryExists create full path if needed. | Johannes Schickel | |
This is kind of like 'mkdir -p' now. But the permissions are different from standard POSIX behavior. | |||
2016-02-02 | POSIX: Factor directory creation code into its own function. | Johannes Schickel | |
2014-02-18 | SDL: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-01-21 | BUILD: Rename libunity support variable to "USE_UNITY" instead of ↵ | Johannes Schickel | |
"USE_TASKBAR_UNITY". This makes it consistent with other library support variables. | |||
2013-11-14 | SDL: Fix bug where config file path could exceed maximum path length. | D G Turner | |
The fix is the change in the MAXPATHLEN check, but have also migrated this to Common::String to make the fix easier. Thanks to klusark for pointing out this problem. | |||
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2011-06-16 | BACKENDS: Add define for Unity-specific taskbar code | Littleboy | |
2011-06-16 | BACKENDS: Integrate glib main event loop | Littleboy | |
- Unity needs a glib event loop to dispatch events. - Cleanup whitespace and indentation | |||
2011-06-16 | BACKENDS: Add WIP Unity support | Littleboy | |
2011-06-04 | POSIX: Add TODO/FIXME to displayLogFile | Willem Jan Palenstijn | |
2011-06-04 | POSIX: Implement displayLogFile in the posix backend | Willem Jan Palenstijn | |
Tested only on Linux, but hopefully this is sufficiently portable to support the other POSIX platforms. Using fork/exec instead of the simpler 'system' to avoid quoting issues and depending on specific shell features to handle a missing xdg-open gracefully. | |||
2011-06-03 | BACKENDS: Add OSystem::displayLogFile interface + OSX implementation | Max Horn | |
2011-05-25 | BUILD: Rename UNIX #define to POSIX | Max Horn | |
2011-05-23 | COMMON: Mark more symbols as forbidden | Max Horn | |
2011-05-23 | SAMSUNGTV: update port | Pawel Kolodziejski | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-08 | IRIX: Fix compilation | Joost Peters | |
2011-05-02 | ALL: Mark printf and various other symbols as forbidden | Max Horn | |
Right now, a few places in the frontend code still use printf and consorts. We mark the affected files with a FIXME for now, and add a dedicated exception for each. To be fixed! Also tweak FORBIDDEN_SYMBOL_REPLACEMENT to hopefully really always enforce a compiler error | |||
2010-11-29 | SDL: Add Mac OS X log file support | Max Horn | |
svn-id: r54589 | |||
2010-11-29 | SDL: Move createLogFile implementions to the OSystem_SDL subclasses. | Johannes Schickel | |
svn-id: r54581 | |||
2010-11-29 | BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefs | Max Horn | |
svn-id: r54573 | |||
2010-06-27 | Fixed String conversion error. | Alejandro Marzini | |
svn-id: r50370 | |||
2010-06-27 | Improved getDefaultConfigFileName(). Code cleanup. | Alejandro Marzini | |
svn-id: r50364 | |||
2010-06-26 | Removed DEFAULT_CONFIG_FILE define in favor of new getConfigFileNameString ↵ | Alejandro Marzini | |
function. svn-id: r50301 | |||
2010-06-24 | Fix compile on Mac OS X (and probably *nix systems). | Matthew Hoops | |
svn-id: r50254 | |||
2010-06-24 | Added a init function to OSystem_SDL for early backend setup, and so ↵ | Alejandro Marzini | |
allowing better sub classing. svn-id: r50224 | |||
2010-06-23 | Relocated Win32 and Posix ports. (Part 2) | Alejandro Marzini | |
svn-id: r50193 | |||
2010-06-23 | Relocated Win32 and Posix ports. (Part 1) | Alejandro Marzini | |
svn-id: r50191 |