Commit graph

1570 commits

Author SHA1 Message Date
Jools Wills
be5dcaf228 bump version to v2.9.6 2020-11-04 14:45:31 +00:00
Jools Wills
eae5f0f7e6 Merge remote-tracking branch 'retropie/master' into stable 2020-11-04 14:44:11 +00:00
Jools Wills
aaf2a3c438
Merge pull request #699 from cmitu/scraper-fix
scraper: add missing 'daphne' platform index
2020-11-04 14:40:54 +00:00
cmitu
d309c848c5 scraper: add missing 'daphne' platform index
Fixes scraping errors due to erroneous system chosen.
2020-11-04 14:30:37 +00:00
Jools Wills
2d6e425260 bump version to v2.9.5 2020-11-03 20:08:17 +00:00
Jools Wills
91760a08df Merge remote-tracking branch 'retropie/master' into stable 2020-11-03 20:07:02 +00:00
Jools Wills
811ae74776
Merge pull request #698 from joolswills/gles1_lib_fix
link with brcmGLESv2 for GLESv1 on the RPI
2020-11-03 20:01:38 +00:00
Jools Wills
9c4949a168 link with brcmGLESv2 for GLESv1 on the RPI - fixes black screen / no output 2020-11-03 19:56:32 +00:00
Jools Wills
0384685f05 cosmetic - indent to 4 spaces 2020-11-03 19:54:52 +00:00
Jools Wills
be9e0f323b bump version to v2.9.4 2020-11-01 21:39:18 +00:00
Jools Wills
534883ed02 Merge remote-tracking branch 'retropie/master' into stable 2020-11-01 21:38:17 +00:00
Jools Wills
fcccca9e64
Merge pull request #697 from joolswills/rpi_default_audiodevice
changed RPI default AudioDevice to HDMI
2020-11-01 21:37:57 +00:00
Jools Wills
0a9345a9e5 changed RPI default AudioDevice to HDMI
New kernels now use HDMI / Headphone - see https://retropie.org.uk/forum/topic/26628/audio-issues-after-latest-raspbian-updates
2020-11-01 20:55:09 +00:00
Jools Wills
12f2685eac
Merge pull request #693 from cmitu/sscraper-atari-fixes
scraper: fix scraping for Atari 800 and Atari XE
2020-10-13 13:14:45 +01:00
cmitu
b264b50b9f scraper: fix scraping for Atari 800 and Atari XE
Platform on ScreenScraper site is 'Atari 8bit' (https://www.screenscraper.fr/systemeinfos.php?plateforme=43).
2020-10-13 15:07:02 +03:00
pjft
c7c3ff5bab
Merge pull request #691 from Kactius/patch-2
Fix typo in FileSorts.h function signature
2020-10-05 09:14:32 +01:00
Kactius
f5be4e693f
es-app/src/FileSorts.cpp maybe a mistake
Sorry, maybe it's not a bug, if someone with more knowledge can or wants to review it, I'm working on putting my personal emulatiostation in Spanish and I found this line by chance.
2020-10-05 09:33:19 +02:00
Jools Wills
55df3d8332
Merge pull request #656 from cmitu/cmake-add-gles2-refactor
cmake: add GLES20 renderer build support
2020-08-11 22:38:26 +01:00
pjft
60c2b1ac30
Merge pull request #677 from cmitu/fix-sharp-platform
fix wrong Sharp X68000 platform id
2020-08-04 16:12:56 +01:00
cmitu
9160c217b0 fix wrong Sharp X68000 platform id 2020-08-04 04:56:23 +01:00
PhilaPhan80
a5f2739c44
Added Daphne emulator to PlatformId enum and GamesDBJSONScraper list to mimic Arcade for TheGamesDB API calls (#674)
* Added Daphne to mimic Arcade for TheGamesDB scraper
* Added Daphne entry to PlatformId enum
2020-07-27 21:07:18 +01:00
pjft
401e2d40f2
Merge pull request #673 from Gemba/fb_add_launch_in_slideshow
Enables Launch and Next also in Slideshow Screensaver
2020-07-25 21:46:59 +01:00
Gemba
094879b31d Enable screensaver control also for image slideshow
squashed after master rrebased
2020-07-18 00:11:19 +02:00
pjft
c15b3868f0
Merge pull request #671 from Gemba/fb_pluralization
Some pluralization fixes when only 1 game in collection/system.
2020-07-14 22:32:40 +01:00
pjft
46526f985f
Merge pull request #672 from Gemba/fb_input_during_screensaver_resets_sleeptimer
Input during screensaver resets sleep timer
2020-07-14 22:28:42 +01:00
Gemba
809a621fd5 Input during screensaver (Joy Right -> next video) delays resets sleep timer.
See proposed change no. 2 - https://retropie.org.uk/forum/topic/26725/es-screensaver-ux-puzzles-and-suggestions
2020-07-12 22:43:51 +02:00
Gemba
d15a066e2f Some pluralization fixes. See proposed change no. 5 in
https://retropie.org.uk/forum/topic/26725/es-screensaver-ux-puzzles-and-suggestions
2020-07-12 22:34:39 +02:00
cmitu
d5d3cbfc4b cmake: add GLES20 renderer build support
Added support for the GLESv2 renderer to the CMake build.

* Refactored the OpenGLES detection for both versions.
     Platform detection is done only in the main project file, settings hints for the GLES headers/libraries detection in the corresponding 'Find' cmake modules.
* Simplified the additions of directories for includes/libraries, based on the same hints added during detection.

Notes:

* GLESv2 is the default for GLES-enabled systems.

* For the Raspberry Pi systems, both the legacy (BRCM) and the new (MESA) GLES libraries can be present.
 The selection can be done via the `USE_MESA_GLES` CMake option (default: Off)
 By default, the legacy (BRCM) libraries/headers are used, without any special configuration.
 For the Pi4, the GL renderer/system must be explicitely selected
 ** select the OpenGL 2 renderer with `-DGL=On`
 ** select the GLESv2 renderer with `-DUSE_MESA_GLES=On`

* the GLESv1 renderer can still be forcibly enabled using the `FORCE_GLESv1` build option, for platforms where GLESv1 is the only option.

Minor - set the start-up project in MS Visual Studio to 'emulationstation'.
2020-06-11 04:28:59 +01:00
Jools Wills
982f6ccb8d bump version to v2.9.3 2020-06-11 04:18:36 +01:00
Jools Wills
6e24dfecfb Merge remote-tracking branch 'retropie/master' into stable 2020-06-11 04:17:30 +01:00
Jools Wills
e7cbf5c4a4
Merge pull request #662 from tomaz82/GL14
Add back OpenGl 1.4 renderer
2020-06-11 03:37:59 +01:00
Jools Wills
e56be5ec8c bump version to v2.9.2 2020-06-09 01:27:01 +01:00
Jools Wills
7aff7ce767 Merge remote-tracking branch 'retropie/master' into stable 2020-06-09 01:26:12 +01:00
Jools Wills
77f271586e cosmetic - fix trailing whitespace errors introduced by 9e39c3a6 2020-06-09 01:06:46 +01:00
Tomas Jakobsson
1a1618debd Add an OpenGl 1.4 renderer ( should fix the issues some had with ancient stoneage GPU's ) 2020-06-08 09:11:28 +02:00
Tomas Jakobsson
f05fb68a67
Merge pull request #661 from tomaz82/undo_std_array
Undo change to use std::array
2020-06-05 22:53:42 +02:00
Tomas Jakobsson
0d3bbdec29 Undo change to use std::array introduced by https://github.com/RetroPie/EmulationStation/pull/646 2020-06-05 22:50:48 +02:00
Tomas Jakobsson
19a2aa334d
Merge pull request #642 from tomaz82/gles20
Adds a GLES20 renderer
2020-06-04 10:35:11 +02:00
Jools Wills
f2f7312c6c
Merge pull request #659 from cmitu/rpi-audio-settings
Audio menu: adjust mixer and OMX sound output options
2020-06-03 23:55:02 +01:00
Jools Wills
21d6636015
Merge pull request #588 from fabricecaruso72/reloadables-fix
Fix Reloadables : Don't reload useless textures that were not loaded at unload time.
2020-06-03 21:05:46 +01:00
Jools Wills
27b1754e1b
Merge pull request #646 from tgnottingham/bugfix/hold_button_to_skip
Input config: initialize hold any button to skip message visibility
2020-06-03 21:02:29 +01:00
Jools Wills
5e1a3f3fac
Merge pull request #658 from cmitu/scraper-updates
scraper - new platform support for BBC Micro, PC88, PC98, Sharp X1, Thomson MO/TO
2020-06-03 21:01:15 +01:00
Jools Wills
28f8e8fd39
Merge pull request #660 from mbeniamino/fix-string-includes
Fixed missing string includes needed by GCC 10
2020-06-03 21:00:43 +01:00
Matteo Beniamino
4fe0c451e1 Fixed missing string includes needed by GCC 10 2020-06-01 11:13:04 +02:00
cmitu
1d01d7e8b9 Audio menu: adjust mixer and OMX output options
* Added 2 new mixer options - HDMI/Headphone - which should be used when the 'snd_bcm2835' module is configured with separate ALSA devices
* Added the 'alsa' output option for 'omxplayer', which enables usage of the default ALSA output device.
* Removed the 'HDMI/Local/Both' sound cards options, they only make sense for OMXPlayer, the default ALSA card names for the Pi are not named like that.
2020-05-28 18:44:24 +01:00
cmitu
72b7db7cc6 Additional platform support - BBC Micro, PC88, PC98, Sharp X1 and Thomson MO/TO 2020-05-26 11:10:06 +03:00
John Rassa
e8069e96b2
Merge pull request #560 from Gemba/master
Set system to sleep on basis of PR#551
2020-05-25 23:46:36 -04:00
Marian Flor
d4a45021f6
Fix to terminate execution of scripts if current script fails.
Execute all scripts for specific event until either all are run with return code 0 or one terminates with return code != 0.
2020-05-19 22:20:19 +02:00
Marian Flor
875276a590
Add return to inform callers.
Some callers needs information about the result of the system command to act accordingly.
2020-05-09 16:06:21 +02:00
pjft
9c46f50497
Merge pull request #645 from pjft/kids-start-menu
Option to show start menu in Kids mode
2020-04-27 10:00:45 +01:00