Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-24 | COMMON: Look for translations.dat in Theme path before using SearchMan | Thierry Crozat | |
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-23 | COMMON: Add abort() to the list of forbidden symbols | Julien | |
2011-06-22 | COMMON: Improve loading of translations data file | Thierry Crozat | |
Now if the header of the file is not correct it continues to look for a valid file, while before if the first file found was obsolete or corrupted translation was disabled even if a valid file was present in the search path. | |||
2011-06-22 | Merge pull request #26 from Littleboy/taskbar | Eugene Sandulenko | |
Taskbar integration | |||
2011-06-21 | COMMON: Move HerculesDimensions enum to SCUMM. | Johannes Schickel | |
The enum is only used inside the SCUMM engine so it is rather pointless to keep it in common/util.h right now. Also if we really want it in some common place it should probably be better in graphics/ too. | |||
2011-06-20 | COMMON: Fix conflicting comment | Willem Jan Palenstijn | |
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-18 | COMMON: Replace some vsnprintf/STRINGBUFLEN uses by vformat | Max Horn | |
2011-06-18 | COMMON: Add vformat() function (Common::String analog to vsprintf) | Max Horn | |
2011-06-17 | COMMON: Remove default implementation of OSystem::logMessage | Max Horn | |
2011-06-17 | Merge pull request #30 from tsoliman/configure-enhancement-warning-clean | Eugene Sandulenko | |
Configure enhancement warning clean | |||
2011-06-17 | COMMON: Make use of Common::parseBool | Max Horn | |
2011-06-16 | ENGINES: Warn user about games marked with ADGF_UNSTABLE flags | Tarek Soliman | |
ADGF_UNSTABLE is always warned about. ADGF_TESTING is only warned about when running configure with --enable-relase. Both warnings are subject to the enable_wip_game_warning config option. | |||
2011-06-16 | COMMON: Change TaskbarManager to the new module slot interface | Julien | |
2011-06-16 | BACKENDS/COMMON/GUI: Remove complete support for TaskbarManager when taskbar ↵ | Littleboy | |
integration is not enabled | |||
2011-06-16 | COMMON: Update TaskbarManager header with better documentation and examples ↵ | Littleboy | |
of use | |||
2011-06-16 | COMMON: Add overall documentation to TaskbarManager interface | Littleboy | |
2011-06-16 | BACKENDS: Add support for count status to TaskbarManager | Littleboy | |
- Show the number of found games when using the massadd dialog | |||
2011-06-16 | BACKENDS: Add engine-level accessor for TaskbarManager | Littleboy | |
2011-06-16 | BACKENDS: Implement Win32 taskbar progress state and recent list | Littleboy | |
2011-06-16 | BACKENDS: Add generic TaskbarManager class to handle taskbar integration | Littleboy | |
2011-06-15 | COMMON: Fix code formatting, rename stuff for consistency | Max Horn | |
2011-06-15 | COMMON: fixed resize | Vladimir | |
2011-06-15 | COMMON: added assign(T*, T*) | Vladimir | |
2011-06-14 | COMMON: Fix crash in TranslationManager when reading long strings | Thierry Crozat | |
It was writing data beyond the end of a buffer. This change makes sure this does not happen. It only changes reading of the messages since the language codes, charset names and contexts are always much smaller than the buffer. | |||
2011-06-10 | COMMON: Do not try to read from res forks of non-existant files | Max Horn | |
2011-06-08 | COMMON: Fix OSystem docs | Max Horn | |
2011-06-08 | BACKENDS: Shuffle backends class hierarchy and module initialization | Max Horn | |
2011-06-08 | BACKENDS: Add OSystem::resetGraphicsScale() default implementation | Max Horn | |
2011-06-08 | COMMON: Add headers needed for delete calls. | Alyssa Milburn | |
2011-06-07 | BACKENDS: All backends use _savefileManager now, adapt OSystem accordingly | Max Horn | |
2011-06-07 | BACKENDS: All backends use _timerManager now, adapt OSystem accordingly | Max Horn | |
2011-06-07 | BACKENDS: Move more 'manager slots' from ModularBackend to OSystem | Max Horn | |
2011-06-06 | OSYSTEM: displayMessageOnOSD() now accepts non-ASCII strings | Thierry Crozat | |
It should now accept strings encoded using the current TranslationManaged charset (e.g. translated text). | |||
2011-06-06 | COMMON: Clarify & correct OSystem::displayLogFile() docs | Max Horn | |
2011-06-06 | COMMON: Attempt to make 'forbidden symbol' error more helpful | Max Horn | |
2011-06-06 | COMMON: Make more symbols forbidden | Max Horn | |
2011-06-06 | BACKENDS: Unify EventManager setup | Max Horn | |
2011-06-06 | COMMON: Remove PS2 / NDS hacks in system.cpp | Max Horn | |
2011-06-06 | BACKENDS: Add OSystem::getDefaultConfigFileName | Max Horn | |
This is used to provide default implementations for createConfigWriteStream and createConfigReadStream, which can be used by most backends. Note that backends can still override createConfigRead/WriteStream; this could be useful if settings on some port are not stored in a regular file (think 'Windows registry', for a hypothetical example). | |||
2011-06-06 | BACKENDS: Unify AudioCD manager instantiation | Max Horn | |
2011-06-06 | COMMON: Add kInfo LogMessageType. | Alyssa Milburn | |
2011-06-06 | COMMON: Remove vfprintf call from XML parser | Max Horn | |
2011-06-04 | BACKENDS: Replace OSystem::disableCursorPalette by setFeatureState calls | Max Horn | |
2011-06-04 | COMMON: Clarify OSystem feature flags docs a bit | Max Horn | |
2011-06-04 | COMMON: Rename kFeatureCursorHasPalette -> kFeatureCursorPalette | Max Horn | |
2011-06-03 | COMMON: Let Common::normalizePath normalize '..' in paths | Max Horn | |
There are some unit tests to verify that this works correctly. There is a small chance that this causes regressions in weird setups. | |||
2011-06-03 | COMMON: Access mac res fork via FSNode instead of StdioStream | Max Horn | |
This fixes linker problems with the unit tests on Mac OS X. it is also "more proper" to use the high-level FSNode API. StdioStream is a (relatively) low-level wrapper intended for use inside of backends only. | |||
2011-06-03 | BACKENDS: Add OSystem::displayLogFile interface + OSX implementation | Max Horn | |