Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-16 | WIN32: Fix incorrect Windows version check | SupSuper | |
There's no point in testing for Windows 10 since the comparison is already "greater than or equals", and it identifies itself as 6.2 for backwards compatibility. Likely it was failing before because the return type was wrong. Version checks are unreliable anyways, should use feature checks, but "if it ain't broke don't fix it". | |||
2018-12-16 | WIN32: Add DialogManager with system file browser support | SupSuper | |
2018-12-16 | WIN32: Move utility functions to a common wrapper | SupSuper | |
2018-12-16 | OSX: Integrate system file browser into DialogManager | SupSuper | |
2018-12-13 | WIN32: Restore Windows 98 compatibility (bug #10613) | SupSuper | |
Replace calls to GetUserDefaultUILanguage and SHGetFolderPath which aren't supported in older Windows. | |||
2018-12-02 | POSIX: Set the default screenshots path to the XDG Pictures directory | Bastien Bouclet | |
2018-11-26 | SDL: Fix crash when calling OSystem::quit() and OSystem::fatalError() | Thierry Crozat | |
2018-11-15 | WIN32: Move the Windows-specific packaging rules into a separate file | Cameron Cawley | |
2018-10-14 | BACKENDS: Use OSystem::destroy() instead of deleting directly the g_system ↵ | Thierry Crozat | |
instance | |||
2018-08-28 | MACOSX: Fix compilation with the 10.4 SDK | Cameron Cawley | |
2018-08-28 | MACOSX: Update link to documentation | Cameron Cawley | |
2018-08-28 | MACOSX: Give every license file a menu item | angstsmurf | |
We make a renamed copy of the three license files with non-standard suffixes, to make them open in TextEdit by default. | |||
2018-08-28 | MACOSX: Keep the original license files when combining | angstsmurf | |
2018-08-28 | MACOSX: Fix compilation with the 10.9 SDK and below | Cameron Cawley | |
2018-08-28 | MACOSX: Put documentation links in Help menu | Colin Snover | |
The local documents are not currently internationalised simply because the internationalised resources are not put into the right places (NSBundle will handle this automatically when they are); Trac#10464 is a tracking bug for this outstanding issue. Fixes Trac#10437. | |||
2018-08-27 | RISCOS: Mark riscosdist and riscosclean as .PHONY | Cameron Cawley | |
2018-08-27 | RISCOS: Add RISC OS specific clean rule | Cameron Cawley | |
2018-08-18 | POSIX: Allow forbidden symbols required by FreeMiNT | Cameron Cawley | |
2018-08-18 | RISCOS: Specify the original encoding of the translated documentation | Cameron Cawley | |
2018-07-23 | RISCOS: Use a variable for the application name | Cameron Cawley | |
2018-06-29 | RISCOS: Convert documentation to RISCOS-LATIN1 when packaging | Cameron Cawley | |
2018-06-14 | PSP2: enable additional memory | rsn8887 | |
2018-06-15 | RISCOS: Add a script to open the README file based on the system territory | Cameron Cawley | |
2018-06-03 | WIN32: Fix fallback in getSystemLanguage | Cameron Cawley | |
2018-06-03 | WIN32: Move Windows-specific implementation of logMessage out of OSystem_SDL | Cameron Cawley | |
2018-06-03 | WIN32: Move Windows-specific implementation of getSystemLanguage out of ↵ | Cameron Cawley | |
OSystem_SDL | |||
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-05-24 | JANITORIAL: Convert line endings from CRLF/mixed to LF | Adrian Frühwirth | |
2018-04-29 | OSX: Handle encoding conversion for clipboard text | Thierry Crozat | |
2018-04-29 | SDL: Handle encoding conversion for clipboard text | Thierry Crozat | |
2018-04-29 | OSYSTEM: Add API to copy text to clipboard | Thierry Crozat | |
This has also been implemented for the SDL2 and macOS backends. | |||
2018-04-07 | RISCOS: Package translated documentation | Cameron Cawley | |
2018-02-09 | SDL: Do not try to replace FILE with an incompatible type | Colin Snover | |
It’s questionable that the SDL backend code is trying so hard to maintain forbidden symbols at all since backend code is exactly where such things are allowed, and it is a game of whack-a-mole to keep system API changes from breaking this fragile system of symbol redefinitions. Probably this should all just get replaced with a FORBIDDEN_SYMBOL_ALLOW_ALL, but for the time being this at least gets builds working again on up-to-date msys2/mingw-w64 compilers. Fixes Trac#10405. | |||
2018-02-08 | PSP2: allow 'frontpanel_touchpad_mode=true' option in ScummVM.ini | rsn8887 | |
Can change option to 'true' manually in scummvm.ini to force front panel into indirect touchpad mode where the pointer doesn't jump to finger. | |||
2018-01-26 | RISCOS: Don't list RISC OS as a POSIX platform | Cameron Cawley | |
2018-01-24 | PSP2: Set Touchpad Mouse Mode option default to off | rsn8887 | |
2018-01-24 | PSP2: More settings for touch (direct touch on/off, pointer speed) | rsn8887 | |
2017-12-28 | BACKENDS: Remove vkeybdpath override from some ports | Bastien Bouclet | |
DATA_PATH is now search when loading virtual keyboard files, the overrides are no longer required. | |||
2017-12-26 | PSP2: Add controller config, remove joystick event handling | rsn8887 | |
2017-12-26 | SDL: Only enable joystick related features when joysticks are enabled | Bastien Bouclet | |
Fixes #9714. | |||
2017-12-26 | SDL: Cleanup joystick deadzone handling | Bastien Bouclet | |
2017-12-26 | SDL: Move the non analog joystick code to the Symbian port | Bastien Bouclet | |
Symbian was the only user of that code. | |||
2017-12-15 | BUILD: Check if posix_spawn is available in configure | Thierry Crozat | |
2017-12-14 | POSIX: Fix compilation with some old macOS SDKs | Thierry Crozat | |
2017-12-14 | POSIX: Do not hang ScummVM when opening a browser | Colin Snover | |
If the call used to open the browser does not return until the browser is closed, this would previously cause ScummVM to hang. Since we are using waitpid now, we can avoid hanging by telling waitpid to not block on a child which has not exited. | |||
2017-12-14 | POSIX: Fix CVE-2017-17528 | Colin Snover | |
2017-12-02 | PSP2: fix clipping and display quality for odd resolutions (Phantasmagoria) | rsn8887 | |
2017-11-26 | Revert "SDL: Use RLE acceleration for SDL2 transparent surfaces" | Thierry Crozat | |
This reverts commit 6b4195a542083c97f696c843b9823d578b018996. There seemed to be no clear benefit in using RLE for transparent surfaces, and there were a few reports that it might cause crashes on Windows. So to be on the safe side I prefer to revert this commit. | |||
2017-11-19 | SDL: Improve handling of SDL2 keyboard repeat events | Bastien Bouclet | |
- Flag them as repeat events - Disable ScummVM's own repeat event generation This fixes keyboard repeat events not being flagged as such with SDL2, and complies with the user's operating system preferences regarding key repeat timings. | |||
2017-11-17 | SDL: Grab mouse when ScummVM is started in fullscreen mode | Colin Snover | |