aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-25SCI32: Fix kFileIOReadRaw when fewer bytes than requestedsluicebox
Fixes censorship password in Phantasmagoria 1
2019-11-26DIRECTOR: LINGO: Strip comments and trailing whitespaces from the scriptsEugene Sandulenko
2019-11-26DIRECTOR: Added references as parameters to lingo built-insEugene Sandulenko
2019-11-25README: Fix name of config file on iOSThierry Crozat
2019-11-25ANDROID: Add docs and port dist files to AssetsThanasis Antoniou
2019-11-25GLK: Fix Compilation on AmigaOS4D G Turner
2019-11-25I18N: Regenerate translations data fileThierry Crozat
2019-11-24GLK: Implement glk_schannel_create_extPaul Gilbert
2019-11-24ANDROIDSDL: Remove unused graphics managerCameron Cawley
2019-11-24DIRECTOR: Rename Cast class variables to follow our naming conventionsEugene Sandulenko
2019-11-24DIRECTOR: Attach texts to buttons. Now HandV works againEugene Sandulenko
2019-11-24MACGUI: Recognise the fact that Geneva font lives with 2 IDsEugene Sandulenko
2019-11-24DIRECTOR: Properly load A11 script and STXT resourcesEugene Sandulenko
2019-11-24DIRECTOR: Disable for now precompiled script execution from Lscr resourcesEugene Sandulenko
2019-11-24DIRECTOR: Implemented invalidation of cached textEugene Sandulenko
2019-11-24DIRECTOR: More debug output to cast renderingEugene Sandulenko
2019-11-24DIRECTOR: JANITORIAL: Fix whitespaceEugene Sandulenko
2019-11-24DIRECTOR: Properly initialize cached textEugene Sandulenko
2019-11-24GITHUB: Comment out the instructions in the PR templateBastien Bouclet
So people don't accidentally leave them in the final pull request.
2019-11-24GUI: Bump the theme format version numberBastien Bouclet
The DropdownButtonWidget changes broke compatibility with older themes.
2019-11-24DIRECTOR: Sanity check for button drawingEugene Sandulenko
2019-11-24MACGUI: Do not recalc empty textEugene Sandulenko
2019-11-24MACGUI: Temporary fix for Geneva font dualityEugene Sandulenko
2019-11-24GUI: Use the item at the click position in PopUpDialogBastien Bouclet
Fixes the having the drag in the dialog to change the selection on platforms with a touch screen.
2019-11-24GUI: Add DropdownButtonWidget and use it in the launcher for mass addBastien Bouclet
DropdownButtonWidget is a button split in two parts vertically. Clicking the left part triggers a default action. Clicking the right part shows a list of other actions the user can choose from. Using this widget on the launcher lets 'Mass add' be a secondary action of the 'Add' button, removing the necessity of pressing the shift key to access the feature.
2019-11-24LINUXMOTO: Fix CompilationD G Turner
2019-11-24MSVC: Enable C++ Conformance modeSupSuper
Disables non-portable behaviors in modern Visual Studio. This reduces the chance of code compiling correctly in MSVC but failing in other compilers.
2019-11-24LINUXMOTO: Implement horizontal shakeD G Turner
2019-11-24DIRECTOR: Fix symbol printingEugene Sandulenko
2019-11-23DIRECTOR: Add sanity check to c_play()Eugene Sandulenko
2019-11-23README: DE: Add Configuration File Location for iOSLothar Serra Mari
2019-11-23README: Add Configuration File Location for iOSD G Turner
2019-11-23GPH: Remove unused variableCameron Cawley
2019-11-23BACKENDS: Unify formatting between the GPH, Dingux and LinuxMoto backendsCameron Cawley
2019-11-23LINUXMOTO: Hopefully Fix CompilationD G Turner
2019-11-23LINUXMOTO: Further Replacement of old SurfaceSdlGraphicsManager APIsD G Turner
2019-11-23LINUXMOTO: Replace usage of old SurfaceSdlGraphicsManager APIsD G Turner
2019-11-23LINUXMOTO: Fix Missing Declaration in Graphics ClassD G Turner
2019-11-23GLK: MAGNETIC: Even Further Fixes for AmigaOS4 CompilationD G Turner
2019-11-23GLK: MAGNETIC: Further Fixes for AmigaOS4 CompilationD G Turner
2019-11-23GLK: MAGNETIC: Fix Compilation on AmigaOS4D G Turner
This seems to be an issue where the initializer for the members called log get confused for a call to the log() standard library function. Renaming these members with leading underscores and adding some checks for nullptr before usage are good practice in any case and should fix this.
2019-11-22GLK: MAGNETIC: Compilation fixPaul Gilbert
2019-11-22GLK: MAGNETIC: Hooking up loading/saving gamesPaul Gilbert
2019-11-22GLK: Fixing defines clashes between sub-enginesPaul Gilbert
2019-11-22GLK: MAGNETIC: Moving local method static variables to class fieldsPaul Gilbert
2019-11-22GLK: MAGNETIC: Making functions all class methods, statics into class fieldsPaul Gilbert
2019-11-22GLK: MAGNETIC: Startup fixesPaul Gilbert
2019-11-22GLK: MAGNETIC: Added subengine filesdreammaster
2019-11-22POSIX: Fix PSP2 and PS3 buildBastien Bouclet
2019-11-22TRAVIS: Fix Build ReliabilityD G Turner
Travis CI will terminate builds if the log output exceeds around 4MB of text output. With verbose build enabled, this causes the builds to terminate. We could try avoiding this by redirecting standard output from make to /dev/null ... However, the build will then fail due to lack of output in some cases. The limit for that seems to be around 10 minutes of build time with other projects adding a background loop to provide output at 9 minute intervals to avoid this.