Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-18 | CONFIGURE: Replace the iconv test with the one from ResidualVM | Cameron Cawley | |
2019-09-17 | CONFIGURE: Fix libcurl detection for macOS | Eugene Sandulenko | |
2019-09-08 | ANDROID: Rewrite to make use of OpenGLGraphicsManager (#1695) | Cameron Cawley | |
* ANDROID: Rewrite to make use of OpenGLGraphicsManager * ANDROID: Fix emulated mouse button up events | |||
2019-09-02 | CONFIGURE: Add check for NSSpeechSynthesizerDelegate protocole availability ↵ | Thierry Crozat | |
on macOS | |||
2019-09-01 | TTS: Rename LinuxTextToSpeechManager to SpeechDispatcherManager | Jaromir Wysoglad | |
Add a new define for the SpeechDispatcherManager | |||
2019-09-01 | TTS: Remove USE_PLATFORM_TTS defines | Jaromir Wysoglad | |
Use defined(USE_TTS) && defined(PLATFORM) instead | |||
2019-09-01 | TTS: Implement TextToSpeechManager for macOS | Thierry Crozat | |
2019-09-01 | TTS: Add checks to configure. | Jaromir Wysoglad | |
Check for presence of required libraries Disable automatic build of TTS on MinGW32 | |||
2019-09-01 | TTS: Minor refactorisations | Jaromir Wysoglad | |
- Add comment to tts initialization on Windows - Correctly free the voicesInfo in linux ttsMan - Remove popState method from linux-text-to-speech.h and windows-text-to-speech.h - Add tts to help in configure - Refactor language setting in gui-manager.cpp It counted with english being the default language in ttsMan constructors, which isn't true anymore. | |||
2019-09-01 | TTS: Prepare for windows TTS | Jaromir Wysoglad | |
Add windows configuration in configure Add basic skeleton to backends Check if ttsMan is initialized in GUI | |||
2019-09-01 | TTS: Refactor tts in configure | Jaromir Wysoglad | |
2019-09-01 | TTS: Add part of linux TTS | Jaromir Wysoglad | |
2019-09-01 | TTS: Create a TTS skeleton | Jaromir Wysoglad | |
2019-08-25 | CONFIGURE: Correct Formatting of ICONV Tests | D G Turner | |
No functional change. | |||
2019-08-25 | CONFIGURE: Check if iconv uses const. | Jaromir Wysoglad | |
I looked at how ResidualVM works with iconv and used a define ICONV_USES_CONST, which they define in configure, thinking it is defined by iconv. I a define of this into configure, so this should fix the build error on osx_intel. | |||
2019-08-24 | CONFIGURE: Move check for iconv down | Jaromir Wysoglad | |
2019-08-24 | CONFIGURE: Add option to compile with iconv. | Jaromir Wysoglad | |
2019-08-18 | GUI: Check if fullscreen is available at runtime | Cameron Cawley | |
2019-08-15 | DS: Disable Bink and Lua | Cameron Cawley | |
This should help to reduce the size of the main executable. | |||
2019-08-13 | COMMON: Move Lua into Common and make it into... | Nipun Garg | |
an engine feature | |||
2019-08-04 | BUILD: Fix missing frameworks for iOS static builds | Colin Snover | |
2019-08-04 | IOS7: Implement isConnectionLimited | Thierry Crozat | |
2019-06-25 | CONFIGURE: Enable libcurl on Switch (works now) | rsn8887 | |
2019-06-21 | CONFIGURE: Disable libcurl on Switch (missing curl-config) | rsn8887 | |
2019-06-21 | CONFIGURE: Re-enable OpenGL on Switch, because it works | rsn8887 | |
OpenGL works when enabled from the start in scummvm.ini, when ScummVM is compiled with latest Switch toolchain packages. It only crashes when switching between SDL modes and OpenGL while ScummVM is running. | |||
2019-06-21 | CONFIGURE: Disable OpenGL on Switch because it crashes | rsn8887 | |
GLES2 crashes when switching between SDL2 graphics and OpenGL graphics. This is a known problem on the platform due to the implementation of GLES2, it crashes on de-init. | |||
2019-06-20 | CONFIGURE: Add --enable-all-unstable-engines option | Cameron Cawley | |
2019-06-17 | RISCOS: Disable debug build by default | Cameron Cawley | |
2019-06-06 | CONFIGURE: Add --disable-all-unstable-engines for use with buildbot | rsn8887 | |
2019-06-06 | CONFIGURE: Add PSP to platforms where debug is off by default | rsn8887 | |
2019-06-02 | CONFIGURE: Remove the 'u' flag from 'ar' in mingw32 | Lothar Serra Mari | |
This patch silences the warnings about the (outdated?) 'u' flag that appears at least when building and linking ScummVM statically on mingw32: "`u' modifier ignored since `D' is the default (see `U')" The cause for this appears to be a bug in recent versions of libtool that most likely will also appear when building on Linux. However, since I have not tested this yet, this patch only disables it for mingw32. The only downside from this patch is that building a non-clean build will take (slightly?) longer since we are no longer just updating (that's what the 'u' is for) changed libraries during the linking stage, but linking all .a files again. | |||
2019-05-24 | CONFIGURE: Update for modern MinGW | Eugene Sandulenko | |
2019-05-22 | CONFIGURE: Add Switch to platforms where debug is off by default | rsn8887 | |
2019-05-18 | BUILD: Fix converting the documentation outside the source directory | Cameron Cawley | |
2019-05-12 | Switch: fix version, remove redundant settings and unneeded defines | rsn8887 | |
2019-05-12 | Switch: fix build, add build instructions, avoid using delete() | rsn8887 | |
2019-05-12 | SWITCH: add nintendo switch support | Cpasjuste | |
2019-05-11 | ANDROID: Fix building armv5te binaries with NDK r14b | Bastien Bouclet | |
The mthumb linker flag was causing the libstdc++ library not to be found. | |||
2019-05-11 | ANDROID: Add support for building arm64 binaries | Bastien Bouclet | |
2019-05-11 | ANDROID: Stop forcibly disabling MT-32 emulator | Colin Snover | |
2019-05-11 | BUILD: Remove bad & outdated flags from Android builds | Colin Snover | |
Most of these flags don't work with modern Android NDKs. The ones that may, like setting sysroot and include directories, don't work properly with standalone toolchains. Users compiling for Android should make sure that they properly set up include paths in their environment CXXFLAGS/LDFLAGS as needed for the compiler to run, instead of relying on configure to do it, since configure can't do it in a toolchain-agnostic manner. | |||
2019-05-11 | BUILD: Pass LDFLAGS on the command line for the endianness test | Bastien Bouclet | |
2019-05-11 | BUILD: Link the test executable for the endianness check | Bastien Bouclet | |
Fixes the test with LTO enabled. | |||
2019-05-02 | CONFIGURE: Fix missing option | Dan Church | |
--disable-updates was omitted from the supported options during the reformat. | |||
2019-04-30 | Fix typo in comment | Hubert Maier | |
2019-04-28 | CONFIGURE: Formatting fixes | Lothar Serra Mari | |
2019-04-26 | CONFIGURE: Fix pandoc check | Thierry Crozat | |
2019-04-21 | CONFIGURE: Generate html README and NEWS by default on macOS | Thierry Crozat | |
There was already a configure option to specify a output format other than plain text, but this had to be specified explicitely when executing configure. Now the ports can define a default other than plain text. On macOS now by default pandoc generate html output. It could in theory also generate rtf, but those are not properly displayed by TextEdit, and in addition TextEdit cannot handle link internal to the document (such as for the TOC). But if we are fine with no link for the TOC, we could pipe the pandoc html output with textutil to generate the RTF documents. Also this change allows to have an extension for the pandoc output files. By default this is empty for plain text (as before) and the same as the format otherwise (for example .rtf or .html). | |||
2019-04-18 | RISCOS: Support creating a StrongHelp manual | Cameron Cawley | |
2019-04-15 | WINCE: Fix compilation | Cameron Cawley | |