Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-24 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-10-24 | GUI: Fix missing audio drivers in Edit Game dialog. | Johannes Schickel | |
This is a regression from 77c65648b1db8f8b7b245510681eafd856798d26. Formerly the code used strtok to check for any audio related GUIO flag to be present in _guioptions. Since strtok tokenizes the string this won't really work. I changed it to use strpbrk, which searches a string for any character from a set of characters (in our case flags). The code should now have the same semantics as of before the above mentioned commit. This also gets rid of copying the gui options into a char array and a strncpy call. | |||
2011-10-24 | GUI: Add GUIO EGA Dithering option | Strangerke | |
This will be used to disable the EGA dithering option | |||
2011-10-24 | GUI: in order to play it safe, re-enable the aspect checkbox if the gui ↵ | Strangerke | |
options don't contain GUIO_NOASPECT. Thanks lordHoto for pointing it | |||
2011-10-24 | GUI: Added icon to clear button. Reverted PNG support | Eugene Sandulenko | |
2011-10-23 | GUI: Replaced search icon with a better looking one. | Eugene Sandulenko | |
Icons are by Yusuke Kamiyamane. http://p.yusukekamiyamane.com/ | |||
2011-10-23 | GUI: Add support for PNG images in themes | Eugene Sandulenko | |
2011-10-23 | LAUNCHER: Do not show MIDI and MT32 tabs if game does not have MIDI | Eugene Sandulenko | |
2011-10-23 | LAUNCHER: Add GUIO_NOASPECT to SCUMM engine | Strangerke | |
2011-10-23 | ALL: Reduce assignment of "" to Common::String. | Johannes Schickel | |
When clearing an existant object clear() should be used. When constructing objects (or using default values for parameters) the constructor of String without any argument should be used. This changes only a few instances I noticed while looking over some recent commit logs. | |||
2011-10-23 | AD: Swtich GUI options to a char array. | Eugene Sandulenko | |
This eliminates nasty limitation of caping number of flags to 31. Current code has limitation of 255 flags, though. Only SCUMM engine is converted, rest do not even compile. Detection of fan talkie MI is broken as it has to be implemented differently. | |||
2011-10-23 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-10-19 | I18N: Regenerate translations.dat | Eugene Sandulenko | |
2011-10-19 | GUI: Added debug ouput for determining loaded theme | Eugene Sandulenko | |
2011-10-18 | BADA: Misc changes merged from appstore release | Chris Warren-Smith | |
2011-10-17 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-10-16 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-10-08 | I18N: Update Hungarian translation from patch #3419482 | Thierry Crozat | |
2011-10-08 | CREDITS: Sort some sections by last name | Tarek Soliman | |
2011-10-05 | I18N: Update Czech translation from patch #3419076 | Thierry Crozat | |
2011-10-05 | I18N: Update the catalan and spanish translations. | Jordi Vilalta Prat | |
2011-10-05 | I18N: Update the translation template. | Jordi Vilalta Prat | |
2011-09-28 | CREDITS: properly retire fanoush and add myself | Tarek Soliman | |
2011-09-25 | AGI/COMMON: Fixed bug #3407308 - "AGI: SQ2: Saving allowed in autosave slot ↵ | Filippos Karapetis | |
0 from scummvmmenu" The save/load dialog code was not polling for meta info for empty slots | |||
2011-09-22 | CGE: Add credits | Strangerke | |
2011-09-19 | GUI: Silence GCC warning | Torbjörn Andersson | |
Rename local variable 'buffer' to keep it from clashing with the buffer() method. | |||
2011-09-19 | GUI: Replace ConsoleDialog use of vsnprintf by Common::String::vformat() | Littleboy | |
2011-08-23 | I18N: Regenerate translation.dat file | Thierry Crozat | |
2011-08-22 | I18N: Regenerate translations.dat file | Thierry Crozat | |
2011-08-21 | BADA: Updated credit.pl to include BADA port information | Chris Warren-Smith | |
2011-08-20 | I18N: Regenerated .pot, .po and translations.dat | Eugene Sandulenko | |
2011-08-20 | CREDITS: Reflect new team structure | Eugene Sandulenko | |
2011-08-20 | I18N: Regenerate translations.dat | Eugene Sandulenko | |
2011-08-18 | I18N: Update the catalan and spanish translations. | Jordi Vilalta Prat | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | I18N: Regenerate translations.dat | Eugene Sandulenko | |
2011-08-06 | GUI: Removed redundant button label | Eugene Sandulenko | |
2011-08-06 | GUI: Consistent behavior of ButtonWidget::setLabel() | Eugene Sandulenko | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-07-03 | CREDITS: Mark waltervn as retired | Matthew Hoops | |
As requested by him | |||
2011-07-03 | COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined. | Johannes Schickel | |
2011-07-02 | ENGINES: Clean up SaveStateDescriptor. | Johannes Schickel | |
Now SaveStateDescriptor no longer subclasses HashMap. Instead all possible saved meta data is included directly into SaveStateDescriptor. This is slightly less flexible, but we never needed that flexibility so far. On the other hand it should reduce the memory usage. At least on my system (Linux/amd64) the old SaveStateDescriptor had a size of 928 and the new SaveStateDescriptor has a size of 200. | |||
2011-07-01 | GRAPHICS: Rename NewFont to BdfFont. | Johannes Schickel | |
2011-07-01 | GRAPHICS: Move NewFont code to a separate file. | Johannes Schickel | |
2011-06-30 | ALL: Require DECLARE_SINGLETON to be used in the Common namepsace | Ori Avtalion | |
Silences the clang warning: static data member specialization of '_singleton' must originally be declared in namespace 'Common'; accepted as a C++0x extension [-Wc++0x-extensions] Wrapping "namespace Common {}" around the macro assignment causes clang to complain about a spurious semicolon, and removing the semicolon at the end of the macro causes some editors to misbehave. Changing the requirement of using the macro in one namespace (the global) to another (Common) seems a small price to pay to silence a warning. | |||
2011-06-30 | CREDITS: Update my status to active again. | unknown | |
2011-06-28 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-06-26 | I18N: Update Russian translation | Eugene Sandulenko | |
2011-06-23 | CREDITS: Add real name of serga per his request | Eugene Sandulenko | |
2011-06-22 | I18N: Regenerate translations data file | Thierry Crozat | |