Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (libretro-common) Some functions now return len * More string_list removal in menu_displaylist.c * (menu_displaylist.c) Get rid of more string_list usage * (playlist.c) Get rid of string_list usage * (menu) More string_list removal * file_archive_get_file_list_cb - remove string_list usage * (menu_cbs_title.c) Remove string_list usage * Include <compat/posix_string.h> for strtok_r MSVC compatibility * Slight change in header include * (archive_file) Don't know why this won't compile for MSVC - <compat/posix_string.h> gets included which should redefine strtok_r for MSVC usage but it just doesn't work and fails at linking stage, will have to figure this out later * Remove unused variables * (audio/common) Fix header includes * (menu_displaylist.c) More string_list removal * More string_list removal * Fetch translations from Crowdin * generic_action_ok_dropdown_setting - don't use string_list for ST_STRING_OPTIONS * Fix ST_STRING_OPTIONS 'selected' dropdown item - was off by one * Rewrite action_ok_rdb_entry_submenu - no more string_list usage * Rewrite 2 of action_ok_rdb_entry_submenu - now with less allocations * (gfx_animation.c) Small cleanups * (task_overlay.c) No more string_list usage * (task_overlay) remove unused variable * Replace some strlcat usage with strlcpy * Get rid of some unnecessary strlcat usage * (dylib.c) Avoid strlcat usage, camelcase variable name removal and C comments * (gfx_animation.c) Use strlcpy * Buildfix * iOS/tvOS: Add ardens and anarch cores to app store build * (RGUI) rgui_update_menu_sublabel - use strtok_r instead of string_list * (ozone) ozone_draw_osk - use strtok_r instead of string_list * (task_content.c) content_file_override_set - use strtok_r instead of string_list * Put comment back * (core_updater_list) replace string_list usage with strtok_r * (core_updater_list) Remove more string_list usage * Simplifications * input_config_get_bind_string - do proper character counting now, avoid strlcats, and have functions return size_t value indicating how many chars were written * (steam) avoid strlcat usage * task_save_handler - rewrite code - put string on stack instead of heap, avoid using strlcat * Cut down on strlcats * CI: add github workflow to create source-only release tarball closes libretro#16645 * Replace more strlcats * x11: add support for Xss screensaver disabling in case xdg-screensaver isn't installed. * Remove some header includes * (cheevos) Cleanups - only use snprintf for formatting * Fetch translations from Crowdin * Fullscreen refresh rate improvements Handle refresh rate as float in general, and add also extra attributes (interlaced, doublescan) for video modes. Make it possible to select exact mode (interlaced / doublescan modes will not be selected), and allow close matches such as 49.5 Hz for PAL 50 Hz. * Fix MSVC05 compilation failure * Fetch translations from Crowdin * (menu_cbs_deferred_push) Get rid of string_list usage * Simplify gfx_animation_line_ticker_smooth * add intfstream_truncate for file streams Will return 0 for non-file streams. I didn't want to mess around with memory_stream (which could in theory have a truncate impl that sets size) because there were globals and stuff and I got nervous (also truncate might *grow* a file if the new length is longer than the old one and then I'd have to think about realloc, etc). * change some replay file seeks to seek+truncates in record mode * tidy up intfstream_truncate ifdefs. * Fetch translations from Crowdin * [Wayland] Support for mouse buttons 4&5 and horizontal wheel * Fetch translations from Crowdin * Fetch translations from Crowdin * Fetch translations from Crowdin * (libretro-common) Use inline assembly for PowerPC libco This puts the code into the binary's .text section, which is needed for platforms without the ability to map it as RWX (WiiU). Using GNU/AT&T syntax for the assembly here. * Fix exclusive fullscreen condition Spotted in Android compilation: warning: bitwise or with non-zero value always evaluates to true [-Wtautological-bitwise-compare] * Fix keyboard events missing RETROKMOD_NUMLOCK or RETROKMOD_SCROLLOCK - Add missing numlock mod to dinput - Add missing scrolllock mod to x11 - Add missing capslock, numlock, scrolllock and meta mods to android - Add missing scrolllock mod to sdl - Add missing capslock, numlock, scrolllock and meta mods to switch - Add missing numlock mod to winraw - Add missing numlock mod to uwp * Add config values and menu items for viewport bias x/y * Refactor viewport handling/aspect ratio scaling. This mirrors the use of video_viewport_get_scaled_integer for non-integer scaling at various aspect ratios. Two variants are provided, one with implicit device and desired ratios and one with explicit ratios. Also added a flag to video_viewport_get_scaled_integer to indicate the direction of positive y. * Fix build errors on wiiu, directx * [X11] Support for mouse buttons 4 and 5 Support added for extra mouse buttons. Since these buttons were not returned by XQueryPointer(), some additional logic was needed which fit best to scroll wheel handling. * allow saves and configs to be optionally synced to cloud * ensure that all folders are enabled by default. * Fetch translations from Crowdin * (D3D8) Fix build * Silence warnings * (menu_cbs_ok.c) Some cleanups, warning fixes, use strtok_r instead of strtok * (glslang) use strtok_r instead of strtok * strtok_r - small syntactic cleanup * Add missing header * Flip default y positive direction for viewport calc This should fix metal and maybe some directx resizes * Use device ratio when determining portrait orientation * Fetch translations from Crowdin * Skip core unload when Quit on Close Content is set * Fix libretro#16562 support bluetooth keyboards on tvos * Fetch translations from Crowdin * Add header include for rhmap.h * Try to avoid strdup to avoid portability issues * Buildfix * Fetch translations from Crowdin * Android: Improvements to DocumentProvider Added move and rename methods Provider notifies viewer to refresh view when files are changed Bumped up TargetApi annotation for DocumentsContract.buildTreeDocumentUri. Could alternatively use androidx compat class. * Android: Remove External Storage permission * Android: Add function to migrate RetroArch folder from sdcard. * Improvements to migration code Will be squashed before commit * Revert "Improvements to migration code Will be squashed before commit" This reverts commit 3dab003. * Revert "Android: Add function to migrate RetroArch folder from sdcard." This reverts commit b7235e4. * Revert "Android: Remove External Storage permission" This reverts commit 850560d. * Revert "Android: Improvements to DocumentProvider Added move and rename methods Provider notifies viewer to refresh view when files are changed Bumped up TargetApi annotation for DocumentsContract.buildTreeDocumentUri. Could alternatively use androidx compat class." This reverts commit 72db301. * Fetch translations from Crowdin * Fetch translations from Crowdin * Fetch translations from Crowdin * (rhmap) use custom strdup * Fetch translations from Crowdin * Bump robinraju/release-downloader from 1.9 to 1.11 Bumps [robinraju/release-downloader](https://github.com/robinraju/release-downloader) from 1.9 to 1.11. - [Release notes](https://github.com/robinraju/release-downloader/releases) - [Commits](robinraju/release-downloader@v1.9...v1.11) --- updated-dependencies: - dependency-name: robinraju/release-downloader dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump actions/setup-java from 3 to 4 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump actions/setup-python from 4 to 5 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: libretroadmin <[email protected]> Co-authored-by: github-actions <[email protected]> Co-authored-by: Eric Warmenhoven <[email protected]> Co-authored-by: rofl0r <[email protected]> Co-authored-by: zoltanvb <[email protected]> Co-authored-by: zoltanvb <[email protected]> Co-authored-by: Joseph C. Osborn <[email protected]> Co-authored-by: Ash Logan <[email protected]> Co-authored-by: schellingb <[email protected]> Co-authored-by: Jay Paul <[email protected]> Co-authored-by: Jonathan Rascher <[email protected]> Co-authored-by: cwyc <[email protected]> Co-authored-by: LibretroAdmin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information