Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-19 | GUI: Enhance ThemeEngine to find theme .zip files using SearchMan | Max Horn | |
This is based on the Android specific patch found under: backends/platform/android/scummvm-android-themeengine.patch After some testing we should be able to get rid of that custom patch. svn-id: r51028 | |||
2010-07-17 | Fixing compilation with MSVC | Filippos Karapetis | |
svn-id: r50966 | |||
2010-07-17 | Remove PalmOS port | Max Horn | |
svn-id: r50964 | |||
2010-07-17 | DEBUGGER: Simplify how our console debugger works / is used | Max Horn | |
* Remove _isAttached member var and isAttached method * Engines now always call the onFrame method; whether it does something is decided by the debugger class resp. its subclasses * Make detach() protected instead of private, so that subclasses can invoke it * Remove _detach_now member var (call detach() instead). * Rename _frame_countdown to _frameCountdown and properly document it. * Add more doxygen comments * Cleanup svn-id: r50963 | |||
2010-07-16 | Cleanup. | Torbjörn Andersson | |
svn-id: r50925 | |||
2010-07-12 | Properly add Matteo Angelino to our credits for his Italian translation. | Johannes Schickel | |
svn-id: r50822 | |||
2010-07-12 | Consistently use "MT-32" as short name of the Roland MT-32 in our GUI and ↵ | Johannes Schickel | |
credits files. svn-id: r50821 | |||
2010-07-09 | Replace _s(test ? "string1" : "string2") by test ? _("string1") : ↵ | Thierry Crozat | |
_("string2") in two places. With the old code the second string was not detected as being translatable. svn-id: r50763 | |||
2010-07-05 | GUI/AUDIO: minor fix for the case that after enabling individual audio ↵ | Florian Kagerer | |
options for a target the gui tries to select the audio device from global options, but that particular device is unavailable due to GUIO flags settings svn-id: r50684 | |||
2010-07-04 | Simplify audio device settings handling by using the device handle as tag ↵ | Johannes Schickel | |
instead of newly created id. svn-id: r50651 | |||
2010-07-04 | Whoops, always increase midiId, not only when it's added to the GM Device popup. | Johannes Schickel | |
svn-id: r50650 | |||
2010-07-04 | Prevent the MT-32 Emulator from being displayed in the "GM Device" pop up. | Johannes Schickel | |
svn-id: r50649 | |||
2010-07-04 | More cleanup / readability fixes. | Johannes Schickel | |
svn-id: r50648 | |||
2010-07-04 | Cleanup. | Johannes Schickel | |
svn-id: r50647 | |||
2010-07-04 | GUI/AUDIO: This change will make individual game audio settings take over ↵ | Florian Kagerer | |
the audio device from the global settings if no device config key is found for that game (This should fix the problem reported by LordHoto on devel. It might make sense to implement this behaviour to other settings, like subtitle mode etc.) svn-id: r50646 | |||
2010-07-04 | Fix the size of the ScummVM logo in the launcher in the modern theme. | Johannes Schickel | |
svn-id: r50642 | |||
2010-07-04 | Prevent GraphicsWidget from being assigned a surface which wouldn't fit in ↵ | Johannes Schickel | |
the widget. svn-id: r50641 | |||
2010-07-04 | Always use kThumbnailHeight2 (i.e. 120) for the height of the thumbnail widget. | Johannes Schickel | |
This fixes the thumbnails for games with resolutions != n*200 in the launcher. svn-id: r50640 | |||
2010-07-04 | Center the surface of a GraphicsWidget in case it is smaller than the ↵ | Johannes Schickel | |
widget's size. svn-id: r50639 | |||
2010-06-29 | enable reading ZIP archives even without USE_ZLIB | Robert Špalek | |
our module unzip.cpp can read uncompressed ZIP archives even without zlib. if some of the files inside are compressed and zlib is not linked in, an error is returned. svn-id: r50483 | |||
2010-06-28 | Fix regression from r50382, which triggered an assert when clicking "OK" in ↵ | Johannes Schickel | |
the GMM's options dialog. The problem here is that our ConfigDialog uses "" as domain name, this will result in the assert in common/config-manager.cpp:323 getting triggered, when using ConfMan.removeKey. Since setting the domain to the game's domain does not seem save according to the FIXME in gui/dialogs.cpp about this domain hackery, I decided to adapt the OptionsDialog to only call ConfMan.removeKey for "music_driver" etc., when the music driver widgets are present. This is consistent with the over uses of removeKey in OptionsDialog::close too. svn-id: r50468 | |||
2010-06-28 | common console: also show prompt, if the engine wrote onto gui console since ↵ | Martin Kiewitz | |
last call - fixes sci breakpoints svn-id: r50449 | |||
2010-06-28 | i18n: Add support for locale-dependent fonts | Eugene Sandulenko | |
Currently it ws not decided where to put fonts, but if you put BDF files into themepath, they will get picked up. The font name has to contain same codepage specification as in the .po file, i.e. fixed5x8-iso-8859-5.bdf for Cyrillic codepage. In case the font does not exist, default will be used. All built in fonts get proper names. TODO: Currently there is a bug with our font cacher. Font clR6x12-iso-8859-5 is empty after loading from FCC file. Reason is unknown. svn-id: r50448 | |||
2010-06-28 | Fonts: More BDF font renames | Eugene Sandulenko | |
svn-id: r50437 | |||
2010-06-28 | Fonts: Add Russian codepage fonts, renamed existing ones | Eugene Sandulenko | |
svn-id: r50436 | |||
2010-06-27 | Add italian translation from the patch tracker (#3022046) and update credits. | Thierry Crozat | |
svn-id: r50386 | |||
2010-06-27 | GUI: and another fix for the music device popup | Florian Kagerer | |
svn-id: r50384 | |||
2010-06-27 | GUI: fix music device popup (thanks to clone2727 for reporting) | Florian Kagerer | |
svn-id: r50382 | |||
2010-06-27 | GUI: Copy over fonts from the vendor branch, so they will lay next to the GUI. | Eugene Sandulenko | |
It will be used for future support of locale-dependent fonts. svn-id: r50377 | |||
2010-06-26 | Remove support for translation of console messages. | Johannes Schickel | |
In recent discussions on -devel it turned out, that this feature is rather superfluous and instead we should rather implement a proper error reporting in our GUI. I also removed the dependency on iconv along with this. svn-id: r50335 | |||
2010-06-26 | GUI: Add the catalan translation | Jordi Vilalta Prat | |
svn-id: r50327 | |||
2010-06-26 | GUI: Add and improve some messages to translate | Jordi Vilalta Prat | |
svn-id: r50324 | |||
2010-06-26 | GUI: If no language is explicitly selected and autodetection is available, ↵ | Jordi Vilalta Prat | |
select "<default>" (which is already in use) instead of English. svn-id: r50323 | |||
2010-06-25 | AUDIO: some fixes in the audio device code (no sound option, new GUIO flags) | Florian Kagerer | |
svn-id: r50281 | |||
2010-06-24 | Gives proper credits for the Hungarian translation. Also remembered to ↵ | Thierry Crozat | |
update the website credits this time (it was also missing the Android credits by the way). svn-id: r50251 | |||
2010-06-24 | Add credits for the translations. | Thierry Crozat | |
svn-id: r50248 | |||
2010-06-21 | Patch #1956501: "GUI/LAUNCHER: Midi device selection" | Max Horn | |
svn-id: r50128 | |||
2010-06-20 | GUI: Tweak low-res Launcher layout (1-2 more games visible in game list, ↵ | Max Horn | |
less space wasted between buttons) svn-id: r50098 | |||
2010-06-20 | Commit slightly modified version of patch #3018727: fix subtitle options ↵ | Thierry Crozat | |
(thanks fuzzie). svn-id: r50080 | |||
2010-06-16 | Fix for Tooltip calls causing valgrind errors. | David Turner | |
svn-id: r49901 | |||
2010-06-15 | Fix g++ warning "format not a string literal and no format arguments". | Johannes Schickel | |
svn-id: r49896 | |||
2010-06-15 | Yet another WinCE fix | Max Horn | |
svn-id: r49889 | |||
2010-06-15 | Use USE_TRANSLATION, USE_DETECTLANG and USE_TERMCONV instead of ↵ | Johannes Schickel | |
(ENABLE_)TRANSLATION, DETECTLANG and TERMCONV. svn-id: r49885 | |||
2010-06-15 | Remove unnecessary svn:executable properties | Willem Jan Palenstijn | |
svn-id: r49870 | |||
2010-06-15 | Another attempt to fix WinCE compilation | Max Horn | |
svn-id: r49864 | |||
2010-06-15 | Fix some warnings about 'format not a string literal'. | Max Horn | |
svn-id: r49847 | |||
2010-06-15 | Fix spelling, cleanup | Max Horn | |
svn-id: r49843 | |||
2010-06-15 | GUI: Fixed warnings | Eugene Sandulenko | |
svn-id: r49804 | |||
2010-06-15 | GUI: Fix crash | Eugene Sandulenko | |
svn-id: r49803 | |||
2010-06-15 | GUI: Implemented Languages as GUI options. | Eugene Sandulenko | |
SCUMM and AdvancedDetector support this feature. svn-id: r49786 |