Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-05-21 | DS: Port of changes from branch-1-2-0 that I should really have moved into ↵ | agent-q | |
the trunk. "DS: Prevent the command line help string from being included in the binary." 5f3a90a5f6911188b8d1ded08dbdf6d233e9eb7b "GUI: Allow disabling of Mass Add dialog. Saves a few Kb of binary size on the DS, and is not particularly useful on that platform." 240ff87cf4472538d25a1c5628c8d15f1791ab1c "GUI: Don't search for theme zip files on startup when running on the DS. Themes aren't supported anyway, and the search severely delays startup." fe3b18ce0df03117081e83d99f4a2cbd864d3286 | |||
2011-05-17 | GUI: Fix for bug #3303501 "Switching from HQ2x->HQ3x crashes ScummVM". | Johannes Schickel | |
2011-05-17 | CREDITS: retire Kirben (missing file) | strangerke | |
2011-05-17 | GUI: Trying to clarify my comment on ctrl-a/ctrl-e *sigh* | Max Horn | |
2011-05-17 | GUI: Text editing tweaks | Max Horn | |
- Streamline keypad handling - Allow up/down to act like home/end - On Mac OS X, allow ctrl-a and ctrl-e to act like home/end | |||
2011-05-17 | GUI: For a list entry in edit mode, move caret to end | Max Horn | |
2011-05-16 | KYRA: Change engine name to Kyra | Thierry Crozat | |
2011-05-16 | GUI: Apply graphics mode change when closing global options dialog | Thierry Crozat | |
2011-05-16 | ENGINES: Unify engine names | Thierry Crozat | |
This unifies the engine names in MetaEngine::getName() and the credits. In particular drop "Engine" or "engine" from the names when it was present and use expanded names in credits when the MetaEngine uses it (e.g. "Beneath a Steel Sky" instead of "BASS"). | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-08 | I18N: Update translations data file | Thierry Crozat | |
2011-05-08 | I18N: Update translations data file | Thierry Crozat | |
2011-05-07 | GUI: Allow .zip files with case differing from ".zip" as theme files too. | Johannes Schickel | |
Formerly our code used "hasSuffix" to check for a ".zip" suffix. Since hasSuffix does a case-sensitive match that would not work, in case the file was called "scummmodern.ZIP" instead of "scummmodern.zip" for example. To fix that I am using a case-insensitive matchString instead now. | |||
2011-05-05 | GUI: Clean up localized font filename generation. | Johannes Schickel | |
2011-05-02 | I18N: Update translations data file | Thierry Crozat | |
2011-05-02 | I18N: Update translations data file | Thierry Crozat | |
2011-05-02 | GUI: Inform use about ignored games when mass adding | Max Horn | |
2011-05-01 | I18N: Update translations data file. | Thierry Crozat | |
2011-05-01 | I18N: Update translations data file. | Thierry Crozat | |
2011-05-01 | Merge pull request #16 "Add a PixelFormat to Graphics::Surface.". | Johannes Schickel | |
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp | |||
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-28 | JANITORIAL: Format forward declarations to follow convention | Ori Avtalion | |
2011-04-27 | I18N: Update translations data file. | Thierry Crozat | |
2011-04-26 | GUI: Fix warning on systems where char is unsigned | Max Horn | |
2011-04-25 | I18N: Update translations data file. | Thierry Crozat | |
2011-04-25 | Merged pull request #25 from Littleboy/corrupted_theme. | Max Horn | |
ZipArchive and corrupted themes | |||
2011-04-25 | GUI: Make git revision string fit in the modern theme's launcher again. | Johannes Schickel | |
2011-04-24 | GUI: Add basic validity check to ThemeEngine::themeConfigParseHeader ↵ | Littleboy | |
(workaround for #3103051) When loading a corrupted zip, the data returned for THEMERC will be garbage, which will cause an assert in isspace() when trying to trim the data. This checks that the first character of the header is in the range [0;127] and bails out if not. | |||
2011-04-24 | I18N: Update translations data file. | Thierry Crozat | |
2011-04-24 | I18N: Update translations data file. | Thierry Crozat | |
2011-04-22 | I18N: Update translation data file. | Thierry Crozat | |
2011-04-18 | COMMON: Rename Error to ErrorCode, introduce new Error class | Max Horn | |
2011-04-17 | Merge branch 'master' of https://github.com/enginmanap/scummvm | Johannes Schickel | |
2011-04-17 | GUI: Do not access Surface::bytesPerPixel anymore. | Johannes Schickel | |
2011-04-17 | GUI: Prefer Surface::create taking a PixelFormat over the one taking a byte ↵ | Johannes Schickel | |
depth. | |||
2011-04-17 | GUI: Fix indentation problems. Remove unwanted space. | Engin Manap | |
All cosmetic changes, nothing changed. | |||
2011-04-17 | CREDITS: Add buildbot skin to billwashere crontibutions | Thierry Crozat | |
2011-04-17 | GUI: Fix apply old theme even if theme is not changed. | Engin Manap | |
There was no control if theme was changed. If you click cancel, it always changes theme to which options panel opened with. This is unneccessery if theme is not changed so a if statement added before applying old theme. | |||
2011-04-17 | GUI: Fix theme change ignores cancel on options window. | Engin Manap | |
add new protected value _oldTheme. It keeps theme at the init of options window, and cancel button reapplies old theme. | |||
2011-04-16 | CREDITS: Update credits files. | Johannes Schickel | |
2011-04-16 | GUI: Let EditTextWidget notify when the editing is finished | Eugene Sandulenko | |
2011-04-14 | CREDITS: Added credits for TsAGE | Paul Gilbert | |
2011-04-12 | CREDITS: Add credits for WebOS backend | Klaus Reimer | |
2011-04-05 | I18N: Update Ukrainian translation | Thierry Crozat | |
2011-04-05 | GUI: Update the screen after handling events | dhewg | |
Fixes crash on droid: game -> gmm -> save -> click entry (EVENT_SCREEN_CHANGED due to vkeybd beeing shown) -> delete -> confirm another EVENT_SCREEN_CHANGED gets in simultaneously (due vkeybd being deactivated) and the parent dialog updated Rects out of bounds. | |||
2011-04-03 | GUI: ThemeEngine.cpp/.h formatting fixes. | Johannes Schickel | |
2011-04-02 | CREDITS: Pull Jerome Fisher out of retirement (for one final mission, etc.). | Jerome Fisher | |
2011-03-28 | CREDITS: Update Mohawk credits. | Alyssa Milburn | |
2011-03-22 | I18N: Update translation data file | Thierry Crozat | |
2011-03-22 | CREDITS: Add credits for Swedish translation | Thierry Crozat | |