Commit graph

8017 commits

Author SHA1 Message Date
cmitu
678ab766f4 amiberry: update to 5.7.1
Changes in 5.7.1 (https://github.com/BlitterStudio/amiberry/releases/tag/v5.7.1)

* Bugfixes (since 5.6.6):
   - improve CD32 default mapping
   - fix base color for Radiobuttons in SaveStates panel
   - fix KMSDRM video regression
   - fixed background color for SaveStates panel checkboxes
   - when saving a new config in the GUI, it should be selected after the refresh
   - when loading config from the command line and opening the GUI, the settings were reset to defaults
   - always clear the text fields when deleting a config
   - fullscreen toggle didn't quite work
   - quickstart - enabling 2nd floppy drive did not refresh panel
   - make guisan widgets active/inactive status more visible
   - fixed textbox background color in Create hardfile dialog
   - the floppy dropdown wasn't updated properly after a selection
   - fixed CD dropdown did not refresh properly
   - ensure keyboard keys are released when pressing Alt-Tab
   - ignore alt-tab if used to release focus
   - GUI Hardware sprite checkbox wouldn't enable when needed
   - some RTG options were not changed on-the-fly
   - fix mouse drift when using RTG hardware sprite
   - mouse - when using SuperHighRes or Single line modes, the movement scaling was incorrect
   - fix offset for button indicators in ControllerMap GUI
   - mouse: RTG modes can use the positioning directly, but they were affected by the single/double line mode setting, fix absolute positioning
   - fixed crash when using Restart after previous updates
   - Ensure changes in virtual mouse and magic mouse are applied immediately
   - datapath wasn't parsed in WHDBooter
   - bugfix: aspect ratio option was not respected in autocrop
   - bugfix: return empty string when cancelling file/folder dialog
   - fixed select file/folder dialogs briefly showing a scrollbar on startup
   - enter would no longer trigger a KEYDOWN event in guisan
   - fix memory leak when closing filesys unit
   - fixed parsing of ROMs in the GUI
   - don't crash if no kickstarts are found on startup
   - controller hotkey mapping was broken after recent updates
   - fixed navigation in Floppy GUI panel
   - fix all A600 quickstart configs would always incorrectly add Fast RAM
   - start in Quickstart checkbox would not change status
   - virtual Keyboard did not respect Auto-Crop
   - listbox selection color was hardcoded when inactive
   - if Cancel was used in a file/folder dialog, the path would be emptied on return

* Enhancements:
   - Implemented GUI foreground color option for themes
   - Updated floppybridge library to latest version
   - Added button to Create new folder in the dialogs
   - All plugins (floppybridge, capsimg) now live in a separate directory, named "plugins"
   - Added option to log to console
   - Set config name automatically for CD images as well
   - Config panel double-click time reduced to 500ms
   - Improve help text in Config panel,Misc panel,Sound Panel
   - Add console logging details in GUI helptex
   - Added new custom events for Disk Swapper. Two new events were added, Insert Next/Previous disk swapper slot.These allow you to select the next/previous slot and also insert it into DF0: in one step.
   - Added default path for LHA archives. This allows you to set a default path that will be used to load WHDLoad .lha files, for use with the WHDBooter.
   - Added default Floppy, CD-ROM and Hard Drive paths
   - Added option to use "System Default" audio device.This new checkbox in the GUI (Sound panel) will not choose a specific audio device, and instead tell SDL2 to pick the system default one. This helps with systems that may have sound devices that are not listed in the dropdown.
   - Added new WHDLoad panel in GUI. This panel exposes the options that the WHDBooter uses, and allows changes to the slave options before launching a title. The Custom Fields can also be customized from this area. All information is parsed from the same XML that Amiberry uses to match the WHDLoad titles.
   - Added new "Save Mapping" button in Custom Controls.This allows you to save the current mapping for the selected controller as the default, which will be automatically loaded on startup (if the controller is connected).
   - Detect WHDLoad, CD and floppy disk images as parameters in the command line. As a fall back, you can now pass the path to a supported image filename, and it will be loaded automatically. This makes it possible to set Amiberry as the default handler for such files (e.g. .lha, .adf, .adz, .ipf, .cue, .iso, etc.). WHDLoad and CD images trigger the autoloader, while floppy disk images will be loaded into DF0:
   - If a config file that matches the inserted disk image exists, it will be loaded automatically. Otherwise the default one will be used instead. This also makes it easy to save a config after you've loaded a disk image, since the panel will be populated with the right name already.
   - Added support for custom font colors in the GUI theme
2024-06-06 17:36:52 +01:00
Jools Wills
f641162111
Merge pull request #3927 from cmitu/lr-scummvm-gl
lr-scummvm: build with OpenGL(ES) context support
2024-05-31 17:51:40 +01:00
cmitu
ad1c72e460 lr-scummvm: build with OpenGL(ES) context support
Upstream has added support for using an OpenGL(ES2) context for 3D games and HW rendering. The core will request a HW GL context from RetroArch when starting.
Added the necessary parameters to the build to support the GL context for the platform where RetroArch is running.
2024-05-31 17:49:08 +01:00
Jools Wills
a5a5f937fb
Merge pull request #3924 from cmitu/gliden64-fix
mupen64pluus: workaround the GLES GlideN64 regression
2024-05-27 22:12:24 +01:00
cmitu
530560055b mupen64pluus: workaround the GLES GlideN64 regression
Upstream GlideN64 has a regression due to a recent shader related change, which breaks the video output on GLES devices/platforms.
Until this issue is fixed in the upstream GlideN64, build the plugin from a commit before the changes that cause the regression.
2024-05-25 10:13:22 +01:00
Jools Wills
766d28039c
Merge pull request #3881 from cmitu/pegasus-1
pegasus: add new module and small updates
2024-05-22 20:30:56 +01:00
Jools Wills
ab41e37900
Merge pull request #3909 from joolswills/flag_comparisons
Flag comparisons
2024-05-22 20:29:17 +01:00
Jools Wills
f508c6f930 mysticmine - Disable on Debian versions newer than 10 (buster)
The scriptmodule requires Python2 and python modules that are no longer packaged.
2024-05-21 21:20:32 +01:00
Jools Wills
9e8362a98c Convert modules to using variable comparisons in flags
Replace GCC version checks in depends_* functions with variable comparisons in flags.
2024-05-21 21:20:32 +01:00
Jools Wills
781618e6cc packages - allow enabling/disabling a module with comparison flags
rp_module_flags can now contain a variable comparison to enable or disable a scriptmodule.
The comparison should be in the format :\$var:cmp:val or !:\$var:cmp:val

eg. :\$__gcc_version:-lt:7 would be evaluated as [[ $__gcc_version -lt 7 ]]

This would enable a module if the comparison was true or disable if !:\$__gcc_version:-lt:7 was used.
Only global variables set before modules are loaded (eg via system.sh) are supported.

$ is escaped so variables are not evaluated when the module is sourced.
It works without, but provides less useful information in the setup menus as the variable name will not be visible.
2024-05-21 21:20:22 +01:00
Jools Wills
f65014e5a0 dxx-rebirth - use self hosted shareware game data
The official site no longer hosts the files.
2024-05-21 19:38:29 +01:00
Jools Wills
d026921bf2 dxx-rebirth - fix build path on recent dxx-rebirth
Newer dxx-rebirth uses a build/ subfolder.
2024-05-21 19:38:29 +01:00
Jools Wills
5ff541e3b3 dxx-rebirth - fix building on newer distros
In 77bb4c16 the code was locked to an older commit due to incompatibilities with Raspberry Pi OS Buster, but this version doesn't build with newer GCC.

Switch to using the latest code by default but lock to older versions for Buster and GCC 10 and lower

Tested to build correctly on Raspberry Pi OS Buster, Bullseye and Bookworm.
2024-05-21 19:33:18 +01:00
Jools Wills
32a886b91c
Merge pull request #3920 from cmitu/yabause-64bit
yabasanshiro: fix building on ARM64
2024-05-15 20:27:02 +01:00
Jools Wills
917cef33e6
Merge pull request #3921 from joolswills/flags_fix
Move nodistcc flag out of module sections
2024-05-15 20:07:24 +01:00
Jools Wills
28f2c8d367 Move nodistcc flag out of module sections
Errors introduced in #3902 (oops!)
2024-05-15 20:03:58 +01:00
cmitu
7f71c6dddb yabasanshiro: fix building on ARM64
The previous build method on the Pi4 uses a CMake toolchain file which assumes a 32bit ARM system.
To make it compile on ARM64, remove the toolchain file usage and add the appropriate defines/options from it to the CMake invocation.
2024-05-13 05:38:37 +01:00
Jools Wills
6d458aafac
Merge pull request #3916 from theofficialgman/master
emulationstation: fix OpenGL version check
2024-05-08 20:40:18 +01:00
theofficialgman
a9bdf98195 emulationstation: fix OpenGL version check 2024-05-08 15:28:33 -04:00
DirtBag Xon
562d4e4cb4 Add Sega Model3: supermodel 2024-05-06 15:54:06 +01:00
retropieuser
5e0ab1f859
Update platforms.cfg for pc98 and add .cmd files
* Update platforms.cfg for pc98 and add .cmd files
2024-05-06 15:53:49 +03:00
Jools Wills
2c955ef02a
Merge pull request #3914 from cmitu/mame-update4
lr-mame: fix the build for 2016 repository
2024-05-01 07:29:24 +01:00
cmitu
6105ee21d5 lr-mame: fix the build for 2016 repository
We removed the `python3` parameter setup in commit 2a95dd076a, but the build parameters are also used by Mame/Mess 2016.
Mame2016/Mess2016 have python2 still as default, so re-add the `PYTHON_EXECUTABLE` configuration.
2024-05-01 05:53:26 +01:00
Jools Wills
d47d4c55b6
Merge pull request #3913 from cmitu/mame-update3
mame: add GCC requirements for version 0.265
2024-04-30 16:56:20 +01:00
cmitu
b3fc3bed50 mame: add GCC requirements for version 0.265
Starting with version 0.265 (April 2024), GCC 10.3 is required for building MAME.
Enforce this requirement when building the emulator and libretro cores, Debian Buster will be getting 0.264 as the last version.
2024-04-30 15:45:07 +01:00
Jools Wills
eaa8a13885
Merge pull request #3910 from joolswills/mupen64plus_armv8
mupen64plus - fix building on armv8 with 64bit kernel/32bit userland
2024-04-26 01:44:41 +01:00
Jools Wills
fe5bf11159
Merge pull request #3842 from cmitu/kmsxx-add
runcommand: add new 'kms' videomode utility
2024-04-25 18:15:50 +01:00
Gemba
fac3ec4659
skyscraper: echo applied command line options of Skyscraper, 2 scraping modules added. 2024-04-25 19:54:40 +03:00
Jools Wills
01ca2520eb mupen64plus - fix building on armv8 with 64bit kernel/32bit userland
Set HOST_CPU to armv8 when we have the armv8 flag set
2024-04-24 19:03:19 +01:00
Jools Wills
c8bbdc4de1 retropie-setup - bump version to 4.8.7 2024-04-22 21:23:55 +01:00
Jools Wills
b0a36e9dec
Merge pull request #3906 from cmitu/dosbox-staging-3
dosbox-staging: update dependencies and build options
2024-04-22 21:08:01 +01:00
Jools Wills
87bf691cfb
Merge pull request #3904 from cmitu/dolphin-6
dolphin: fix initial config
2024-04-22 21:07:16 +01:00
Jools Wills
28c62fdf1f
Merge pull request #3903 from cmitu/retroarch-config
retroarch: add back the commented config
2024-04-22 21:06:54 +01:00
Jools Wills
88ae6aecb9
Merge pull request #3902 from joolswills/distcc_changes
Distcc changes
2024-04-22 21:06:22 +01:00
cmitu
ce1a5a322c dosbox-staging: update dependencies and build options
1. I've noticed that on newer version of Meson, dependendant packages like `iir` and `mt32emu` are no longer built and linked statically.
Instead, they're created and then installed as dynamic libraries. The installation goes to `$md_inst/lib/<host-triplet>`, so the resulting binary doesn't work out-of-the-box, but the more important issue is that the `libmt32emu` library is not copied. As a result, `dosbox` will not be able to run on such a system.

The issue above doesn't seem to affect the RaspiOS (32/64bit) builds, but I had it happening on Debian Trixie (testing) and a recent Armbian Jammy 22.04 for OrangePi 5.

To make sure the above issue doesn't happen, link the `iir` and `mt32emu` libraries statically. They're always downloaded and built via Meson _wraps_, since there are no Debian packages for them.

2. Updated the dependency list so that:
  * `libslirp` and `fluidsynth` (v2) are installed on Bullseye or newer Debian, so they're not built via Meson wraps
  * `sdl2-image-dev` is not needed by `dosbox-staging` anymore.
  * added `zlib` as an explicit dependency
2024-04-22 04:54:37 +01:00
cmitu
1fd390f968 dolphin: fix initial config
The initial config is missing the 'ISOPaths' option, without it the game paths added in the initial configuration are ignored by Dolphin.
2024-04-21 08:02:55 +01:00
cmitu
f8cfb729a5 retroarch: add back the commented config
Previous commit removed the `retroarch.cfg` from upstream. While the configuration will set the right options in a new config file, we traditionally used the upstream's config as starting point, since it's largely commented and provides pointers for various configuration options.

Restore the previous behavior by including the upstream `retroarch.cfg` in `$md_inst`, since the makefile doesn't copy it during the install target.
2024-04-21 06:26:14 +01:00
Jools Wills
01bd5365c3 lr-picodrive - disable distcc for module
On Raspberry PI OS Bullseye, the distcc wrapper fails at linking stage. It's not a big module so easiest, to disable distcc in this case.
2024-04-17 00:54:41 +01:00
Jools Wills
81106ea4f7 lr-snes9x - add flag nodistcc to disable distcc for module
Remove setting DISTCC_HOSTS to an empty string to disable distcc (now handled by the module flag).
2024-04-17 00:54:41 +01:00
Jools Wills
ac1dce6307 jzintv - add flag nodistcc to disable distcc for module
Remove setting DISTCC_HOSTS to an empty string to disable distcc (now handled by the module flag).
2024-04-17 00:54:41 +01:00
Jools Wills
1da8bdd2c4 mupen64plus - add flag nodistcc to disable distcc for module
Remove setting DISTCC_HOSTS to an empty string to disable distcc (now handled by the module flag).
2024-04-17 00:54:41 +01:00
Jools Wills
cf0e098106 Set distcc variables at the scriptmodule function calling stage
Only configure distcc variables if a module does not have the "nodistcc" flag.

Skip builder/setup modules to avoid having distcc changes propagate to modules built from them.

This allows easily disabling distcc for certain modules that are not compatible.
2024-04-17 00:54:32 +01:00
Jools Wills
9aa86b8f2d
Merge pull request #3878 from cmitu/retroarch-1.17.0
retroarch: upgrade to v1.18.0
2024-04-16 21:22:36 +01:00
Jools Wills
790aa470b7
Merge pull request #3900 from cmitu/staging-pin
dosbox-staging: pin version for videocore
2024-04-16 21:21:48 +01:00
Jools Wills
6eb80fbb8f
Merge pull request #3901 from cmitu/plaform-updates
platform: updates for amdstrad and daphne
2024-04-16 21:20:55 +01:00
cmitu
4dbf5856e0 platform: updates for amdstrad and daphne
* Amstrad: add more supported extensions
 * Daphne: enable the OGV format supported by DirkSimple
2024-04-13 04:57:54 +01:00
cmitu
ac1493cb43 dosbox-staging: pin version for videocore
Latest (0.81) version of Dosbox Staging doesn't go along with the legacy GPU VideoCore drivers, resulting in a SDL window initialization crash. Pin the 0.80.1 version for these devices, maybe a GLES2-only rendering path will be added later on, which would solve this issue.
2024-04-12 04:56:19 +01:00
Jools Wills
656a478ed7
Merge pull request #3899 from joolswills/hatari_mirror
Switch to using the github mirror for Hatari and bump version to 2.4.1
2024-04-12 01:49:11 +01:00
Ryan C. Gordon
b0ceb14f12
Add lr-dirksimple setup script (#3895)
DirkSimple is a laserdisc game player that implements specific titles from scratch, so it uses an arcade game's video content but not its roms. It takes game data in Ogg Theora format, so the "rom" that the core needs is a single .ogv file per game.
2024-04-12 01:46:34 +01:00
Jools Wills
17f41aa933 hatari - Upgrade to v2.4.1
Full changelog: https://raw.githubusercontent.com/hatari/hatari/v2.4.1/doc/release-notes.txt
2024-04-12 01:38:46 +01:00