-
Notifications
You must be signed in to change notification settings - Fork 16
/
org.libretro.RetroArch.appdata.xml
2427 lines (2427 loc) · 195 KB
/
org.libretro.RetroArch.appdata.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2019 Rob Loach <[email protected]> -->
<component type="desktop-application">
<id>org.libretro.RetroArch</id>
<launchable type="desktop-id">org.libretro.RetroArch.desktop</launchable>
<name>RetroArch</name>
<summary>Frontend for emulators, game engines and media players</summary>
<developer_name>libretro</developer_name>
<url type="homepage">https://www.retroarch.com</url>
<url type="bugtracker">https://github.com/libretro/RetroArch/issues</url>
<url type="help">https://docs.libretro.com</url>
<url type="faq">https://retroarch.com/?page=faq</url>
<url type="donation">https://retroarch.com/index.php?page=donate</url>
<content_rating type="oars-1.0" />
<screenshots>
<screenshot type="default">
<caption>RetroArch main menu</caption>
<image type="source" width="1440" height="792">https://www.retroarch.com/images/ozone-tabs.png</image>
</screenshot>
<screenshot>
<caption>RetroArch running the NES</caption>
<image type="source" width="768" height="672">https://www.libretro.com/wp-content/uploads/2020/03/micromachines-200313-175514-768x672.png</image>
</screenshot>
<screenshot>
<caption>Rabbit : a fighting game from 1997, one of the only Electronic Arts arcade games</caption>
<image type="source" width="768" height="575">https://www.libretro.com/wp-content/uploads/2020/03/rabbit-200313-180233-768x575.png</image>
</screenshot>
<screenshot>
<caption>Wolfenstein 3D (Shareware)</caption>
<image type="source" width="768" height="480">https://www.libretro.com/wp-content/uploads/2020/02/gamemaps-200225-094528-768x480.png</image>
</screenshot>
</screenshots>
<description>
<p>
RetroArch enables you to run classic games on a wide range of computers and consoles through its slick graphical interface. Settings are also unified so configuration is done once and for all.
</p>
<p>
It enables you to run classic games on a wide range of computers and consoles through its slick graphical interface. Settings are also unified so configuration is done once and for all. RetroArch has advanced features like shaders, netplay, rewinding, next-frame response times, runahead, and more!
</p>
</description>
<project_license>GPL-3.0</project_license>
<metadata_license>CC0-1.0</metadata_license>
<releases>
<release version="1.19.1" date="2024-06-10">
<description>
<ul>
<li>WASAPI: Only write when running and fix deadlock</li>
</ul>
</description>
</release>
<release version="1.19.0" date="2024-05-30">
<description>
<ul>
<li>AI: Revert AI translation to previous version (fix for translation not working with HW rendered cores)</li>
<li>AUDIO: Bring back audio toggling on menu toggle</li>
<li>CHEEVOS: Build a default RetroAchievements memory map when no RetroAchievements game is loaded</li>
<li>CHEEVOS: Update to rcheevos 11.3</li>
<li>CHEEVOS: fix hardcore acting as if it's enabled when it isn't</li>
<li>CLANG: Fix clang error incompatible-pointer-types-discards-qualifiers</li>
<li>CLOUDSYNC/LINUX: Enable Cloud Sync by default on Linux builds with network (#16456)</li>
<li>CORE: Set compute fps stats logging to debug level</li>
<li>FFMPEG: Add compatibility with FFMPEG 7.0</li>
<li>GLSLANG: Remove unneeded ENABLE_HLSL code from glslang</li>
<li>GENERAL: Memory leak: Dynamic allocation from msg_hash_get_help_us_enum was not freed.</li>
<li>INPUT/KEYBOARD: Add support for multimedia keys</li>
<li>INPUT/MFI: Pressure sensitive left/right triggers</li>
<li>INPUT/MFI: Fix Start + L1/L2/R2 combinations</li>
<li>INPUT/MFI: Support strong and weak rumble</li>
<li>INTL: Fetch translations from Crowdin</li>
<li>INTL: Add Galician and Norwegian to list of languages</li>
<li>LAKKA: Display reboot/shutdown message also when not saving config on exit</li>
<li>LAKKA: Provide update URL and target name at buildtime</li>
<li>LIBRETRO: Add a debug message for the SET_ROTATION callback</li>
<li>MENU: New function in Quick Menu: Add to Playlist</li>
<li>MENU/XMB: New theme: FlatUX, merging FlatUI and Retroactive themes</li>
<li>NETWORKING/RETROPAD CORE: Fix socket close method</li>
<li>PIXMAN: Update pixman-private.h - patch to fix build issue with musl</li>
<li>PLAYLIST: Cleanup Add to Playlist</li>
<li>SCANNING: Fix for scanning PSP ISOs (and probably few others)</li>
<li>SAVES: Fix core config saving</li>
<li>SAVES: Fix save new config name when core loaded</li>
<li>SAVESTATES: Increase save state chunk size for all platforms - Even a class 6 or class 10 SD card can handle reads and writes on the order of MB/s, which means a 4KB chunk size is just wasting time in syscalls. This could maybe be fixed with a buffering reader but I don't feel comfortable tweaking libretro-common's VFS to handle that. Instead, I thought it would be good to both remove an ifdef and increase the chunk size to 128KB. For cores with small states this will should make state saving virtually instantaneous, and for cores with large states it should be a 32x speedup.</li>
<li>VIDEO: Fix crash when using threaded video - for Mesa 23.2 and later</li>
<li>VIDEO/GL: Fix reinitialization of the threaded gl drivers</li>
<li>VIDEO/VULKAN: Add support for A2R10G10B10 HDR format</li>
<li>VIDEO/VULKAN: Implement HDR readback - screenshot support</li>
<li>WAYLAND: Ignore configure events during splash (fix not remembering window size)</li>
<li>WAYLAND: Use frontend signal handler to quit (fix quit by window close)</li>
<li>WAYLAND: Commit viewport resizes (window resize is more responsive)</li>
</ul>
</description>
</release>
<release version="1.18.0" date="2024-03-23">
<description>
<ul>
<li>AI: Fix narrator language when AI translation and menu languages are different</li>
<li>DISK CONTROL: Add option to disable initial disk change</li>
<li>DISK CONTROL: Visibility option for disk control notifications</li>
<li>DRM: Fix mode vrefresh calculation</li>
<li>INPUT: Fix input state combos including R3 and false triggers of RETROK_UNKNOWN</li>
<li>INPUT: Add a new turbo mode, "Classic (Toggle)"</li>
<li>INPUT: Fix bind hold when axis does not rest at 0</li>
<li>INPUT: Limit axis threshold setting to sensible values</li>
<li>INPUT: Add Overlay Mouse, Lightgun, and Pointer</li>
<li>INPUT/LINUXRAW: Fix device name and hotplug reconnect</li>
<li>LIBRETRO: Add Doxygen-styled comments to parts of the libretro API</li>
<li>LUA: Update Lua to version 5.3.6</li>
<li>MENU: Add sublabels for input bind common entries</li>
<li>MENU: Don't load history and favorites if size is 0</li>
<li>MENU: Don't disable fast forward when entering menu</li>
<li>MENU: Widget position, size, color, icon adjustments</li>
<li>MENU: Fix savestate slots in Qt UI</li>
<li>MENU: Reorder and reduce depth of User Interface menu</li>
<li>MENU/OZONE: Fix sidebar wraparound, visibility after config load, crash after playlist delete</li>
<li>MENU/OZONE: Fix sidebar and sublabel animations</li>
<li>REMOTE RETROPAD: add display for analog axes, indication of inputs already pressed</li>
<li>SAVES: Allow combining saves in content dir with save sorting</li>
<li>SHADER: Added rolling scan line simulation based on the shader subframe feature</li>
<li>UWP: Enable HAVE_ACCESSIBILITY for UWP builds</li>
<li>UWP: Allow UWP build to work with a modified version of Mesa Gallium D3D12</li>
<li>VIDEO: Add subframe shader support for Vulkan/GLcore, enabling shaders to run at higher framerate than the content</li>
<li>VIDEO: Fix restoring fullscreen/windowed setting when unloading override</li>
<li>VIDEO/VULKAN: Fix HDR with Vulkan after reinit</li>
<li>VIDEO/VULKAN: Remove the use of oldSwapchain</li>
<li>VIDEO/GL2: Fix OpenGL ES version detection</li>
<li>WEBDAV: Fixed SEGFAULT in WebDav task sync + type changes</li>
</ul>
</description>
</release>
<release version="1.17.0" date="2024-02-03">
<description>
<ul>
<li>ACCESSIBILITY/TTS: fix target language and missing espeak handling on Linux</li>
<li>AI: AI service reworked: performance increase, automatic translation, configurable subtitle placement, and more</li>
<li>AUDIO/SYNC: Handle Hz skew adjustment for high refresh rates better (BFI, swap interval)</li>
<li>AUDIO/MIXER: Separate ffmpeg/mpv and audiomixer conditionals</li>
<li>AUDIO/WASAPI: Reworked shared buffer operation for more flexibility, fixed exclusive mode last buffer looping when entering menu</li>
<li>CONFIG/OVERRIDES: Fix setting savefile_directory in override file</li>
<li>CONFIG: Force fixed locale for numbers</li>
<li>CHEEVOS: Upgrade to rcheevos 11.0</li>
<li>CHEEVOS: Use rc_client for state management</li>
<li>CHEEVOS: Don't track disc changes when achievements are disabled</li>
<li>CHEEVOS: Reinitialize rewind buffer after loading game with achievements</li>
<li>CHEEVOS: Inform user when server is unreachable</li>
<li>CHEEVOS: Fix crash on first load of game with achievements with threaded video</li>
<li>INPUT: Fix ghost input when setting RETROK_UNKNOWN</li>
<li>INPUT: Default 'Bind Hold' to 0 to prevent problems with controllers not resting at null state</li>
<li>INPUT: Add a setting to allow turbo d-pad directions</li>
<li>INPUT: Don't save mouse buttons to autoconfig</li>
<li>INPUT/MENU: Add option for merging 'Hotkey Enable' device types</li>
<li>INPUT/mFI: disable secondary_joypad to prevent issues with controllers detected both as HID and mFI</li>
<li>INPUT/UDEV: Change event detection to polling in udev_joypad</li>
<li>INPUT/WAYLAND: Use unaccelerated pointer motion to prevent mouse dead zone</li>
<li>LIBRETRO: Add environment command to get playlist path</li>
<li>LIBRETRO/NETPACKET: Switch environment call number from 76 to 78 (retire 76 as it was never used by any core)</li>
<li>MENU: Fix menu analog stick navigation (1.16.0.1)</li>
<li>MENU: Add option to find thumbnail images by playlist rom filename (1.16.0.2)</li>
<li>MENU: Don't process menu events while input is being flushed (1.16.0.2)</li>
<li>MENU: Prevent proceeding to next bind when single binding (1.16.0.3)</li>
<li>MENU: Fix touchscreen menu false positives in case of overlap</li>
<li>MENU: Sort playlists ignoring extension (Playstation 2 should come after Playstation)</li>
<li>MENU: Treat System Volume Information folder as hidden on all platforms</li>
<li>MENU: Add Belarusian language option</li>
<li>MENU: Fix savestate thumbnail behavior when navigating back to playlist while content is still running</li>
<li>MENU: Fix word wrapped widget length</li>
<li>MENU: Add help text to controller drivers</li>
<li>MENU: Fix quit on content close option</li>
<li>MENU: Fix thumbnails in History for content loaded through Load Content</li>
<li>MENU: Flexible thumbnail matching (ROM name - database name - short name)</li>
<li>MENU: Remove legacy thumbnail pack downloader</li>
<li>MENU/GLUI: Icon corrections</li>
<li>MENU/OZONE: Thumbnail related fixes (missing thumbnail bar, fullscreen thumbnail flashing, sidebar focus)</li>
<li>MENU/RGUI: Fix text scaling in 16:9</li>
<li>MENU/XMB: Background images take precedence over color themes, default image opacity set the same as color theme opacity</li>
<li>MENU/XMB: Fix segmentation fault when background image is missing</li>
<li>MENU/XMB: Several corrections and cleanups</li>
<li>MENU/XMB: Layout/thumbnail fixes - Thumbnail layout adjustments, Header title improvements, Handheld layout adjustments</li>
<li>NETWORKING/NETPLAY: Add support for joining MITM servers from command line</li>
<li>NETWORKING/NETPACKET: Interface connection flow improvements</li>
<li>PATCHES: Add support for XDelta-formatted patches.</li>
<li>PATCHES: Fix patching for cores that support contentless mode</li>
<li>RUNLOOP: Frame Rest, experimental sleep feature aiming to lower CPU usage and temperature when using certain CPU hungry vsync modes</li>
<li>RPI: Fix videocore + switchres compile failure</li>
<li>SCAN: Do CRC check on PSP/PSP(PSN) content</li>
<li>VIDEO/GLSL: Add FinalViewportSize support to GLSL</li>
<li>VIDEO/GLSL: Change rotation type to int to maximize compatibility</li>
<li>VIDEO: Use video refresh rate instead of core refresh rate for menu frame limiting</li>
<li>VIDEO: Limit paused video refresh rate</li>
<li>VIDEO: Enforce swap interval 1 in menu if vsync is on</li>
<li>WAYLAND: Enable fallback for screensaver inhibit via D-Bus</li>
<li>WAYLAND: Introduce wp_fractional_scale_v1 protocol for proper fractional scaling</li>
<li>WAYLAND: Update wayland-protocols version to 1.31</li>
</ul>
</description>
</release>
<release version="1.16.0.3" date="2023-09-28">
<description>
<ul>
<li>INPUT: Prevent proceeding to next bind when single binding (#15746)</li>
</ul>
</description>
</release>
<release version="1.16.0" date="2023-09-22">
<description>
<ul>
<li>AUDIO: Fast-Forward Audio Resampling</li>
<li>AUDIO: Reinit audio on audio sync toggle</li>
<li>AUDIO: Count audio samples in stats when rate control is disabled</li>
<li>AUDIO/PULSEAUDIO: Support device list for PulseAudio</li>
<li>ARCHIVE/ZIP: Improve ZIP decompression</li>
<li>CHEEVOS: Upgrade to rcheevos 10.7</li>
<li>CHEEVOS: Don't initialize rcheevos memory unless used</li>
<li>CHEEVOS: Add progress tracker widget</li>
<li>CHEEVOS: Eliminate leaderboard tracker stutter</li>
<li>CHEEVOS: Expand leaderboard visibility settings</li>
<li>CHEEVOS: Collapse trackers with same value definition</li>
<li>CHEEVOS: prevent frame step when hitting rewind button while paused in hardcore</li>
<li>CHEEVOS: disallow video_swap_interval and black_frame_insertion in hardcore</li>
<li>CRT/SWITCHRES: Don't always force core aspect ratio</li>
<li>CRT/SWITCHRES: Fix aspect ratio for tate games on a horizontal screen</li>
<li>CRT/SWITCHRES: Add PAL threshold option for automatic refresh rate switch</li>
<li>CRT/SWITCHRES/KMS: Add KMS modeswitch</li>
<li>COMMAND: Make cmd interface more useful for replay information</li>
<li>CONFIG: Allow all systems to check for backslashes (Windows) as last slash in path. Improves portable core logic</li>
<li>DOWNLOADS/THUMBNAILS: Prevent directory creation on bogus thumbnail downloads</li>
<li>FFMPEG: Fix RetroArch fails to restart streaming when video re-inits and instead starts recording</li>
<li>FRAMESKIP: Use refresh rate instead of core fps for frameskip timing</li>
<li>INPUT: Combo hold + 'enable_hotkey' correction. Fixed issue with having menu toggle hold combo in different button than 'enable_hotkey', which caused 'enable_hotkey' to also act as menu toggle if held long enough, and simplified and unified duplicate code in start+select holds to a single function.</li>
<li>INPUT: input_keyboard_event: Don't check hotkey binds when device is RETRO_DEVICE_POINTER</li>
<li>INPUT: Add input_keymaps_translate_rk_to_ascii() for correct character input to input_keyboard_event</li>
<li>INPUT: input_overlay_poll: Delay clearing INPUT_OVERLAY_BLOCKED flag until there is no overlay input (Avoids stray input after osk_toggle)</li>
<li>INPUT: Send keyboard events for modifiers before other keys (for correct modifier+key input if hitboxes overlap)</li>
<li>INPUT: Remember currently set keyboard mapping bits during same config read, because otherwise customized keybinds can get cleared out of the bits on the next iteration, causing keyboard events to get passed to the core when they should get blocked.</li>
<li>INPUT/AUTOCONFIG: Reinit after updating autoconf profiles</li>
<li>INPUT/LINUX/UDEV: Log mouse devices in info level</li>
<li>INPUT/LINUX/UDEV: First working version of udev driver with touchscreen support and gestures.</li>
<li>INPUT/WAYLAND: Add wayland to input driver list</li>
<li>INPUT/MENU: move port X binds into retropad binds submenu and add appropriate help text and sublabels to discourage people from messing around in there unnecessarily</li>
<li>INPUT/MENU: Add menu icons to 'RetroPad Binds'</li>
<li>INPUT/MENU/OSK: Allow more keyboard actions with menu osk</li>
<li>INPUT/REMAP: Remap label fix when no autoconf profile active</li>
<li>INPUT/REMAP: Add 'Save As' option for remaps and overrides</li>
<li>INPUT/OVERLAY: Add overlay parameter to control x/y separation in auto-scale mode</li>
<li>INPUT/OVERLAY: Revive/rewrite Keyboard Overlay and OSK Toggle. Add keyboard overlay preset, keyboard submenu, and osk_toggle hotkey. Use overlay caching for osk_toggle.</li>
<li>INPUT/OVERLAY: Overlay Caching. Adds overlay_cache_ptr to keep a disabled overlay in memory when it's expected to be shown again. Most input_overlay_deinit calls are replaced with input_overlay_unload, which caches the overlay unless initing/deiniting core or disabling overlays. Loading a cached overlay is done as a swap, intended for osk_toggle.</li>
<li>INPUT/OVERLAY: Add input_overlay_check_mouse_cursor() to preserve show/hide mouse behavior</li>
<li>INPUT/OVERLAY: Don't apply input_overlay_show_mouse_cursor in windowed mode (controlled by mouse grab only)</li>
<li>INPUT/REMAPPING: Stop always reseting to defaults on remap delete</li>
<li>INPUT/SDL: Fix rumble on PS4/PS5 controllers connected via bluetooth</li>
<li>INTL: Fix language detection in Canada to English</li>
<li>LANGEXTRA: Enable language autodetect for all builds with LANGEXTRA</li>
<li>LIBRETRO: Add new context hardware render enums - enables autodetection of DX12 for PS2 core</li>
<li>LIBRETRO: Add API to check JIT availability on iOS</li>
<li>LIBRETRO: Allow RETRO_ENVIRONMENT_SET_MEMORY_MAPS also after core startup. Change the comment in libretro.h about the removed limit and handle the environment call during core runtime in RetroArch.</li>
<li>LIBRETRO/MICROPHONE: Add new API for microphone support.</li>
<li>LIBRETRO: Add new API for querying the device's power state.</li>
<li>LIBRETRO/VFS: Rewrite retro_vfs_file_remove_impl</li>
<li>LINUX: Input driver fix 8+ joypads. It was reported that controllers beyond 8 worked only partially (analogs yes, but not buttons), and the found fix was also confirmed.</li>
<li>MIDI: Show MIDI output first</li>
<li>MENU: Reorganize 'Saving' menu</li>
<li>MENU: Start directory browsing from current value</li>
<li>MENU: Fix menu toggle combo hold with same 'enable_hotkey'</li>
<li>MENU: Add menu scroll home+end actions</li>
<li>MENU: Move 'systemfiles_in_content_dir' from Saving to Core</li>
<li>MENU: Menu navigation acceleration adjustments</li>
<li>MENU: Audio synchronization menu cleanup</li>
<li>MENU: Menu value label cleanup</li>
<li>MENU: Show playlist history/favorites icons by default</li>
<li>MENU: Remove advanced option flag from video rotation + orientation</li>
<li>MENU: Combine audio resampler menu with audio output menu</li>
<li>MENU: Microphone menu cleanup</li>
<li>MENU: Add missing menu visibility option for content dir override</li>
<li>MENU: Fix menu refresh in action_ok_network</li>
<li>MENU: Video settings menu cleanup</li>
<li>MENU: Try to declutter Quick Menu</li>
<li>MENU: Change network port menu options to 'allow_input' mode</li>
<li>MENU: Preselect current core in “Set Core Assocation” menu for more carefree usage</li>
<li>MENU: Focus back to “Set Core Association” item after returning from the menu instead of first item</li>
<li>MENU: Replaced hack fix for focusing the first item after returning from core suggestion “Run” menu after association reset</li>
<li>MENU: Fixed setting core association in history/favorites after resetting it and running without setting</li>
<li>MENU: Relocate playlist manager core association options to prevent accidental resets with Start</li>
<li>MENU: Fraction setting wraparound rounding correction</li>
<li>MENU: Add more missing sublabels</li>
<li>MENU: 'Updater Settings' relocation</li>
<li>MENU: Search box usability improvements</li>
<li>MENU/RGUI: Implement 'Remember Selection' option</li>
<li>MENU/RGUI: Fix savestate thumbnail fullscreen cancel action</li>
<li>MENU/RGUI: Fix and add toggle for playlist thumbnails</li>
<li>MENU/OZONE: Update Dracula theme</li>
<li>MENU/OZONE: Return to sidebar from playlist manage quick access</li>
<li>MENU/OZONE: Sidebar multiline scrolling</li>
<li>MENU/OZONE: Avoid crash if ozone sidebar_index_size is 0</li>
<li>MENU/OZONE: Prevent metadata and footer overlap</li>
<li>MENU/OZONE: Sublabel width tweak</li>
<li>MENU/OZONE: Mouse hover selection fix</li>
<li>MENU/XMB: Message/help box adjustments</li>
<li>MENU/XMB: XMB menu playlist index bugfix</li>
<li>MENU/XMB: Playlist label limit fixes</li>
<li>MENU/XMB: Prevent playlist label truncating long items even when right thumbnail is not enabled/visible</li>
<li>MENU/XMB: Prevent playlist label length resetting to full width on every item change while thumbnail is pending</li>
<li>MENU/XMB: Stop showing playlist entry index outside of playlists</li>
<li>MENU/XMB: Fix menu focus issue when returning from “Set Core Association” if playlist index is greater than the previous menu</li>
<li>MENU/EXPLORE: Prevent flashing when browsing fullscreen thumbnails</li>
<li>MENU/EXPLORE: Match label ticker length behavior with playlists</li>
<li>MENU/SOUNDS: Fix certain audio drivers from hanging when menu pause is enabled with menu sounds</li>
<li>MENU/SOUNDS: Fix menu sounds stopping after fullscreen toggle / video reinit</li>
<li>MENU/QT/WIMP: Cleanup Desktop Menu welcome text</li>
<li>MENU/OVERLAYS: Reorder overlay menu</li>
<li>MICROPHONE: Add support for microphones.</li>
<li>MICROPHONE/ALSA: Add alsa and alsathread microphone drivers.</li>
<li>MICROPHONE/SDL: Add sdl2 microphone driver.</li>
<li>MICROPHONE/WASAPI: Add wasapi microphone driver.</li>
<li>MOBILE: On mobile in portrait mode, don't override custom viewport</li>
<li>NETWORKING: Enhance netpacket interface</li>
<li>NETWORKING/NETPLAY: Enable core host to refuse connecting new players to limit the number of connected players</li>
<li>NETWORKING/NETPLAY: Enable a core to flush outgoing packets and read incoming packets without waiting for the next frame (can be used for lower latency or blocking reads)</li>
<li>OPENDINGUX/RG350: Enable networking for RG350</li>
<li>OPENGL/WAYLAND: Add frame callback after egl_swap_buffers to improve latency when max_swapchain <= 2</li>
<li>OSD/STATISTICS: Show current video + audio drivers in statistics</li>
<li>OSD/STATISTICS: Ensure statistics text is aligned left</li>
<li>PLAYLIST: Change default playlist last played time format</li>
<li>RUNLOOP: Don't count frames while paused</li>
<li>SERENITYOS: Add SerenityOS to the list of supported operating systems</li>
<li>SCANNER: Improve scanner console output</li>
<li>SCANNER: More scanner console output coloring</li>
<li>SCANNER: Improve CLI scan console output</li>
<li>SCANNER: Add content import/scan via CLI</li>
<li>SCANNER/PS1: Serial extraction is now considered a failure if PSX.EXE is found, allowing CRC fallback and actually fixing the game scanning</li>
<li>VIDEO: Correct rotated core provided aspect ratio</li>
<li>VIDEO: Minor adjustments to refresh rate switch behavior</li>
<li>VIDEO: Fix windowed viewport with libretro rotation</li>
<li>VIDEO/SDL2: Use “nearest” scaling in menus</li>
<li>TASKS: Fix corrupt task progress percentage</li>
<li>XVIDEO/MENU: Add menu support to xvideo gfx driver, making it usable</li>
<li>VULKAN: Ignore Fast-Forward Frameskip option</li>
<li>VULKAN/KHR_DISPLAY: Support screen refresh rate with Vulkan KHR_Display context</li>
<li>WAYLAND: Remove splash screen</li>
<li>WAYLAND: Check for pointer before locking it</li>
<li>WAYLAND: Add mouse grab/lock functionality</li>
<li>WAYLAND: Get system wayland-protocols path via pkg-config</li>
</ul>
</description>
</release>
<release version="1.15.1" date="2023-04-27">
<description><p>Hotfix release on top of RetroArch 1.15.0.</p></description>
</release>
<release version="1.15.0" date="2023-03-11">
<url>https://www.libretro.com/index.php/retroarch-1-15-0-release/</url>
<description>
<ul>
<li>AI SERVICE: Fix NVDA switching to Powershell on speak</li>
<li>AUTOMATIC FRAME DELAY: Helped delay to decrease easier when it should and helped delay to stay put when it should when triggering pause & menu with or without pause & fast-forward & slow-motion & geometry change</li>
<li>AUTOMATIC FRAME DELAY: Recalibrate delay on video reinit (fullscreen toggle and such)</li>
<li>AUTOMATIC FRAME DELAY: Show (x effective) only in menu item and not in dropdown list items when auto is enabled</li>
<li>CHEEVOS: Allow repositioning of RetroAchievement notifications</li>
<li>CHEEVOS/MENU: Add Achievements Visibility submenu option</li>
<li>CHEEVOS/MENU: Startup Summary split off from Verbose Mode, added option to hide for games with zero core cheevos</li>
<li>CHEEVOS/MENU: 'Unlocks/Mastery' split into two options</li>
<li>CHEEVOS/MENU: 'Account/Login Messages' split off from 'Verbose', gated all login success/error messages</li>
<li>CONFIG/INPUT: Unload restores current global config</li>
<li>CONFIG/INPUT/OVERRIDES: Removing a file does not unload current override</li>
<li>CONFIG/INPUT/OVERRIDES: Saving an empty override removes the file if it exists, and won't save when it does not</li>
<li>CONFIG/INPUT/OVERRIDES: Prevent the use of RUNLOOP_FLAG_OVERRIDES_ACTIVE with appendconfig</li>
<li>CORE OPTION: Core option setting type checks. Added checks for getting and setting core option type, since otherwise there will be a crash on close content after browsing to core option categories. Also fixed the no-show switch icon for lone wolf "Lock Installed Core"</li>
<li>CLI: Update selected save slot when start with cli --entryslot</li>
<li>CLI: Decouple config CLI append and config overrides</li>
<li>CLI/MENU/XMB: Stop showing bogus previous icon on CLI launch</li>
<li>FRAME DELAY/MENU: Show Frame Delay without VSync</li>
<li>GENERAL: Start unpause restriction. Limit the feature using retropad start button to unpause RA to the setting it was made for; "pause on controller disconnect"</li>
<li>GENERAL: Savestate thumbnail aspect ratio fallback. Thanks to at least one certain core that announces aspect ratio as 0, we have to add the same fallback in savestate thumbnails that is happening elsewhere in normal video driver use anyway</li>
<li>GENERAL: Add support for system subdirs per core/database. Added the trivial and graceful automatic ability to send a different system directory to cores if it exists, for keeping the system dir more sane. First by using the core/library name just like in configs and saves, and then by playlist name, like in thumbnails, and of course default to the current global system dir</li>
<li>GENERAL: Ignore system subdir replacement if subdir has subdirs</li>
<li>GENERAL: Restore cached video driver always on quit</li>
<li>LATENCY/PREEMPTIVE FRAMES: Add Preemptive Frames to Latency Settings. RunAhead alternative that reruns core logic to "rewrite history" before the current frame. Frames are only rerun when the controller state changes, so it's faster overall</li>
<li>LATENCY/PREEMPTIVE FRAMES: Call retro_run before retro_serialize (#14893). Fixes preemptive frames not starting up with a few cores</li>
<li>LOCALIZATION: Updates</li>
<li>LOCALIZATION: Enable localization of video rotation, orientation, and aspect ratio option values</li>
<li>LOCALIZATION: Mixer stream localization also added</li>
<li>LOCALIZATION/MENU/HELP: Context dependent help text for audio and video drivers. Language corrections</li>
<li>LOCALIZATION/MENU/LANGUAGE: Language submenu now shows the progress of translated strings for each language</li>
<li>LOCALIZATION: Help texts now localizable through Crowdin</li>
<li>LIBRETRO: Enable RETRO_ENVIRONMENT_SET_SUPPORT_NO_GAME for libretro-video-processor</li>
<li>LIBRETRO/HW: Add GET_HW_CONTEXT_NEGOTIATION_INTERFACE_SUPPORT</li>
<li>INPUT: Allowing keyboard hotkeys to work without hotkey modifier if modifier is only mapped to RetroPad</li>
<li>INPUT: Allowing keyboard hotkey keys for typing if hotkey modifier is set to keyboard but not pressed</li>
<li>INPUT: Allowing keyboard RetroPad keys for typing if emulated device type is "None"</li>
<li>INPUT/BLUETOOTH: Fix a crash in for BT HID devices. (#14922) pad_connection_destroy() frees slots, no need to free it again</li>
<li>INPUT/BSV/REPLAY: Don't start video recording when BSV recording starts</li>
<li>INPUT/BSV/REPLAY: Don't double-record inputs in BSV recording</li>
<li>INPUT/BSV/REPLAY: Don't autoload states if a BSV file is being played back or recorded</li>
<li>INPUT/BSV/REPLAY: Moved BSV initialization before autoload code</li>
<li>INPUT/BSV/REPLAY: Don't trigger autoload code if there is bsv movie state</li>
<li>INPUT/BSV/REPLAY: Allow for both -e and -R to start a BSV file recording at a state</li>
<li>INPUT/BSV/REPLAY: Add keyboard recording support to BSV</li>
<li>INPUT/BSV/REPLAY: Fix BSV playback from a starting state for DOSbox</li>
<li>INPUT/BSV/REPLAY: Associate states with replays. Now states can be saved and loaded during replay recording and playback in a way that keeps the integrity of the recording. Recordings also have a (moderately) unique identifier associated with them</li>
<li>INPUT/BSV/REPLAY: Add checkpointing feature for replay recordings. If cores are not deterministic, or if they only have bounded determinism, we can obtain less drift if replay files also contain periodic checkpoint states. These are configured by the new retroarch setting replay_checkpoint_interval (measured in seconds). States are inserted into the replay file in between frames. This also fixes the settings display for the replay autoincrement max keep setting</li>
<li>INPUT/FRAMEADVANCE: Use non-rendering pause mode when frameadvance is triggered</li>
<li>INPUT/HOTKEYS/OVERLAYS: Do not block input overlay hotkeys</li>
<li>INPUT/HOTKEYS: Hotkey blocking correction. Turned out the previous hotkey blocking changes worked properly only with winraw driver and not the rest (at least with Windows), because input_keyboard_event() could be called at the wrong moment, and thus storing keyboard menu press there broke the separation of controller Guide menu button and keyboard menu key. Also allowed the blocking to work in both directions so that controller hotkeys won't get blocked if only keyboard has "enable_hotkey" bind</li>
<li>INPUT/LINUX/UDEV: Fix udev guns input when id_mouse is not id_joystick</li>
<li>MENU: Rename 'Standalone Cores' to 'Contentless Cores'</li>
<li>MENU: Music files should also obey builtin_mediaplayer_enable (#14967)</li>
<li>MENU: Relocated items to a more logical order</li>
<li>MENU: Corrected some title capitalizations (when/before/after are not low case, but for/the/a are)</li>
<li>MENU/AUDIO: Add dropdown menu for audio device</li>
<li>MENU/HELP: Help for turbo modes (#14919). Help text added for each of the selectable turbo modes</li>
<li>MENU/INPUT: Add unified back action to all menu drivers. Usability boost for all menu drivers resulting in similar behavior as with Ozone currently, which is pressing back/cancel enough the selection jumps first to Main Menu and when pressed again jumps to the first item, so that when a core is running, Quick Menu is very quickly accessible from anywhere. And when core is not running, the first item would be Load Core</li>
<li>MENU/INPUT: Override bind save + menu manager overhaul</li>
<li>MENU/INPUT: Allowed and fixed input bind saving to overrides</li>
<li>MENU/INPUT: Overhauled override menu</li>
<li>MENU/INPUT: Pressing Start on the top active file entry reloads current overrides as startup would</li>
<li>MENU/SUBLABELS: All under "Configuration File" + moved "Reset to Defaults" to bottom</li>
<li>MENU/SUBLABELS: Quick Menu > Controls > Port x Controls</li>
<li>MENU/SUBLABELS: Port x Controls > Device Type</li>
<li>MENU/RGUI: Fix disabled menu item color. The effect was not working properly, since transparency meant using the core output color as background</li>
<li>MENU/XMB: Fixed playlist manager icons to take Explore Views into account properly</li>
<li>MENU/XMB: Changed XMB Explore View title to match Ozone</li>
<li>MENU/XMB: Added "Switch Icons" option</li>
<li>MENU/XMB: Fix MENU_ACTION_CANCEL when search is active. Nasty issue discovered in XMB which broke search term cancelation</li>
<li>MENU/XMB: Layout corrections:</li>
<li>MENU/XMB: More room for longer item labels and values</li>
<li>MENU/XMB: "Core Downloader" has extra space for item and "installed" indicator</li>
<li>MENU/XMB: Fixed "Menu Scale Factor" to not require restarting to get the actual end result</li>
<li>MENU/XMB: Adjusted scale factor to behave better with both layouts</li>
<li>MENU/XMB: Fixed savestate thumbnails and adjusted vertical fade factor in "Handheld" layout</li>
<li>MENU/XMB: Changed thumbnail shadow to outline and tightened fullscreen thumbnail margins</li>
<li>MENU/XMB: Adjusted global shadow opacity</li>
<li>MENU/XMB: Remove "Framebuffer opacity" from XMB as it does not use it</li>
<li>MENU/OZONE: Fixed playlist manager icons to take Explore Views into account properly</li>
<li>MENU/OZONE: Refresh thumbnail on close content hotkey</li>
<li>MENU/OZONE: Ozone footer enhancements (#14926). Add Help button (Select) and Reset to Default (Start) to footer where applicable</li>
<li>MENU/OZONE: Ozone footer enhancements (#14934). Display Help footer only if there is actual info to be displayed, either actual help, or sublabel if it is not visible otherwise</li>
<li>MENU/OZONE: Ozone footer enhancement: Scan button (#14949). Display Scan button in footer when it is applicable</li>
<li>MENU/OZONE: Add Clear button to Ozone footer (#14947). Add indication of Clear button when it is applicable (currently: keybinds)</li>
<li>MENU/MATERIALUI: Added missing Favorites+History icons in playlist manager</li>
<li>MENU/MATERIALUI: Added "Switch Icons" option</li>
<li>MENU/CHEATS: Added missing icons in cheats (Delete + Copy After/Before)</li>
<li>MENU/CHEATS: Fixed label capitalization in cheats (Add New After/Before This)</li>
<li>MENU/SOUNDS: Add scrolling sounds for RGUI, XMB, MaterialUI and Ozone</li>
<li>MENU/SOUNDS: Better scrolling sound implementation, add new 'notice back' sound</li>
<li>MENU/SOUNDS: Scroll sound fixes. Correctly get list size in xmb.c for playing scrolling sound when switching categories, play the scrolling sound when pressing cancel in ozone, play the sound when scrolling with ZL and ZR, play the correct sound when scrolling with L- MIYOO: L3/R3 support for Dingux Gamepad controller device</li>
<li>MENU/WIDGETS: Show square sized widget on volume mute. Volume widget is currently fixed size always, and thus showing a lot of empty space when muting, therefore shorten the box to icon size only when muting</li>
<li>NETWORKING: Call ssl_socket_close for SSL sockets</li>
<li>NETWORKING/CHEEVOS: net_http - Temporary fix for cheevos crash. Don't use new timeout/poll code for cheevos HTTP requests</li>
<li>NETWORKING/MENU: Network information cleanup:</li>
<li>NETWORKING/MENU: Remove extra space from : delimiter</li>
<li>NETWORKING/MENU: Trim useless/duplicate garbage from the end of ipv6 address. Windows shows %[adapter number], Linux shows %[adapter name], which already shows before the address</li>
<li>NETWORKING/STDIN: Add LOAD_STATE_SLOT N command to stdin/network protocol</li>
<li>OSD/STATISTICS: Add Run-Ahead data to on-screen statistics</li>
<li>QB/CONFIGURE: Add new flags - HAVE_UPDATE_CORE_INFO, ASSETS_DIR, FILTERS_DIR</li>
<li>RECORDING: Add recordings to video history playlist</li>
<li>REWIND: Don't take rewind steps while menu pause active</li>
<li>RUNLOOP: Added a new runloop state for pause which renders last cached frame</li>
<li>RUNLOOP: Allowed rewinding while paused so that it acts like backwards frameadvance. Also moved rewind step taking before menu iteration so that steps won't be lost while in menu when menu_pause is disabled</li>
<li>RUNLOOP: State load and reset while paused will forget pause for x frames in order to show proper output</li>
<li>RUNLOOP: Allowed reading pause hotkey while menu is active</li>
<li>RUNLOOP: Allowed reading screenshot hotkey while menu is active</li>
<li>RUNLOOP: Joined 2 fullscreen hotkey checks to one (Any ideas why they were separated for paused and non-paused states, since one works fine for both..?)</li>
<li>RUNLOOP: Implement GET_HW_CONTEXT_NEGOTIATION_INTERFACE_SUPPORT</li>
<li>SAVESTATES: State slot hotkey adjustments</li>
<li>SAVESTATES: Allow selecting -1 Auto slot with hotkeys</li>
<li>SAVESTATES: Allow wrap-around from -1 to 999 and backwards</li>
<li>SAVESTATES: Show failure message when trying to load a state that does not exist instead of plain "Loading state"</li>
<li>SAVESTATES: Shorten the duration of slot change notification</li>
<li>SAVESTATES: Change the widget type to the same type as shader toggle for better back and forth action</li>
<li>SHADERS: Append Preset feature</li>
<li>SHADERS: Prepend Preset feature</li>
<li>SHADERS: Shader Preset - Wildcard Replacement in Paths on Load</li>
<li>SHADERS/SLANG/SPIRVCROSS: Update to latest SPIRV-Cross, fixing Metal shader compilation issues along the way</li>
<li>STATICALLY LINKED/SALAMANDER: Fix salamander config save on fork for static platforms</li>
<li>TVOS/VULKAN/MOLTENVK: Vulkan on tvOS</li>
<li>VIDEO: Allow manual video swap interval forcing</li>
<li>VULKAN: Fix crash when using multiple physical devices and HW core (#14889)</li>
<li>VULKAN: Detect if wrong PhysicalDevice is returned</li>
<li>VULKAN: Actually query physical device before creating core device</li>
<li>VULKAN: Define and implement v2 of context negotiation interface</li>
<li>VULKAN: Add v2 of context negotiation interface</li>
<li>VULKAN: Add vkEnumerateInstanceVersion symbol</li>
<li>VULKAN: Implement v2 context negotiation</li>
<li>VULKAN: Use compute shaders to upload RGB565</li>
<li>VULKAN: Fix regression with RGB565 and OriginalHistory</li>
<li>VULKAN/WAYLAND: Don't clamp the number of requested images</li>
<li>VULKAN/MENU/RGUI: Fix RGUI on Vulkan on platforms that don't have _pack16 VkFormats</li>
<li>VULKAN/MACOS/OSX: avoid using _PACK16 pixel formats on platforms without them</li>
<li>WAYLAND: On scaled desktops the wayland backend deciding to resize based on values multiplied by the scale factor twice</li>
<li>WAYLAND: Wait for splash screen configuration</li>
<li>WAYLAND: Changes the initial window to show a RetroArch logo copied from the icon of the X11 backend</li>
<li>WAYLAND: Build pointer-constraints and relative-pointer protocols</li>
<li>WAYLAND/GL: GL is sometimes not rescaling property (Super + Left)</li>
</ul>
</description>
</release>
<release version="1.14.0" date="2022-11-19">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.14.0</url>
<description>
<ul>
<li>AUDIO/COREAUDIO/APPLE: Allow coreaudio3 driver to work with audio devices that have 2 or more output channels</li>
<li>CHEEVOS: Fix construction of Cheevos badge path</li>
<li>CLI: Fixed not getting any output when running --version or --features without --verbose</li>
<li>CLI: Fixed crash when running empty - parameter</li>
<li>CLI: Reformatted --features to require less rows and to be more consistent</li>
<li>CLI: Added -V shorthand for --version</li>
<li>CLI: Tab removal + whitespace nits</li>
<li>CONFIG/MIDI: Prevent MIDI startup error with old configurations</li>
<li>DATABASE/EXPLORE/VIEW: Bugfix - RGUI did not clear thumbnail on non-playlist items such as Save and Delete</li>
<li>DATABASE/EXPLORE/VIEW: Bugfix - XMB+Ozone cleared thumbnail in Quick Menu when navigating away from Run</li>
<li>FASTFORWARD: Restore framelimit on fastforward toggle</li>
<li>FFMPEG CORE: Fix runtime error in FFmpeg core when build with FFmpeg n5.1.2 and OpenGL ES</li>
<li>GFX/VIDEO FILTERS: (picoscale_256x_320x240) Added snn function to upscale Fuse (ZX Spectrum) core borderless output to 320x240</li>
<li>HOTKEYS: Further reorder internal hotkey items for consistency and removed SEND_DEBUG_INFO, OVERLAY_NEXT and OSK from visible hotkey bind list</li>
<li>INPUT/AUTOCONFIG: Disable 'pause on controller disconnect' by default - was enabled by default on 1.13.0</li>
<li>INPUT/MENU: Device Index menu refactor</li>
<li>INPUT/OVERLAY: Fix analog drift blocking touch input (could occur on overlay_next if physical inputs shown on overlay)</li>
<li>INPUT/OVERLAY: Fix overlay_next buttons lighting up in unison</li>
<li>INPUT/OVERLAY: Skip meta keys in input_overlay_add_inputs (not supported by input_state_internal)</li>
<li>LEAPFROG: Add Leapfrog (LFx000) Target</li>
<li>LOCALIZATION: Updates</li>
<li>LOCALIZATION/INPUT/IME/MENU/ONSCREEN KEYBOARD: Extended IME and Korean OSK</li>
<li>MENU: Cleanup of help texts</li>
<li>MENU: Allow toggling info off with the same button</li>
<li>MENU: Allow menu wallpaper/background reset. Let's also remove the current wallpaper from the screen when pressing Start</li>
<li>MENU: Null driver shows with different color (Added for all menus the ability to show "disabled" items with a muted color)</li>
<li>MENU/DRIVERS: Menu driver first, Audio Resampler removed because it is enough to exist under audio settings</li>
<li>MENU/INPUT: Moved "Confirm Quit" to Input menu</li>
<li>MENU/INPUT/HOTKEYS: Input hotkey menu completely overhauled to keep related entries together, and also adjusted some labels and sublabels</li>
<li>MENU/OVERLAY: Fix overlays behind menu without core running</li>
<li>MENU/MATERIALUI: Fix home screen on first startup - no more stray entries</li>
<li>MENU/OZONE: Allowed drawing sidebar and thumbnail bar background color also when core is running</li>
<li>MENU/OZONE: Stopped using different padding and position for savestate thumbnails vs imageviewer</li>
<li>MENU/OZONE: Removed gradient background effect when core is running, because some themes already have gradient background, which creates ugly rough steps</li>
<li>MENU/OZONE: Fixed "Gray Light" theme from using the same background as "Gray Dark", which makes selection cursor near impossible to see</li>
<li>MENU/OZONE: Some whitespace corrections</li>
<li>MENU/UX: Extend OFF menu value colors</li>
<li>MENU/UX: Menu icon improvements - Menu Visibility icons (Quick Menu + Settings)</li>
<li>MENU/UX: Menu icon improvements - Playlist Manager icons</li>
<li>MENU/UX: Menu icon improvements - Explore icon as database icon</li>
<li>MENU/UX: Menu icon improvements - View and filter icons as cursor icon (folder icon in GLUI)</li>
<li>MENU/UX: Menu icon improvements - View save + delete icons</li>
<li>MENU/UX: Menu icon improvements - Moved Explore + Views below Standalone Cores</li>
<li>MENU/UX/OZONE: Removed icons from menus where others items don't have icons, and added icons to menus where the rest have icons</li>
<li>MENU/UX/OZONE: Changed the way "no icon" is handled from kludgy way of not drawing SUBSETTING icon</li>
<li>MENU/UX/XMB: Changed playlist entry index positioning to bottom right when thumbnails are in vertical mode</li>
<li>MENU/UX/XMB: Added a rather nasty hack to prevent showing wrong icons under Explore as "breadcrumb" icon</li>
<li>MENU/UX/XMB: Optimized certain icon drawing loops</li>
<li>MENU/UX/MATERIALUI: Fixed showing icons where there should not be any (Waitable Swapchains, Show Recording, Streaming)</li>
<li>SDL GFX: Fix no menu on start/blank screen issue</li>
<li>SRAM: Don't init SRAM saving without content</li>
</ul>
</description>
</release>
<release version="1.13.0" date="2022-11-19">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.13.0</url>
<description>
<ul>
<li>CHEEVOS: Upgrade to rcheevos 10.5</li>
<li>COMPILATION: Fixed compiling with --disable-menu</li>
<li>CONFIG: Don't show override notification with appendconfig alone</li>
<li>DATABASE/PLAYLISTS: Playlist + database changes</li>
<li>FRONTEND: Fix default remaps folder for various cores</li>
<li>HOTKEYS: Fix shader toggle and add hotkey + sublabel</li>
<li>HOTKEYS: Cleanups and corrections</li>
<li>INPUT: Addition to analog stick menu navigation</li>
<li>INPUT: Fixed the way devices were previously indexed</li>
<li>INPUT/AUTOCONFIG: Add option for pause on controller disconnect</li>
<li>INPUT/AUTOCONFIG: Driver independent disconnection notification</li>
<li>INPUT/HID: Added usb hid controllers for the famous ZeroDelay encoder</li>
<li>INPUT/OVERLAY: Add eightway area types</li>
<li>INPUT/OVERLAY: Fix overlay next_index for unnamed targets</li>
<li>LOCALIZATION: Updates</li>
<li>LOCALIZATION: Add Hungarian language option</li>
<li>MENU: Thumbnail fullscreen toggle behavior correction</li>
<li>MENU: Consistent left-right scrolling for Quick Menu items</li>
<li>MENU: Remove useless sublabel from System Information</li>
<li>MENU: Improve widget appearance with missing assets</li>
<li>MENU/INPUT: Add option for swapping menu scrolling buttons</li>
<li>MENU/QT/WIMP: Remove SSL/TLS check at startup</li>
<li>MENU/OZONE: Show metadata helper in footer only with second thumbnail</li>
<li>MENU/OZONE: Footer improvements - Add "Cycle thumbnails" helper when suitable</li>
<li>MENU/OZONE: Footer improvements - Show "Search" helper only when search function is enabled</li>
<li>MENU/OZONE: Footer improvements - Fix "Thumbnails available" helper for save states</li>
<li>MENU/OZONE: Footer improvements - Tighten padding between icon and title, and widen between helpers</li>
<li>MENU/OZONE: Remember selection per main tabs</li>
<li>MENU/OZONE: Remove incomplete assets warning</li>
<li>MENU/OZONE: Add option to adjust cursor memory when changing menu tabs</li>
<li>MENU/OZONE: Further extend texture support for Core Option categories</li>
<li>MENU/XMB: Remove incomplete assets warning</li>
<li>MENU/XMB: Add truncate playlist name option</li>
<li>MENU/XMB: Improve background image selector</li>
<li>MENU/XMB: Add option to adjust cursor memory when changing menu tabs</li>
<li>MENU/XMB: Further extend texture support for Core Option categories</li>
<li>MENU/MATERIALUI: Remove incomplete assets warning</li>
<li>OVERLAYS: Ignore hitboxes with zero area</li>
<li>OVERLAYS: Add 'reach' and 'exclusive' for hitboxes</li>
<li>QB: Don't fail if OSDependent/OGLCompiler libraries are not present</li>
<li>THREADED VIDEO/GLCORE: Fix regression 'Shader presets dont load, when video driver is set to glcore'</li>
<li>VULKAN: Fix HDR inverse tonemapping</li>
</ul>
</description>
</release>
<release version="1.12.0" date="2022-10-18">
<url>https://www.libretro.com/index.php/retroarch-1-12-0-release/</url>
<description>
<ul>
<li>CONFIG/CLI: Allow use of --appendconfig with override cfgs instead of getting ignored</li>
<li>CONFIG/LOGGING: No more console startup logging if logging to file</li>
<li>CONFIG: Saves config on exit only once instead of (worst case scenario) 3 times</li>
<li>DATABASE/EXPLORE/VIEW: Add View feature - Add saving of a filter set in the Explore menu into a so called "View" file which then gets listed alongside playlists. This also adds the ability to filter a category by range in the Explore menu and not just filter on exact matches</li>
<li>FILEBROWSER: Fix regression - certain extensions keep disappearing</li>
<li>INPUT/HAPTIC/OVERLAYS/ANDROID: Improve haptic feedback for input overlays</li>
<li>LINUX/MALI FBDEV: Add conditional support for OpenGL ES 3.x</li>
<li>LOCALIZATION: Updates</li>
<li>LOCALIZATION/ENGLISH: Add British English language option</li>
<li>LOGGING/QT: Increase log buffer to 2048 characters - Vulkan validation layer
messages output correctly now</li>
<li>MENU/XMB: Remember selection per main tabs. Addresses the following : collection playlists can contain hundreds or thousands of items. When scrolling through one, pressing left or right by accident can be common. This resets the playlist to the top</li>
<li>MIST/STEAM/STEAMDECK: Don't expose Black Frame Insertion (BFI) if we are running on a Steam Deck</li>
<li>NETWORKING/WINDOWS: Disable poll support for MSVC 2010 and earlier. WSAPoll is not supported on Windows XP and earlier</li>
<li>NETWORKING/WIIU: Fix socket_connect_with_timeout for WIIU</li>
<li>NETWORKING/WIIU: Fixes RetroAchievements login</li>
<li>NETWORKING/WIIU: Fixes other online updater functionality</li>
<li>SAVESTATES/NOTIFICATIONS: Add delay to savestate notifications, so that GPU savestate screenshots stay untouched</li>
<li>SAVESTATES/SCREENSHOTS: Avoid 'video_gpu_screenshot' with savestates. Allow GPU screenshots with savestates only when there is no other way of getting a screenshot</li>
<li>SCREENSHOTS/VULKAN: Unload screenshot widget texture early. Fixes Vulkan crash when closing content while a screenshot widget is still on-screen</li>
<li>SCREENSHOTS/VULKAN: Fix screenshot widget crash when ticker animating</li>
<li>WAYLAND: Set correct app ID</li>
</ul>
</description>
</release>
<release version="1.11.1" date="2022-10-04">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.11.1</url>
<description>
<ul>
<li>GENERAL: Fix DEFAULT_FILL_TITLE_MACRO</li>
<li>NETWORKING: Add the const qualifier to some function parameters</li>
<li>NETWORKING/NETPLAY/UPNP: Add a private or CGNAT address warning to UPnP</li>
<li>SAVESTATES/SCREENSHOTS: Avoid 'video_gpu_screenshot' with savestates</li>
<li>UWP: Better Save on quit fix</li>
</ul>
</description>
</release>
<release version="1.11.0" date="2022-09-30">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.11.0</url>
<description>
<ul>
<li>AUDIO/AUDIO MIXER: Add missing locks for thread safety</li>
<li>AUDIO/AUDIO MIXER: Fix audio mixer memory leak + remove redundant 'single threaded' rthreads implementation</li>
<li>AUTOSAVE: Change/improve exit behavior of autosave thread</li>
<li>CDROM: Fix memory leak caught with asan - buf passed to filestream_read_file</li>
<li>CORE INFO/NETPLAY: Ensure current core info is initialized at runloop_event_init_core when netplay is enabled</li>
<li>CHEEVOS: Upgrade to rcheevos 10.4</li>
<li>CHEEVOS: Allow creating auto savestate in hardcore</li>
<li>CHEEVOS: prevent invalid memory reference if game has achievements but core doesn't expose memory</li>
<li>CHEEVOS: Release achievement badge textures when video driver is deinitialized</li>
<li>CHEEVOS: Re-enforce hardcore limitations once achievements are loade</li>
<li>CHEEVOS/MENU/MATERIALUI: Show achievement badge icons in MaterialUI driver</li>
<li>DATABASE: Reformat 'rdb_entry_int' - Nitpick adjustments for database entries</li>
<li>DATABASE/EXPLORE: Allow On-Demand Thumbnails in Explore menu</li>
<li>DATABASE/EXPLORE/MENU/OZONE/XMB/RGUI: Explore menu thumbnails</li>
<li>DISC CONTROL: Better Disc Control append focus</li>
<li>AUTOMATIC FRAME DELAY: Added slowmotion resiliency</li>
<li>AUTOMATIC FRAME DELAY: Added string representation for seeing the current effective delay without opening statistics</li>
<li>AUTOMATIC FRAME DELAY: Added "ms" to logging and "(ms)" to label just like in Audio Latency</li>
<li>GENERAL: Don't bake in OpenAL and libcaca by default unless explicitly enabled with configure switch</li>
<li>GENERAL: Reduce amount of strlen calls</li>
<li>GENERAL: Reduce or simply sin/cosf calls</li>
<li>GFX: Fix readability and precision issues in aspectratio_lut</li>
<li>GFX: Add option to manually enable/disable automatic refresh rate switching</li>
<li>GFX: Enable automatic configuration of 'VSync Swap Interval'</li>
<li>GFX/FONT/FREETYPE: Use FT_New_Memory_Face</li>
<li>GFX/THUMBNAILS: Thumbnail aspect ratio fix</li>
<li>GFX/THREADED VIDEO: Optimizations, fixes and cleanups</li>
<li>GFX/VIDEO FILTERS: Add Upscale_240x160-320x240 video filter with 'mixed' method</li>
<li>GLSLANG: Fix compilation with ./configure --disable-builtinglslang</li>
<li>INPUT: Fix off by one error for input_block_timeout setting</li>
<li>INPUT: Analog button mapping fixes</li>
<li>INPUT/HID/LINUX: (qb) Disable HAVE_HID by default for now for Linux as long as there are no working backends for both</li>
<li>INPUT/OVERLAY: Block pointer input when overlay is pressed</li>
<li>INPUT/REMAPPING: input_remapping_save_file - existing remapping file was needlessly reloaded</li>
<li>INPUT/REMAPPING: Add option to disable automatic saving of input remap files</li>
<li>INPUT/LINUX/UDEV: Fix lightgun scaling on Y axis</li>
<li>INPUT/LINUX/X11/LED: Add LED keyboard driver</li>
<li>LIBRETRO/SAVESTATES: Implement an api call for context awareness</li>
<li>LOCALIZATION: Updates</li>
<li>LOCALIZATION: Add Catalan language option</li>
<li>LOCALIZATION: Fix some bad localization</li>
<li>LINUX: Make memfd_create call more backwards compatible by calling it through syscall</li>
<li>LINUX/MALI FBDEV: Fix assertion failed on video threaded switch</li>
<li>MENU: Menu paging navigation adjustments</li>
<li>MENU: New Menu Items for disabling Info & Search buttons in the menu</li>
<li>MENU: Allow the user to use volume up/down/mute hotkeys from within the menu</li>
<li>MENU: Add missing sublabels for non-running Quick Menu</li>
<li>MENU: Reorganize Quick Menu Information</li>
<li>MENU: Savestate thumbnails - Savestate slot reset action</li>
<li>MENU: Allow changing savestate slots with left/right on save/load</li>
<li>MENU: Add 'Ago' to playlist last played styles</li>
<li>MENU: Add proper icons for shader items</li>
<li>MENU/MATERIALUI: Add icon for 'Download Thumbnails'</li>
<li>MENU/XMB: Add options for hiding header and horizontal title margin</li>
<li>MENU/XMB: Dynamic wallpaper fixes</li>
<li>MENU/XMB: Add Daite XMB Icon Theme</li>
<li>MENU/XMB/OZONE: Savestate thumbnail aspect ratio</li>
<li>MENU/XMB/OZONE: Core option category icon refinements</li>
<li>MENU/XMB/OZONE: Fullscreen thumbnail browsing</li>
<li>MENU/XMB/OZONE: Add playlist icons under 'Load Content'</li>
<li>MENU/XMB/OZONE: Thumbnail improvements</li>
<li>MENU/XMB/OZONE: Savestate thumbnail fullscreen + dropdown</li>
<li>MENU/XMB/OZONE: Prevent unnecessary thumbnail requests when scrolling through playlists</li>
<li>MENU/OZONE: Fix playlist thumbnail mouse hover after returning from Quick Menu</li>
<li>MENU/OZONE: Thumbnail visibility corrections</li>
<li>MENU/OZONE: Playlist metadata reformat</li>
<li>MENU/OZONE: Savestate thumbnail fixes</li>
<li>MENU/OZONE: Add savestate thumbnails</li>
<li>MENU/OZONE: Header icon spacing adjustment</li>
<li>MENU/RGUI: Savestate thumbnails</li>
<li>MENU/SETTINGS: Turn Advanced Settings on by default</li>
<li>MENU/WIDGETS: Widget color + position adjustments</li>
<li>NETWORK: Allow MITM server selection on OK callback</li>
<li>NETWORK: Replace socket_select calls</li>
<li>NETWORK: Implement binary network streams</li>
<li>NETWORK: Poll support</li>
<li>NETWORK: Check connect errno for successful connection</li>
<li>NETWORK: Get rid of the timeout_enable parameter for socket_connect</li>
<li>NETWORK: Fix getnameinfo_retro's port value for HAVE_SOCKET_LEGACY platforms</li>
<li>NETWORK: Define inet_ntop and inet_pton for older Windows versions</li>
<li>NETWORK: Define isinprogress function</li>
<li>NETWORK/NATT: Move natt files to "network"</li>
<li>NETWORK/NETWORK STREAMS: Add function netstream_eof</li>
<li>NETWORK/NETPLAY: Fix game CRC parsing</li>
<li>NETWORK/NETPLAY: Disable and hide stateless mode</li>
<li>NETWORK/NETPLAY: Change default for input sharing to "no sharing"</li>
<li>NETWORK/NETPLAY: Enforce a timeout during connection</li>
<li>NETWORK/NETPLAY: Disallow clients from loading states and resetting</li>
<li>NETWORK/NETPLAY: Special saves directory for client</li>
<li>NETWORK/NETPLAY: Ensure current content is reloaded before joining a host</li>
<li>NETWORK/NETPLAY: Fix client info devices index</li>
<li>NETWORK/NETPLAY: Fix input for some cores when hosting</li>
<li>NETWORK/NETPLAY: Memory leak fixes</li>
<li>NETWORK/NETPLAY: Force a core update when starting netplay</li>
<li>NETWORK/NETPLAY: Fix NAT traversal announce for HAVE_SOCKET_LEGACY platforms</li>
<li>NETWORK/NETPLAY: Refactor fork arguments</li>
<li>NETWORK/NETPLAY: Fix content reload deadlocks on static core platforms</li>
<li>NETWORK/NETPLAY: Disallow netplay start when content is not loaded for static core platforms</li>
<li>NETWORK/NETPLAY: Show client slowdown information</li>
<li>NETWORK/NETPLAY: Improve check frames menu entry</li>
<li>NETWORK/NETPLAY: Do not try to receive new data if the data is in the buffer</li>
<li>NETWORK/NETPLAY: Copy data on receive, even if the buffer is full</li>
<li>NETWORK/NETPLAY: Fix lobby sublabel CRC display on some platforms</li>
<li>NETWORK/NETPLAY: Support for customizing chat colors</li>
<li>NETWORK/NETPLAY: Small launch compatibility patch adjustments</li>
<li>NETWORK/NETPLAY: Support for banning clients</li>
<li>NETWORK/NETPLAY: Minor tweaks to the find content task</li>
<li>NETWORK/NETPLAY: Support for gathering client info and kicking</li>
<li>NETWORK/NETPLAY: Fix possible deadlock</li>
<li>NETWORK/NETPLAY: Initialize client's allow_pausing to true</li>
<li>NETWORK/NETPLAY: Disable netplay for unsupported cores</li>
<li>NETWORK/NETPLAY/DISCOVERY: Ensure fixed width ints on packet struct</li>
<li>NETWORK/NETPLAY/DISCOVERY: Support for IPv4 tunneling (6to4)</li>
<li>NETWORK/NETPLAY/DISCOVERY/TASKS: Netplay/LAN Discovery Task refactor</li>
<li>NETWORK/NETPLAY/TASKS: Find content task refactor</li>
<li>NETWORK/NETPLAY/LOBBY: Add setting for filtering out rooms with non-installed cores</li>
<li>NETWORK/NETPLAY/LOBBY: Hide older (incompatible) rooms</li>
<li>NETWORK/NETPLAY/LOBBY: Add a toggleable filter for passworded rooms</li>
<li>NETWORK/NETPLAY/MENU: Chat supported info for the host kick submenu</li>
<li>NETWORK/NETPLAY/MENU: Localize relay servers</li>
<li>NETWORK/NETPLAY/MENU: Host Ban Submenu</li>
<li>NETWORK/NETPLAY/MENU: Add client devices info to the kick sub-menu</li>
<li>NETWORK/NETPLAY/MENU: Path: Netplay -> Host -> Kick Client</li>
<li>NETWORK/UPNP: Attempt support for remaining platforms</li>
<li>NETWORK/UPNP: Support for IPv4 tunneling</li>
<li>ONLINE UPDATER: Online Updater menu reorganizing</li>
<li>PLAYLISTS: Ensure history list will contain CRC32</li>
<li>PLAYLISTS: Fix CRC32 comparison - as state content_crc has crc suffix</li>
<li>SHADERS: Shader Preset Loading of Multiple additional references lines for settings</li>
<li>SHADERS: Shader Load Extra Parameter Reference Files</li>
<li>SHADERS/MENU: Increase shader scale max value</li>
<li>STRING: Do not assume char is unsigned</li>
<li>TASKS: More thread-awareness in task callbacks</li>
<li>TASKS: Fix race condition at task_queue_wait</li>
<li>VFS: Fix various VFS / file stream issues</li>
<li>VULKAN: Fix more validation errors</li>
<li>VULKAN: Attempt to fix validation errors with HDR swapchain</li>
<li>VULKAN/DEBUG: Automatically mark buffer/images/memory with names</li>
<li>VULKAN/DEBUG: Move over to VK_EXT_debug_utils. Debug marker is deprecated years ago</li>
<li>VULKAN/HDR: Fix leak of HDR UBO buffer</li>
<li>VULKAN/BFI: Fix BFI (Black Frame Insertion) regression</li>
</ul>
</description>
</release>
<release version="1.10.3" date="2022-04-11">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.10.3</url>
<description>
<ul>
<li>AI/SERVICE: Disable AI Service setting by default</li>
<li>BLUETOOTH/LAKKA: bluetoothctl: add / modify pairing steps</li>
<li>CHEEVOS: Disallow manual frame delay setting in Hardcore Mode</li>
<li>DATABASE: Serial scanning for Wii now includes WBFS</li>
<li>INPUT/MAPPING: Fix offset + crash when clearing input port binds</li>
<li>INPUT/MAPPING: Fix saving of 'Analog to Digital Type' when configuration overrides are used</li>
<li>INPUT/MAPPING: Fix saving of 'Analog to Digital Type' when configuration overrides are used</li>
<li>LOCALIZATION: Add Valencian language option</li>
<li>LOCALIZATION: Updates</li>
<li>MENU/SETTINGS: Move 'Show Menu Bar' under 'Windowed Mode' settings</li>
<li>MENU/SETTINGS: Add sublabels for 'Subsystems' and 'Input Deadzone/Sensitivity'</li>
<li>MENU/SETTINGS: Move 'On-Screen Notifications' to top</li>
<li>MENU/XMB: Unified the shadow alpha value to a slightly darker one for better readability</li>
<li>MENU/XMB: Corrected the option label and sublabel for actual behavior</li>
<li>STEAM: Introduce Steam Rich Presence</li>
<li>VIDEO: Fast-Forward Frameskip improvement</li>
<li>VIDEO/THREADED: Stability fixes</li>
</ul>
</description>
</release>
<release version="1.10.2" date="2022-03-22">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.10.2</url>
<description>
<ul>
<li>CHEEVOS: Update to rcheevos 10.3.3</li>
<li>CHEEVOS: Support for Arduboy</li>
<li>CHEEVOS: Fix tab sequences in rich presence being turned into t character</li>
<li>CHEEVOS: Fix overflow when parsing float value that has more than 9 digits after the decimal</li>
<li>CHEEVOS: Fix memory mapping when disconnect mask breaks a region into multiple blocks</li>
<li>CORES: Enable manual selection of which cores are displayed in the 'Standalone Cores' menu</li>
<li>DATABASE/EXPLORE: Added more categories to the Explore menu</li>
<li>INPUT/MAPPING: Add 'Manage Remap Files' submenu + automatically save input remaps when closing content</li>
<li>INPUT/MAPPING: Add 'Reset Input Mapping' option to 'Manage Remap Files' menu</li>
<li>INPUT/MAPPING: Fix keyboard device remap nulling</li>
<li>LIBRETRO: RETRO_ENVIRONMENT_SHUTDOWN fix - ensure core is properly unloaded when RETRO_ENVIRONMENT_SHUTDOWN is called</li>
<li>LIBRETRO: RETRO_ENVIRONMENT_SHUTDOWN fix - ensure menu stack is properly flushed when RETRO_ENVIRONMENT_SHUTDOWN is called</li>
<li>LINUX/MALI FBDEV: Fix segfault switching video threaded from quickmenu</li>
<li>LOCALIZATION: Add Czech language support</li>
<li>MENU/SETTINGS: Remove 'Advanced Settings' flag from 'Settings - Core' menu</li>
<li>MENU/MATERIALUI: Add 'Gray Dark + Light' themes</li>
<li>MENU/RGUI: Add 6x10 extended ASCII and Latin Extended A and B fonts</li>
<li>MENU/RGUI: Add 'Gray Dark + Light' themes</li>
<li>MENU/XMB: Add title margin adjustment</li>
<li>MENU/XMB: Vertical fade corrections</li>
<li>MENU/OZONE: The size of the thumbnail bar can now be changed though a new option (Settings - User interface - Appearance)</li>
<li>MENU/OZONE: Add 'Gray Dark + Light' themes</li>
<li>MENU/OZONE: Add thumbnail scale option</li>
<li>HOTKEYS: Added hotkey for toggling sync to exact content framerate</li>
<li>HOTKEYS: Prevent log spam when using rewind hotkey with cores that don't support rewind, if rewind functionality itself is disabled</li>
<li>HOTKEYS: Add hotkey for toggling sync to exact content framerate</li>
<li>STEAM: Use native OSK (Onscreen Keyboard) instead of built-in RetroArch version</li>
<li>STEAM: New built-in core DLC downloader</li>
<li>STEAM: Swap OK/Cancel buttons by default</li>
<li>VIDEO/HDR: Removed redundant copy of buffer in HDR mode if the shader has already a HDR format</li>
<li>VIDEO/HDR: Fixed crash when using stock shader and HDR and previous optimisation</li>
<li>WAYLAND: Dynamically load libdecor at runtime</li>
<li>WAYLAND: Fix splash screen when using xdg_toplevel</li>
<li>WAYLAND: SHM anti-collision for the splash screen</li>
<li>WAYLAND: Skip splash screen if window is not ready</li>
</ul>
</description>
</release>
<release version="1.10.1" date="2022-03-04">
<url>https://github.com/libretro/RetroArch/releases/tag/v1.10.1</url>
<description>
<ul>
<li>CHEEVOS: add mastery placard</li>
<li>CHEEVOS: more description message for missing RetroAchievements credentials</li>
<li>CHEEVOS: prevent occasional infinite wait loading multi-disc game from secondary disc</li>
<li>CHEEVOS: stop load process if unable to retrieve achievement data</li>
<li>CHEEVOS: support for identifying Dreamcast CHDs</li>
<li>CHEEVOS: Updated to 10.3.2</li>
<li>CONTENTLESS CORES: Disable per-game and per-content-directory remaps when running contentless cores</li>
<li>CONTENTLESS CORES: Disable per-game and per-content-directory shader presets</li>
<li>CONTENTLESS CORES: Enable config overrides</li>
<li>CONTENTLESS CORES: Enable runtime logging</li>
<li>CORE INFORMATION: Show core version</li>
<li>CORE UPDATER: Add 'Core System Files Downloader'</li>
<li>CORES/SETTINGS: Add 'Standalone Cores' menu</li>
<li>GBA: New GBA filter Upscale_240x160-320x240</li>
<li>GONG: Removed now that it's a standalone core</li>
<li>HISTORY/FAVORITES: Fix default core on 'Add to Favorites'</li>
<li>INPUT/WAYLAND: Allow toggling mouse grabs</li>
<li>INPUT/WAYLAND: Release keys and mouse buttons on lost focus</li>
<li>LIBRETRO: Fix crash when cores using RETRO_ENVIRONMENT_SET_AUDIO_CALLBACK return false from retro_load_game()</li>
<li>LIBRETRO: Add optional frame skipping when fast-forwarding</li>
<li>LOCALIZATION: Fetch translations from Crowdin</li>
<li>LOCALIZATION: OSD fonts for Chinese, Korean, Arabic and Persian</li>
<li>LOCALIZATION: Translation fixes for various languages</li>
<li>MENU/RGUI: Add dynamic theme</li>
<li>MIYOO: Enable NEAREST audio resampler</li>
<li>MIYOO: Support battery level</li>
<li>NETPLAY: Disable savestates on stateless mode</li>
<li>OZONE/XMB: Improve efficiency/accuracy of History/Favorites icon rendering</li>
<li>RECORDING/FFMPEG: Fix building against FFmpeg 5.0</li>
<li>RETROARCH INFORMATION: No longer report on enabled Python support, which was removed in RetroArch 1.7.8</li>
<li>SAVESTATES: Disable save states based on save state support level defined in core info files</li>
<li>UNIX/WINDOWS: Allow setting the default libretro_directory via environment variable</li>
<li>WAYLAND/VULKAN: Fix Wayland Vulkan not reacting to initial resize</li>
</ul>
</description>
</release>
<release version="1.10.0" date="2022-01-19">
<url>https://www.libretro.com/index.php/retroarch-1-10-0-release/</url>
<description>
<ul>
<li>ARCHIVE: Allow loading files from archive subdirectory</li>
<li>AUDIO: Remove frame limit from audio batch callback</li>
<li>AUDIO/RESAMPLER/NEON: Implement sinc kaiser NEON function</li>
<li>CHEEVOS: Reset hardcore default to enabled; show message when trying to load state in hardcore</li>
<li>CHEEVOS: Fix memory map conversion</li>
<li>CHEEVOS: Check netplay status when unlocking achievements</li>
<li>CHEEVOS: Support for hashing buffered NDS ROMs</li>
<li>CHEEVOS: Fix hung task whe badge does not exist</li>
<li>CLI: Load save states from command-line or playlist</li>
<li>CORE INFO CACHE/SETTINGS: Restore missing Cache Core Info Files menu entry</li>
<li>DATABASE: Serial scanning for Gamecube/MegaCD/SegaCD/Saturn/PSX/PSP/Dreamcast/Wii</li>
<li>FILE IO: Fix incorrect file names for remap files when the content path doesn't have a preceding slash</li>
<li>INPUT/OVERLAY: Added support for showing the overlay behind the menu instead of in front</li>
<li>INPUT/UDEV: Convert abs mouse from screen to viewport coordinates; fix relative mouse coords</li>
<li>INPUT/WAYLAND: Ignore mouse clicks on window decoration</li>
<li>INPUT/WAYLAND: Add scroll wheel support</li>
<li>LINUX: Added support for Linux GameMode, which can be toggled on/off in the Power Management or Latency settings menus</li>
<li>LOCALIZATION: Fetch translations from Crowdin</li>
<li>LOCALIZATION: Add Indonesian, Swedish and Ukrainian language options</li>
<li>LOCALIZATION/MENU/RGUI: Enable Indonesian and Swedish localisations for RGUI</li>
<li>LOGGING: Logging cleanups</li>
<li>LOGGING: Stop logging FPS statistics twice on quit</li>
<li>LOGGING: Log font rendering backend only once</li>
<li>HOTKEYS: Added a hotkey toggle for the on-screen technical statistics</li>
<li>HOTKEYS: Add delay + acceleration to volume hotkeys</li>
<li>MENU: Add option for showing notifications only in menu</li>
<li>MENU/RGUI: Add Finnish to supported languages</li>
<li>MENU/XMB: Optional vertical list item fade</li>
<li>MENU/XMB/OZONE: Category + History/Favorites icons</li>
<li>NETWORK: Fix dummy notification - no longer shows a netplay initialization failed notification when netplay is not enabled</li>
<li>NETWORK: LAN addresses only for UPnP - Some router devices might accept non-LAN addresses without raising an error</li>
<li>NETWORK: Filter out non-connectable rooms. Add an option for filtering out non-connectable netplay rooms</li>
<li>NETWORK: Netplay spectator notification fix. Fix double notification when the host switches to spectator</li>
<li>NETWORK: Prevents long-term pausing from clients dishonoring allow pausing</li>
<li>NETWORK/LOBBY: Lobby Viewer: Filter out rooms that are not running RetroArch</li>
<li>NETWORK/LOBBY: Lobby Viewer: Display a non-connectable tag to non-connectable rooms</li>
<li>NETWORK/LOBBY: Host: Display warning if we are announcing to the internet but our room isn't connectable from there</li>
<li>NETWORK/RELAY: Custom relay server support - Add support for custom user-ran relay servers</li>
<li>NETWORK/RELAY: Replace Canadian relay server with Singapore relay server. Current relays: New York/USA, Madrid/Spain, Sao Paulo/Brazil, Singapore</li>
<li>NETWORK/UPNP: Various refactors/improvements, no more dependent on miniupnpc</li>
<li>NETWORK/UPNP: Various UPnP binding fixes for specific routers</li>
<li>NETWORK/UPNP: Accept IGD v2 service types</li>
<li>NETWORK/UPNP: Delay lobby server announcing - delay the announcing in order to give UPnP's port forwarding more time. Fix the remaining truncation warnings</li>
<li>NETWORK/UPNP: Smart interface selection - Find the most suitable address for UPnP by scoring interfaces on how close their address is to the device's address</li>
<li>OPENGL1: Fix buffer overflow - RetroArch would sometimes crashes at startup when loading asset textures with GL1 driver</li>
<li>VULKAN: Double combined image sampler descriptor pool size - fix segfaults with AMD GPUs using RADV</li>
<li>VULKAN: Emulate mailbox only with Vsync enabled - otherwise have it disabled - useful for VRR/G-Sync/FreeSync</li>
<li>VULKAN/SWAPCHAIN: Vulkan max swapchain images option adjustments</li>
<li>VULKAN/HDR: HDR support - tested on Windows</li>
<li>WAYLAND: Add libdecor for client side decoration</li>
<li>WAYLAND: Use any display for initial metrics</li>
<li>WAYLAND: Fix the window closing, if RetroArch is build without libdecor</li>
<li>WAYLAND: Use checked sizes in EGL resize</li>
<li>WAYLAND: Fix window title update</li>
</ul>
</description>
</release>
<release version="1.9.14" date="2021-12-05">
<url>https://www.libretro.com/index.php/retroarch-1-9-14-release/</url>
<description>
<ul>
<li>AUDIO/MIXER: Increase sample buffer padding</li>
<li>CHEEVOS: Disallow achievements when spectating netplay</li>
<li>CHEEVOS: Fix need-to-activate achievement logic for non-hardcore</li>
<li>CHEEVOS: Don't queue rewind re-init if already on main thread</li>
<li>CHEEVOS: Ignore unofficial achievements unless setting is enabled</li>
<li>CHEEVOS: Use SSL host when available</li>
<li>CHEEVOS: Validate hashes for secondary discs in multi-disc games</li>
<li>CHEEVOS: Ensure placard is initialized on main thread when game has no achievements</li>
<li>CHEEVOS: Audit achievement settings defaults and visibility</li>
<li>CHEEVOS: Show error message when no password provided</li>
<li>CHEEVOS: Use widget for game loaded achievement progress</li>
<li>CONFIG: Honor config_save_on_exit when Reboot/Shutdown is called</li>
<li>DISK CONTROL: Focus on current content entry in Disk Control append/insert</li>
<li>FRAMEDELAY: Auto Frame Delay Improvements</li>
<li>INPUT/GYRO/ACCELEROMETER/ANDROID: Re-enable Gyroscope and Accelerometer when RetroArch resumes or regains focus</li>
<li>INPUT/HID: Fix gamepad disconnect on unrecognized HID device</li>
<li>LAKKA: Patch to fix keyboard typing</li>
<li>LAKKA: CD-ROM eject menu item</li>
<li>LAKKA/BLUETOOTH: Add option to remove pairing</li>
<li>LOGGING: Logging cleanups</li>
<li>NETPLAY: Networking - should not print country for a local lobby</li>
<li>NETPLAY: Added setting to allow/disallow players other than the host from pausing the game</li>
<li>NETPLAY: Added a sublabel for netplay max connections</li>
<li>NETPLAY: Fixed port override macro from not being set immediately after the port setting</li>
<li>NETPLAY: Show passworded rooms on lobby</li>
<li>NETWORK: Make HTTP header parsing case insensitive</li>
<li>NETWORK/UPNP: Fixed memory leaks</li>
<li>NETWORK/UPNP: Added a task_queue_wait to prevent executing two nat tasks at once, so it's also thread safe now</li>
<li>NETWORK/UPNP: Switch to a permanent lease time, but request it to be removed when we do netplay_free</li>
<li>NETWORK/UPNP: Only use a single interface for UPnP, return on the first one found instead of iterating over all of them and opening them one by one</li>
<li>OVERLAYS: Revert changes</li>
<li>VIDEO/ROTATION: Always return false if rotation can't occur</li>
<li>VULKAN: Avoid hard crash when capturing screenshot in emulating mailbox</li>
</ul>
</description>
</release>
<release version="1.9.13.2" date="2021-11-15">
<url>https://www.libretro.com/index.php/retroarch-1-9-13-release/</url>
<description>
<ul>