aboutsummaryrefslogtreecommitdiff
path: root/devtools
AgeCommit message (Collapse)Author
2016-03-28SCUMM: Added detection for Spanish Amiga MMv2. Bug #6982Eugene Sandulenko
2016-03-28JANITORIAL: Whitespace fixEugene Sandulenko
2016-03-25OS X: Implement a Dock Tile Plugin to display recent games menu in dockThierry Crozat
This allows to start a recently played game directly from the dock. The ScummVM.app application should have been permanently added to the dock and the menu is only present when ScummVM is not running. The list of recently played game is written by the taskbar code in ScummVM. The Dock Tile Plugin only reads that list to populate the menu.
2016-03-24DEVTOOLS: Improve SDL2 support in create_project.Johannes Schickel
This adapts MSBuild and XCode project generators to output project files which can be used to build the SDL backend with SDL2 easily.
2016-03-24DEVTOOLS: Slight formatting fix.Johannes Schickel
2016-03-16OPENGL: Resolve OpenGL functions on run-time.Johannes Schickel
Formerly we relied on static linkage. However, in the presense of modern OpenGL (ES) implementations it is not easily identifable which library to link against. For example, on Linux amd64 with nVidia drivers and SDL2 setup to create a GLES 1.1 context one would need to link against libGL.so. However, traditionally GLES 1.1 required to link against libGLESv1_CM.so. To prevent a huge mess we simply resolve the OpenGL functions on run-time now and stop linking against a static library (in most cases). GLES support needs to be enabled manually on configure time for now. Tizen changes have NOT been tested.
2016-03-13DEVTOOLS: Use LTCG for Release configurations in MSBuild project files.Johannes Schickel
Silences linker output that LTCG is used anyway because whole program optimization is enabled for these configurations.
2016-03-09DEVTOOLS: Check configuration and architecture specific directories for MSBuild.Johannes Schickel
2016-03-09DEVTOOLS: Use DLL runtime for MSBuild output.Johannes Schickel
2016-03-09DEVTOOLS: Use libpng16.lib for libpng for MSVC.Johannes Schickel
Modern libpng releases use this library name as output for their MSVC project files.
2016-03-09DEVTOOLS: Enable Edit&Continue on x64 for MSVC2015+.Johannes Schickel
2016-03-09DEVTOOLS: Do not ignore libcmt.lib for MSBuild output.Johannes Schickel
This hints at broken library builds and thus should not be set for us.
2016-03-09DEVTOOLS: Do not hardcode runtime libraries for MSVC2015.Johannes Schickel
2016-03-09DEVTOOLS: Do not specify SCUMMVM_LIBS include dir twice for MSBuild.Johannes Schickel
2016-03-09DEVTOOLS: Fix path separator in MSBuild's global props output.Johannes Schickel
2016-02-26CREDITS: Added myself as GCW0 porterEugene Sandulenko
2016-02-15Merge pull request #667 from a-detiste/masterEugene Sandulenko
JANITORIAL: Typos detected with lintian & grep
2016-02-15JANITORIAL: Typos detected with lintian & grepAlexandre Detiste
2016-02-14Merge pull request #658 from sev-/wageEugene Sandulenko
WAGE: New Engine
2016-01-31CREDITS: Walter is backEugene Sandulenko
2016-01-31CREDITS: Added Martin to AGI engineEugene Sandulenko
2016-01-13SCUMM: Move Russian Dig version description to the generated fieldEugene Sandulenko
2016-01-13SCUMM: Add detection for Russian Dig with subtitlesEugene Sandulenko
2016-01-12SCUMM: Added detection for Russian ZakEugene Sandulenko
2016-01-11CREATE_TOOL: Use tabs instead of spaces...Vincent Bénony
2016-01-11CREATE_TOOL: Renames static libraries used for iOS targetVincent Bénony
2016-01-10SCUMM: Add detection for Russian MM fan-demoEugene Sandulenko
Detection is required due to the font differences.
2016-01-10SCUMM: Add support for Russian MMEugene Sandulenko
2016-01-07DEVTOOLS: Update file list in update-version.pl.Johannes Schickel
59934881a1dc27e0c6030d2133ec3f9aae583df7 removed dists/android/plugin-manifest.xml.in.
2016-01-07IOS: Renames a macroVincent Bénony
2016-01-06DEVTOOL: Fixes a typo in an unused macroVincent Bénony
2016-01-06DEVTOOL: FormattingVincent Bénony
2016-01-06DEVTOOL: Fixes a typoVincent Bénony
2016-01-06DEVTOOL: Removes useless macroVincent Bénony
2016-01-06DEVTOOL: FormattingVincent Bénony
2016-01-06DEVTOOL: Adds a macro for the iOS 7 targetVincent Bénony
2016-01-06IOS: Updates script for iOS 7 targetVincent Bénony
2016-01-06DEVTOOL: CleanupVincent Bénony
2016-01-06IOS: Merge masterVincent Bénony
2016-01-06IOS: Brings support for FluidSynthVincent Bénony
2016-01-06IOS: Support for libmadVincent Bénony
2016-01-06IOS: Compute MD5 identifiers instead of randomVincent Bénony
To avoid recompiling the wole project each time we use the create_project tool.
2016-01-06IOS: Changes the debug information formatVincent Bénony
Mainly, to speed up the development with the "debug" configuration.
2016-01-06IOS: Cleanup Xcode settingsVincent Bénony
2016-01-06IOS: Fixes small issues about the project nameVincent Bénony
2016-01-06IOS: Cleanup preprocessor macrosVincent Bénony
2016-01-06IOS: Modernize Xcode projectVincent Bénony
2016-01-06IOS: More Xcode path fixedVincent Bénony
2016-01-06IOS: Fixes Xcode group pathsVincent Bénony
The generated project paths were recognized by Xcode, but not third party tools, like AppCode.
2016-01-06IOS: Create two targets for old iPhone (iOS <= 6) and new one (iOS >= 7)Vincent Bénony
The "iphone" backend is the support for the old iPhones. The "ios7" backend is for the new iPhones.