Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | GUI: Inform use about ignored games when mass adding | Max Horn | |
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 | |
2011-03-22 | I18N: Regenerate translation data file | Thierry Crozat | |
2011-03-09 | CREDITS: Fix typo in previous commit | Thierry Crozat | |
2011-03-09 | CREDITS: Add credits for web sites maintainer and new skins | Thierry Crozat | |
Also add Andre in the credits for Android port. | |||
2011-03-01 | CREDITS: Credit madmoose Smacker video decoder | madmoose | |
2011-03-01 | GUI: Increment theme version. | Johannes Schickel | |
With 50a682e7e1c69082735a07b2261d1c0c61ac12c9 we changed the resolution string in a way which is incompatible with old resolution strings, thus all old theme files are not usable anymore and will cause problems. To avoid that we just increase the version string and thus it is not possible to use them anymore. | |||
2011-02-25 | Revert "GUI: Properly clear the screen buffer" | dhewg | |
This reverts commit c8551b80dd917c35d367c1f15f4b9c2618da3684. Turns out the flicking comes from an updateScreen() call in android's clearScreen(). Besides, this broke GMM... a little | |||
2011-02-24 | GUI: Fix two-step rendering | dhewg | |
This is used when changing directories in the 'add game' dialog or when choosing another tab in the option dialog. Only blit to the overlay on the final pass. Gets rid of highly annoying flickers on androids | |||
2011-02-24 | GUI: Properly clear the screen buffer | dhewg | |
Don't operate on the overlay, it might be a pointer to a texture used by the hardware. This get's rid of some annoying flickers on androids | |||
2011-02-24 | GUI: Make the ThemeParser less dumb | dhewg | |
Instead of running into assert()s due to dumb parser decisions, use 'less than' and 'greater than' width/height conditions on the 'resolution' tags. Seems better than listing >9000 different android resolutions. | |||
2011-02-14 | GUI: Update cursor palette handling for RGBA->RGB change. | Johannes Schickel | |
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 |