Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-05 | RELEASE: This is 1.7.0git | Eugene Sandulenko | |
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-04-24 | BASE: Fixed code flow warnings. CID 1002239 | Eugene Sandulenko | |
2013-01-27 | GUI: Allow user to display hidden files in the browser dialog. | Johannes Schickel | |
This implements feature request #3600774 "File browser: show hidden files". | |||
2013-01-26 | Merge branch 'eriktorbjorn-fluidsynth-settings' | Johannes Schickel | |
This is a manual merge of a slightly adapted pull request #296. The changes made are: - Each time the theme format changes, the version was increased - default.inc has been regenerated in the same commit as the theme changes | |||
2013-01-26 | GUI: Make the FluidSynth settings dialog a bit more like Qsynth | Torbjörn Andersson | |
To help people familiar with Qsynth (I'm not, but it seems to be one of the more polished FluidSynth front ends), use the same presentation and terminology for the FluidSynth settings. More to follow. | |||
2013-01-26 | FLUIDSYNTH: Add separate dialog for FluidSynth settings | Torbjörn Andersson | |
I don't really understand what these parameters do, or what the sensible values are, so for now the sliders are limited only by the allowed (or, in one case, "safe") values. | |||
2013-01-02 | JANITORIAL: Fix or silence a couple of Clang analyzer warnings | Torbjörn Andersson | |
Clang will produce plenty of warnings (most of them seem to be of the "if the stars align the wrong way, this may happen" variety), but I don't have the time or patience to look at all of them. | |||
2012-09-26 | GUI: Save/restore the last used page in the grid save/load dialog. | Johannes Schickel | |
This allows opening the dialog on (nearly) the same page again as when it was closed. Sadly due to the different number of entries in the save and load version this is not always exactly the same page as before. Same goes for resolution changes. Thanks to wjp for suggesting this. | |||
2012-09-17 | GRAPHICS: Rework YUV->RGB code a bit | Matthew Hoops | |
2012-09-18 | BASE: Close possible EngineManager memory leak. | D G Turner | |
This singleton was omitted from fuzzie's memory leak fixes in 6bff611. Thanks to Tomaz^ for spotting this. | |||
2012-08-12 | Merge pull request #260 from lordhoto/new-chooser. | Johannes Schickel | |
New save/load chooser Conflicts: gui/saveload.cpp | |||
2012-07-08 | RELEASE: This is 1.6.0git | Eugene Sandulenko | |
2012-06-29 | GUI: Remember last save/load chooser selection. | Johannes Schickel | |
2012-06-14 | BASE: Add operator* to PluginSubclass. | Johannes Schickel | |
2012-05-15 | MIDI: add sndio midi backend | Jonathan Gray | |
New sndio MIDI backend for OpenBSD written by Alexandre Ratchov. Tested with an external MT-32 and fluidsynth. | |||
2012-05-03 | Merge pull request #213 from fuzzie/leak-fixes | Johannes Schickel | |
The pull request in question is "Memory leak fixes". | |||
2012-04-18 | ENGINES: Move table of engines from base/plugins.cpp to new header | Max Horn | |
The new header engines/plugins_table.h is currently manually created and maintained, but could be regenerated by a script in the future. | |||
2012-04-01 | BASE: Construct empty String instead of using "". | Johannes Schickel | |
2012-03-31 | ENGINES: Return all available custom GUI options if no target is specified | Filippos Karapetis | |
This is used to set default settings for all custom game options when an engine starts | |||
2012-03-28 | BASE: Free TTFLibrary singleton on shutdown. | Alyssa Milburn | |
This uses a helper function because TTFLibrary is internal. | |||
2012-03-28 | BASE: Destroy singletons on exit. | Alyssa Milburn | |
2012-03-25 | GUI: Remove leftover code for the global dithering checkbox | Filippos Karapetis | |
2012-03-19 | GUI: Add per-engine and per-game options | Filippos Karapetis | |
2012-03-17 | ALL: Make use of defined() for the preprocessor consistent. | Johannes Schickel | |
This does not change the use of defined for some NDS source files, since they seem to be (based on?) third party code. | |||
2012-03-17 | COMMON: Add a space between a string literal and a macro parameter so C++11 ↵ | Christoph Mallon | |
does not think the latter is a string literal suffix. | |||
2012-02-27 | KEYMAPPER: Rename HardwareKey to HardwareInput | Tarek Soliman | |
2012-02-26 | COMMON: Move RenderMode and GUIOptions functionality into separate files | Max Horn | |
2012-02-22 | KEYMAPPER: Fix mistake in last commit | Tarek Soliman | |
2012-02-22 | KEYMAPPER: Minor cleanup | Tarek Soliman | |
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-21 | KEYMAPPER: Remove automapping dead code | Tarek Soliman | |
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-20 | KEYMAPPER: Move F7 and F8 handling to DefaultEventMapper | Tarek Soliman | |
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. | |||
2012-02-13 | KEYMAPPER: Fix Action ctor args in most keymaps | Tarek Soliman | |
2012-02-12 | KEYMAPPER: Allow ports to define their own global keymap | Tarek Soliman | |
2012-02-10 | BASE: Remove unneeded code in PluginManagerUncached. | Johannes Schickel | |
Thanks to Yotam for confirming that this isn't needed anymore. | |||
2012-02-04 | KEYMAPPER: Added Toggle FullScreen action | Tarek Soliman | |
2012-02-02 | KEYMAPPER: Handle EVENT_MAINMENU directly | Tarek Soliman | |
2012-02-01 | Revert "BASE: Get rid of unecessary friend in PluginManagerUncached." | Alyssa Milburn | |
This reverts commit 1e0de79cf54f2483c819584033ae3405ea7e8011. The only available constructor for PluginManagerUncached is protected, so this broke the builds using it. | |||
2012-02-01 | BASE: Get rid of unecessary friend in PluginManagerUncached. | Johannes Schickel | |
2012-01-29 | GRAPHICS: Add a TTF font class using FreeType2. | Johannes Schickel | |
2012-01-07 | KEYMAPPER: Constantify global keymap name | Tarek Soliman | |
2011-12-30 | KEYMAPPER: Make engine keymap init and cleanup more generic | Tarek Soliman | |
2011-11-23 | BASE: Implement a command to list all available audio devices on the shell. | Johannes Schickel | |
2011-11-20 | TOLTECS: integrate engine | Alex Bevilacqua | |
2011-11-20 | M4: Removed the M4/MADS engine from trunk | Paul Gilbert | |
2011-11-02 | Revert "KEYMAPPER: Make global keymap that is always active" | Tarek Soliman | |
This reverts commit ac85d134b31f770f27d085c0fe4c307e278c1875. | |||
2011-10-27 | KEYMAPPER: Make global keymap that is always active | Tarek Soliman | |
Keymapper now has a global keymap outside the active keymap stack. That global keymap is always checked after the active stack has been checked. |