Skip to content

Commit b0bde39

Browse files
committed
Updates on Aug 22, 2025 17:25
---------------------------------------------------------------------------------- clk.mk 7d6e24b8ed2bd03e1f9089304955de0f6de610f3 # Version: Commits on Aug 22, 2025 ---------------------------------------------------------------------------------- Merge pull request #1536 from TomHarte/8042Redo Rejig 8042; extend logger for common conditional use case., ------------------------------------------------------------------------------------------ dolphin-emu.mk 2e09dc0fdda2818d89a7962d5eb44339fb6b467a # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------------ Merge pull request #13891 from jordan-woyak/grooverider-ini GameINI: Disable ImmediateXFBEnable for Grooverider., ------------------------------------------------------------------------------------- hatari.mk 1524b194b2b29e72938095d3642adea9a5bc0a60 # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------- Make auto-sleeper take sleep time from program name It increases the program size, but one does not need to build new ones to experiment with sleep times., ----------------------------------------------------------------------------------------- lightspark.mk 24cd92f269ee97c6ed2ecdc5f0777e89578e7e92 # Version: Commits on Aug 21, 2025 ----------------------------------------------------------------------------------------- [ABCContext] don't turn egative zero\ constants into integer fixes regressions from previous commit in ruffle tests, ---------------------------------------------------- pcsx2.mk v2.5.120 # Version: Commits on Aug 21, 2025 ---------------------------------------------------- - [Qt: Rework the settings window](PCSX2/pcsx2#13066) ----------------------------------------------------------------------------------- play.mk 7062c5e67a4a90b75fe1d0221c43f678a0d049b6 # Version: Commits on Aug 19, 2025 ----------------------------------------------------------------------------------- Remove minimum size on bootable view widget., --------------------------------------------------------------- ruffle.mk nightly-2025-08-22 # Version: Commits on Aug 22, 2025 --------------------------------------------------------------- ## What's Changed * tests: Fix `avm2/mouse_wheel_events` & `avm2/edittext_line_methods` by @kjarosh in ruffle-rs/ruffle#21425 * core: Make code more readable for PixelRegion (nit) by @Flawake in ruffle-rs/ruffle#21433 * avm1: Resolve _root from display object's root by @jarca0123 in ruffle-rs/ruffle#21337 * chore: Mark `avm2/stage3d_errors_atf` test as flaky by @kjarosh in ruffle-rs/ruffle#21427 * ci: Add test coverage by @kjarosh in ruffle-rs/ruffle#21342 * chore: Fix clippy warnings by @kjarosh in ruffle-rs/ruffle#21438 **Full Changelog**: ruffle-rs/ruffle@nightly-2025-08-21...nightly-2025-08-22, ------------------------------------------------------------------------------------------- xenia-native.mk 765073021a3fd0ec193f89ff224aad5a3af31551 # Version: Commits on Aug 22, 2025 ------------------------------------------------------------------------------------------- [CPU/XEX] Use fmt to make hash string, check size, ----------------------------------------------------------------------------------- ymir.mk a831035fedc92eef05b31f552c1ce61321bb1d11 # Version: Commits on Aug 21, 2025 ----------------------------------------------------------------------------------- fix(SH2): Fix MOVA offset when in delay slot, ------------------------------------------------------------------------------------ box64.mk cb2c29c5f992cb4e5ec481f8d99b973b90411403 # Version: Commits on Aug 22, 2025 ------------------------------------------------------------------------------------ [INTERP] Refactored how 64/65/66/67 and F2/F3 prefixes are handled, removing some (mostly) duplicated code, --------------------------------------------------------------------------------------- corsixth.mk ac604c5f00b0e9c9cadd0d4d40ea7c2bcf6febeb # Version: Commits on Aug 22, 2025 --------------------------------------------------------------------------------------- Update screenshot function (#2972), ------------------------------------------------------------------------------------------ devilutionx.mk 0c3fe1345cab72586dfcf1d9bcffb863142afb0c # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------------ Parse Quest Data from TSV, ------------------------------------------------------------------------------------------- jazz2-native.mk 59732fc2951c49ebae077cad671b3d117c4b380b # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------------- Minor changes, ------------------------------------------------------ syncthing.mk v2.0.3 # Version: Commits on Aug 22, 2025 ------------------------------------------------------ ## Major changes in 2.0 - Database backend switched from LevelDB to SQLite. There is a migration on first launch which can be lengthy for larger setups. The new database is easier to understand and maintain and, hopefully, less buggy. - The logging format has changed to use structured log entries (a message plus several key-value pairs). Additionally, we can now control the log level per package, and a new log level WARNING has been inserted between INFO and ERROR (which was previously known as WARNING...). The INFO level has become more verbose, indicating the sync actions taken by Syncthing. A new command line flag `--log-level` sets the default log level for all packages, and the `STTRACE` environment variable and GUI has been updated to set log levels per package. The `--verbose` and `--logflags` command line options have been removed and will be ignored if given. - Deleted items are no longer kept forever in the database, instead they are forgotten after fifteen months. If your use case require deletes to take effect after more than a fifteen month delay, set the `--db-delete-retention-interval` command line option or corresponding environment variable to zero, or a longer time interval of your choosing. - Modernised command line options parsing. Old single-dash long options are no longer supported, e.g. `-home` must be given as `--home`. Some options have been renamed, others have become subcommands. All serve options are now also accepted as environment variables. See `syncthing --help` and `syncthing serve --help` for details. - Rolling hash detection of shifted data is no longer supported as this effectively never helped. Instead, scanning and syncing is faster and more efficient without it. - A \default folder\ is no longer created on first startup. - Multiple connections are now used by default between v2 devices. The new default value is to use three connections: one for index metadata and two for data exchange. - The following platforms unfortunately no longer get prebuilt binaries for download at syncthing.net and on GitHub, due to complexities related to cross compilation with SQLite: - dragonfly/amd64 - illumos/amd64 and solaris/amd64 - linux/ppc64 - netbsd/* - openbsd/386 and openbsd/arm - windows/arm - The handling of conflict resolution involving deleted files has changed. A delete can now be the winning outcome of conflict resolution, resulting in the deleted file being moved to a conflict copy. This release is also available as: * APT repository: https://apt.syncthing.net/ * Docker image: `docker.io/syncthing/syncthing:2.0.3` or `ghcr.io/syncthing/syncthing:2.0.3` (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version) ## What's Changed ### Fixes * fix(cmd): restore --version flag for compatibility by @acolomb in syncthing/syncthing#10269 * fix(cmd): make database migration more robust to write errors by @calmh in syncthing/syncthing#10278 * fix(cmd): provide temporary GUI/API server during database migration by @calmh in syncthing/syncthing#10279 * fix(db): clean files for dropped folders at startup by @calmh in syncthing/syncthing#10280 ### Other * chore(slog): re-enable LOGGER_DISCARD (fixes #10262) by @rasa in syncthing/syncthing#10267 * build: downgrade gopsutil (fixes #10276) by @calmh in syncthing/syncthing#10277 **Full Changelog**: syncthing/syncthing@v2.0.2...v2.0.3, ---------------------------------------------------------------------------------------- retroarch.mk 6c120d07a8cacd024d1a3f6236cf1de80e3b78e5 # Version: Commits on Aug 22, 2025 ---------------------------------------------------------------------------------------- Fetch translations from Crowdin, ------------------------------------------------------------------------------------- gzdoom.mk ba9e127e9f1e851d69d4ff3843f1f883188b45f7 # Version: Commits on Aug 14, 2025 ------------------------------------------------------------------------------------- Added to CreateTossable and PowerWeaponLevel2, ------------------------------------------------------------------------------------------ xash3d-fwgs.mk dc1e39264bdf7ad9945f81a165527d6ff18ab417 # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------------ Documentation: donate: add new donation info, -------------------------------------------------------------------------------------------- libretro-dice.mk 2f847e9e3ccdc8086ab02ab3e6c97bf0729deadd # Version: Commits on Aug 22, 2025 -------------------------------------------------------------------------------------------- Fetch translations & Recreate libretro_core_options_intl.h, ----------------------------------------------------------------------------------------------------- libretro-genesisplusgx.mk 54eb537ad0d82b242a5fa63f061b1480ffa493da # Version: Commits on Aug 22, 2025 ----------------------------------------------------------------------------------------------------- [Core/MD] fixed Life on Mars / Life on Earth Reimagined original ROM detection, -------------------------------------------------------------------------------------------- libretro-gpsp.mk 143b0abb02a6ff501757674c9fdf47e0fcd7cbd3 # Version: Commits on Aug 21, 2025 -------------------------------------------------------------------------------------------- Emit .note.GNU-stack on asm files to signal a non-executable stack, ------------------------------------------------------------------------------------------------ libretro-panda3ds.mk 78002be334ea8a86e64d20dd8a85ac2af568f1fa # Version: Commits on Aug 21, 2025 ------------------------------------------------------------------------------------------------ Vendor Teakra, make emulator own DSP RAM and add DSP RAM to fastmem (#806) * DSP: Own DSP RAM and add it to fastmem * Vendor Teakra * Add MacOS support to fastmem * Fix MacOS fastmem paths * Fix iOS build, --------------------------------------------------------------------------------------------- libretro-vba-m.mk a17df26e5208173e5e71b174f9a97a04d416fd29 # Version: Commits on Aug 21, 2025 --------------------------------------------------------------------------------------------- build: fix Debian installdeps for current Ubuntu Fix installdeps for Debian variants by checking for `libsdl3-dev` and falling back to `libsdl2-dev` if not available. Also add `libx264-dev` and `libx265-dev` to the list of FFmpeg packages as we now require them. Fix #1486 Signed-off-by: Rafael Kitover <[email protected]>,
1 parent e6d4e31 commit b0bde39

File tree

25 files changed

+86
-86
lines changed

25 files changed

+86
-86
lines changed

PackageVersions.md

Lines changed: 22 additions & 22 deletions
Large diffs are not rendered by default.

PackagesChangelog.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,51 @@
11
**Package Type**|**Package**|**Version**|**Last Update**
22
-----|:-----:|:-----:|:-----:
33
Kodi|[kodi_resource_language_de_de](http://mirrors.kodi.tv/addons/piers/resource.language.de_de)|11.0.96|Aig 02, 2025
4+
Emulators|[clk](https://github.com/TomHarte/CLK)|7d6e24b8ed2bd03e1f9089304955de0f6de610f3|Aug 22, 2025
5+
Emulators|[ruffle](http://github.com/ruffle-rs/ruffle)|nightly-2025-08-22|Aug 22, 2025
6+
Emulators|[xenia-native](https://github.com/xenia-canary/xenia-canary.git)|765073021a3fd0ec193f89ff224aad5a3af31551|Aug 22, 2025
7+
Ports|[box64](http://github.com/ptitseb/box64)|cb2c29c5f992cb4e5ec481f8d99b973b90411403|Aug 22, 2025
8+
Ports|[corsixth](http://github.com/CorsixTH/CorsixTH)|ac604c5f00b0e9c9cadd0d4d40ea7c2bcf6febeb|Aug 22, 2025
9+
Utils|[syncthing](http://github.com/syncthing/syncthing)|v2.0.3|Aug 22, 2025
10+
Emulators|[retroarch](http://github.com/libretro/RetroArch)|6c120d07a8cacd024d1a3f6236cf1de80e3b78e5|Aug 22, 2025
11+
Emulators|[libretro-dice](http://github.com/mittonk/dice-libretro)|2f847e9e3ccdc8086ab02ab3e6c97bf0729deadd|Aug 22, 2025
12+
Emulators|[libretro-genesisplusgx](http://github.com/ekeeke/Genesis-Plus-GX)|54eb537ad0d82b242a5fa63f061b1480ffa493da|Aug 22, 2025
413
Emulationstation|[batocera-emulationstation](https://github.com/batocera-linux/batocera-emulationstation)|4adf26b43900d1a33887af6d8af3da2e99e398a5|Aug 21, 2025
514
Emulationstation|[batocera-es-piboy](https://github.com/batocera-linux/batocera-emulationstation)|4adf26b43900d1a33887af6d8af3da2e99e398a5|Aug 21, 2025
15+
Emulators|[dolphin-emu](https://github.com/dolphin-emu/dolphin)|2e09dc0fdda2818d89a7962d5eb44339fb6b467a|Aug 21, 2025
16+
Emulators|[hatari](http://github.com/hatari/hatari)|1524b194b2b29e72938095d3642adea9a5bc0a60|Aug 21, 2025
17+
Emulators|[lightspark](http://github.com/lightspark/lightspark)|24cd92f269ee97c6ed2ecdc5f0777e89578e7e92|Aug 21, 2025
18+
Emulators|[pcsx2](https://github.com/pcsx2/pcsx2.git)|v2.5.120|Aug 21, 2025
619
Emulators|[ppsspp](https://github.com/hrydgard/ppsspp.git)|b4bd11137907407ccb5c52e00ae6701ea116404f|Aug 21, 2025
7-
Emulators|[ruffle](http://github.com/ruffle-rs/ruffle)|nightly-2025-08-21|Aug 21, 2025
820
Emulators|[thextech](https://github.com/TheXTech/TheXTech)|261c37ddf258d8080f776d50963aeabdddbcc2f7|Aug 21, 2025
9-
Emulators|[ymir](https://github.com/StrikerX3/Ymir)|f9056b738953be599fc177f394b6f7253ddc28c4|Aug 21, 2025
21+
Emulators|[ymir](https://github.com/StrikerX3/Ymir)|a831035fedc92eef05b31f552c1ce61321bb1d11|Aug 21, 2025
1022
Firmwares|[rpi-eeprom](http://github.com/raspberrypi/rpi-eeprom)|1793f5c4baa091941a8f85db756f6035c743ee5a|Aug 21, 2025
1123
Firmwares|[rpi-utils](http://github.com/raspberrypi/utils)|efe8351b61d116f7fedfcaf8ccfac8edb6a9f312|Aug 21, 2025
1224
Libraries|[sf_rpi_status](http://github.com/sunfounder/sf_rpi_status)|8ba7fd2a8e74c650e56b7b13b8351585cf1247e7|Aug 21, 2025
13-
Ports|[box64](http://github.com/ptitseb/box64)|d476217f4c53ed5697086fd477cc4058e78fbae1|Aug 21, 2025
1425
Ports|[cdogs](http://github.com/cxong/cdogs-sdl)|7c1d0fe131034818aff29f0e1757503887affc08|Aug 21, 2025
15-
Ports|[jazz2-native](http://github.com/deathkiller/jazz2-native)|e1e08023637472fef3bf6107fd906334f6c8b1a3|Aug 21, 2025
26+
Ports|[devilutionx](https://github.com/diasurgical/devilutionX.git)|0c3fe1345cab72586dfcf1d9bcffb863142afb0c|Aug 21, 2025
27+
Ports|[jazz2-native](http://github.com/deathkiller/jazz2-native)|59732fc2951c49ebae077cad671b3d117c4b380b|Aug 21, 2025
1628
Ports|[rott](http://github.com/fabiangreffrath/taradino)|bb787453a7c37f7ffaeb77f864e0e9a26732934f|Aug 21, 2025
1729
Ports|[stalker](https://github.com/OpenXRay/xray-16.git)|381697b866fc68ef25aeec7e22cf480638d1837d|Aug 21, 2025
1830
Ports|[supertux2](https://github.com/SuperTux/supertux.git)|28d55c98e5035ca41680743eeb3ce6ba3f637360|Aug 21, 2025
1931
Wine|[wine-x86](https://github.com/Hancock33/batocera-32bit-libs/releases)|20250821|Aug 21, 2025
2032
Controllers|[sdl2-gamecontrollerdb](http://github.com/mdqinc/SDL_GameControllerDB)|72da83a9a83d3dc4062cc49368486f5dfa449604|Aug 21, 2025
21-
Emulators|[retroarch](http://github.com/libretro/RetroArch)|f7877df5788d096f5b2988768bf12f229b02d72d|Aug 21, 2025
2233
Ports|[lib32bit](https://github.com/Hancock33/batocera-32bit-libs/releases)|20250821|Aug 21, 2025
34+
Ports|[xash3d-fwgs](https://github.com/FWGS/xash3d-fwgs.git)|dc1e39264bdf7ad9945f81a165527d6ff18ab417|Aug 21, 2025
2335
Emulators|[libretro-clownmdemu](https://github.com/Clownacy/clownmdemu-libretro)|06235521ff49855678982e936116b145286109e8|Aug 21, 2025
36+
Emulators|[libretro-gpsp](http://github.com/libretro/gpsp)|143b0abb02a6ff501757674c9fdf47e0fcd7cbd3|Aug 21, 2025
37+
Emulators|[libretro-panda3ds](https://github.com/wheremyfoodat/Panda3DS.git)|78002be334ea8a86e64d20dd8a85ac2af568f1fa|Aug 21, 2025
2438
Emulators|[libretro-ppsspp](https://github.com/hrydgard/ppsspp.git)|b4bd11137907407ccb5c52e00ae6701ea116404f|Aug 21, 2025
2539
Emulators|[libretro-stella](http://github.com/stella-emu/stella)|88eb24c8e61ce580c8c32eee692b182fe1536c3f|Aug 21, 2025
26-
Emulators|[libretro-vba-m](http://github.com/visualboyadvance-m/visualboyadvance-m)|967426e2f08ea89a89d12da641b9bb4ebd8559e3|Aug 21, 2025
40+
Emulators|[libretro-vba-m](http://github.com/visualboyadvance-m/visualboyadvance-m)|a17df26e5208173e5e71b174f9a97a04d416fd29|Aug 21, 2025
2741
Emulators|[glsl-shaders](http://github.com/libretro/glsl-shaders)|2903be405926f473b270accf22cfb560af9cc54c|Aug 21, 2025
2842
Emulators|[slang-shaders](http://github.com/libretro/slang-shaders)|e97ef5526d72835f12f298c1f255faf7703dfc01|Aug 21, 2025
2943
Emulators|[amiberry](http://github.com/BlitterStudio/amiberry)|2d7baaba741ba8bc7c41302bf20dedcb1d0c247d|Aug 20, 2025
3044
Emulators|[amiberry-lite](http://github.com/BlitterStudio/amiberry-lite)|2efc21f2e928f59c7891ab1e8186fa61b141a1e5|Aug 20, 2025
31-
Emulators|[dolphin-emu](https://github.com/dolphin-emu/dolphin)|90a137ffdc96199c4e6105a4aadda30351a5ca75|Aug 20, 2025
3245
Emulators|[duckstation](http://github.com/stenzek/duckstation)|6e926041e58e82e22c5aeaca65f34dd47d4d0da3|Aug 20, 2025
3346
Emulators|[flycast](https://github.com/flyinghead/flycast.git)|9c5408a6d3fff939ae06a319c2fce3aa6f2a4d69|Aug 20, 2025
3447
Emulators|[ikemen](http://github.com/ikemen-engine/Ikemen-GO)|65ec2dbe241935d4518b17a754f2b89e9c7f67f4|Aug 20, 2025
3548
Emulators|[openmsx](http://github.com/openMSX/openMSX)|295d2096a7163ef085893a5fa9b77fce82f23a33|Aug 20, 2025
36-
Emulators|[pcsx2](https://github.com/pcsx2/pcsx2.git)|v2.5.117|Aug 20, 2025
37-
Emulators|[play](https://github.com/jpd002/Play-.git)|3c090f87220fede8b0e0435c414a314f26aefba9|Aug 20, 2025
3849
Emulators|[ryujinx](https://git.ryujinx.app/api/v4/projects/68/packages/generic/Ryubing-Canary/)|1.3.121|Aug 20, 2025
3950
Emulators|[xenia](https://github.com/xenia-project/release-builds-windows/releases)|v1.0.2825-master|Aug 20, 2025
4051
Hardware|[pironman5](http://github.com/sunfounder/pironman5)|929c4f506e7e1a23b10ddd4391df2c0de23226a8|Aug 20, 2025
@@ -46,8 +57,7 @@ Ports|[tr2x](http://github.com/LostArtefacts/TRX)|c85309ce283558b5fb57d3404ac77c
4657
Emulators|[libretro-flycast](https://github.com/flyinghead/flycast.git)|9c5408a6d3fff939ae06a319c2fce3aa6f2a4d69|Aug 20, 2025
4758
Emulators|[libretro-mame2003-plus](http://github.com/libretro/mame2003-plus-libretro)|3f778c3a06172f01a9ac6c08812f46bd0173187a|Aug 20, 2025
4859
Emulators|[libretro-mupen64plus-next](http://github.com/libretro/mupen64plus-libretro-nx)|222acbd3f98391458a047874d0372fe78e14fe94|Aug 20, 2025
49-
Emulators|[clk](https://github.com/TomHarte/CLK)|14e7ba8fab37c20677b3d8a062a143fc32926cf8|Aug 19, 2025
50-
Emulators|[hatari](http://github.com/hatari/hatari)|6e6739f6e6c96a5a62109f52288aa409e76d5a36|Aug 19, 2025
60+
Emulators|[play](https://github.com/jpd002/Play-.git)|7062c5e67a4a90b75fe1d0221c43f678a0d049b6|Aug 19, 2025
5161
Emulators|[rpcs3](https://github.com/RPCS3/rpcs3.git)|d72f95677e92fd6031214d20861379ed005207a5|Aug 19, 2025
5262
Emulators|[supermodel](http://github.com/trzy/Supermodel)|44280ae320a1ad4e1b8f72d714e97582d2b52989|Aug 19, 2025
5363
Emulators|[supermodel-es](http://github.com/DirtBagXon/model3emu-code-sinden)|55bfe6589c30152614d38ce33e4da3c83fad6106|Aug 19, 2025
@@ -64,7 +74,6 @@ Emulators|[libretro-puae2021](http://github.com/sonninnos/libretro-uae)|a19f7423
6474
Emulators|[libretro-wasm4](https://github.com/aduros/wasm4)|ad76be395f6dc8d76b96505d60629dc481615ebf|Aug 19, 2025
6575
Audio|[chromebook-linux-audio](http://github.com/WeirdTreeThing/chromebook-linux-audio)|bef11f50d0fff6fb868dff441a8cbec7b6ca95ef|Aug 18, 2025
6676
Audio|[wm8960-audio-hat](http://github.com/waveshareteam/WM8960-Audio-HAT)|0220de37803d014664ed85b620196c6c769c0454|Aug 18, 2025
67-
Emulators|[lightspark](http://github.com/lightspark/lightspark)|10b9546126d2672922cf8aadc9f45f740792236f|Aug 18, 2025
6877
Emulators|[vice](http://github.com/VICE-Team/svn-mirror)|r45737|Aug 18, 2025
6978
Ports|[fallout2-ce](http://github.com/fallout2-ce/fallout2-ce)|f0e6002df9d5e022f635bae5a56e7c98855c679e|Aug 18, 2025
7079
Ports|[sonicmania](https://github.com/RSDKModding/Sonic-Mania-Decompilation)|f2120842a15a5721d88907bf98edee670c10f79d|Aug 18, 2025
@@ -74,28 +83,23 @@ Emulators|[cemu](https://github.com/cemu-project/Cemu.git)|aeb3154257299f6f70da9
7483
Ports|[openjkdf2](https://github.com/shinyquagsire23/OpenJKDF2)|1baa1e8d892a39195e98843654b6878213804a6e|Aug 17, 2025
7584
Ports|[stk](http://github.com/supertuxkart/stk-code)|33c481586cd3a27034aae409a2acff1f194d7ed7|Aug 17, 2025
7685
Ports|[hlsdk-xash3d](http://github.com/FWGS/hlsdk-portable)|43061b59154ad59324b6cb4fe2b7d8d5a367cb15|Aug 17, 2025
77-
Ports|[xash3d-fwgs](https://github.com/FWGS/xash3d-fwgs.git)|74b196d2c362ea195967be6f139faeed18795a53|Aug 17, 2025
7886
Emulators|[libretro-citra](https://github.com/libretro/citra.git)|5263fae3344e5e9af43036e0e38bec2d10fb2407|Aug 17, 2025
79-
Emulators|[libretro-panda3ds](https://github.com/wheremyfoodat/Panda3DS.git)|ff100dc5ac3fd558406580f370e718227f73c12d|Aug 17, 2025
8087
Emulators|[melonds](http://github.com/melonDS-emu/melonDS)|367d05b302b2261cff89e98c2f6b39a2144dfc69|Aug 16, 2025
81-
Utils|[syncthing](http://github.com/syncthing/syncthing)|v2.0.2|Aug 16, 2025
8288
Wine|[wine-custom](http://github.com/wine-mirror/wine)|wine-10.13|Aug 16, 2025
8389
Emulators|[libretro-pcsx](http://github.com/libretro/pcsx_rearmed)|228c14e10e9a8fae0ead8adf30daad2cdd8655b9|Aug 16, 2025
8490
Emulators|[azahar](https://github.com/AzaharPlus/AzaharPlus.git)|e65ed7814fc7ce22ae87e683ef22a2efc18b7029|Aug 15, 2025
8591
Emulators|[dolphin-triforce](https://github.com/Hancock33/dolphin-triforce.git)|842a088dcecbc99348b24557396f56456ceaf2ac|Aug 15, 2025
86-
Emulators|[xenia-native](https://github.com/xenia-canary/xenia-canary.git)|e66028f0ff94e434499e58f694a1e65398675dc1|Aug 15, 2025
8792
Emulators|[openbor7530](http://github.com/DCurrent/openbor)|fb76ba85dfefa329be2dabc430fe651dcc756f56|Aug 15, 2025
8893
Libraries|[appstream](http://github.com/ximion/appstream)|v1.0.6|Aug 14, 2025
8994
Libraries|[sdl12-compat](http://github.com/libsdl-org/sdl12-compat)|cc0201143a33a399a8d4f01571cfe5fceec09df5|Aug 14, 2025
90-
Ports|[devilutionx](https://github.com/diasurgical/devilutionX.git)|7d1aebd91be94ff20cbdeedaa3614548ab4dd33f|Aug 14, 2025
9195
Ports|[etlegacy](https://github.com/etlegacy/etlegacy.git)|59beffbbdbf86da5ebbbf6bd11c54c7130eb5ef4|Aug 14, 2025
9296
Ports|[nblood](http://github.com/NBlood/NBlood)|r14259|Aug 14, 2025
9397
Wine|[wine-mono](https://github.com/wine-mono/wine-mono/releases)|wine-mono-10.2.0|Aug 14, 2025
98+
Ports|[gzdoom](http://github.com/ZDoom/gzdoom)|ba9e127e9f1e851d69d4ff3843f1f883188b45f7|Aug 14, 2025
9499
Emulators|[libretro-mu](http://github.com/libretro/Mu)|d9766f139ece646703b5785097374a3a68dd07ad|Aug 14, 2025
95100
Emulators|[libretro-nestopia](http://github.com/libretro/nestopia)|51ad831fcd9f10a02dcb0cbf398c2cd1b028765e|Aug 14, 2025
96101
Emulators|[fsuae](http://github.com/FrodeSolheim/fs-uae)|195e3d43c0ce921f7ddc45f3d1e44fa858823d37|Aug 13, 2025
97102
Kodi|[kodi-audiodecoder-openmpt](http://github.com/xbmc/audiodecoder.openmpt)|22.0.1-Piers|Aug 13, 2025
98-
Ports|[corsixth](http://github.com/CorsixTH/CorsixTH)|e48ea317cbbb2381ee1e68c5cfec67819f2e495e|Aug 13, 2025
99103
Ports|[eduke32](https://voidpoint.io/terminx/eduke32/-/archive/)|126f35ca8c24368f101996523935d08b269f45be|Aug 13, 2025
100104
Wine|[wine-proton](http://github.com/ValveSoftware/wine)|8a7e644eead84e46f1a64b97651982be4381199d|Aug 13, 2025
101105
Emulators|[libretro-mojozork](http://github.com/icculus/mojozork)|5672d7e88acd7f583f01a559ad4a93e84b965ff2|Aug 13, 2025
@@ -114,7 +118,6 @@ Emulationstation|[es-theme-carbon](http://github.com/hancock33/es-theme-carbon)|
114118
Ports|[alephone](http://github.com/Aleph-One-Marathon/alephone)|338f3d638282fc9ae38a0027543ccda9354d91c9|Aug 09, 2025
115119
Utils|[ryzen-smu](http://github.com/amkillam/ryzen_smu)|172c316f53ac8f066afd7cb9e1da517084273368|Aug 09, 2025
116120
Libraries|[pywebview](http://github.com/r0x0r/pywebview)|6.0|Aug 08, 2025
117-
Emulators|[libretro-dice](http://github.com/mittonk/dice-libretro)|c4096a8e685e432fac5bbba6d41262d17ca8fa26|Aug 08, 2025
118121
Emulators|[libretro-ps2](https://github.com/libretro/ps2.git)|c26b06ac2752a11ee47abc6f9c73595ee874341c|Aug 07, 2025
119122
Emulators|[libretro-beetle-psx](http://github.com/libretro/beetle-psx-libretro)|1e42a9076ab1ec5756d3f72e6d61923080fb2128|Aug 06, 2025
120123
Network|[rtw88](http://github.com/lwfinger/rtw88)|52072d874840f28c247b27f5d799f2c5c88a7e61|Aug 05, 2025
@@ -139,14 +142,12 @@ Libraries|[ecm](http://github.com/KDE/extra-cmake-modules)|v6.17.0|Aug 01, 2025
139142
Sources|[mame-src](http://github.com/mamedev/mame)|mame0279|Aug 01, 2025
140143
Network|[tqftpserv](http://github.com/linux-msm/tqftpserv)|408ca1ed5e4e0a9ac3650b13d3f3c60079b3e2a3|Aug 01, 2025
141144
Emulators|[libretro-beetle-pce-fast](http://github.com/libretro/beetle-pce-fast-libretro)|c95e401e1dd37522b6d84d0017702cfece2be840|Aug 01, 2025
142-
Emulators|[libretro-genesisplusgx](http://github.com/ekeeke/Genesis-Plus-GX)|a80e3b3b957d38961e274aa4da450245ddc63fe8|Aug 01, 2025
143145
Emulators|[libretro-mame](https://github.com/Hancock33/batocera-mame-builds/releases)|mame0279|Aug 01, 2025
144146
Utils-host|[rgbds](http://github.com/gbdev/rgbds)|v0.9.4|Jul 31, 2025
145147
Emulators|[easyrpg-player](http://github.com/EasyRPG/Player)|7d0c9a8bf1cfbf9f8f48d9b036ec4fd3ef19478c|Jul 31, 2025
146148
Emulators|[libretro-easyrpg](https://github.com/EasyRPG/Player.git)|7d0c9a8bf1cfbf9f8f48d9b036ec4fd3ef19478c|Jul 31, 2025
147149
Emulators|[libretro-fmsx](http://github.com/libretro/fmsx-libretro)|fbe4dfc4c3e3f7eb27089def3d663a905b181845|Jul 31, 2025
148150
Ports|[raze](http://github.com/ZDoom/Raze)|4a8985b4b406cf8669728d0211deed1c0d822da5|Jul 30, 2025
149-
Ports|[gzdoom](http://github.com/ZDoom/gzdoom)|f30fc8dd00a620227756ff0df25d3eb209ce5ebc|Jul 30, 2025
150151
Emulators|[xemu](https://github.com/xemu-project/xemu.git)|v0.8.96|Jul 29, 2025
151152
Ports|[catacombgl](http://github.com/ArnoAnsems/CatacombGL)|1bfbec8fe6797e6ee873573a97a447b3bd44ed56|Jul 29, 2025
152153
Ports|[srb2](http://github.com/STJr/SRB2)|639b58c6d718452ef343a0bc927d043bed9e40d6|Jul 29, 2025
@@ -329,7 +330,6 @@ Ports|[vkquake3](http://github.com/suijingfeng/vkQuake3)|5300b32803c1c61bc3b6bdf
329330
Boot|[rk3128-blobs](https://github.com/rockchip-linux/rkbin.git)|f43a462e7a1429a9d407ae52b4745033034a6cf9|Jan 24, 2025
330331
Wine|[wine-native](http://github.com/wine-mirror/wine)|wine-10.0|Jan 21, 2025
331332
Wine|[wine-ntsync](http://github.com/Hancock33/wine-tkg-batocera)|ntsync7-10.0|Jan 21, 2025
332-
Emulators|[libretro-gpsp](http://github.com/libretro/gpsp)|b0d5d27ae51c23f514974ddffa5760f1e1d05d9b|Jan 20, 2025
333333
Emulators|[libretro-vircon32](http://github.com/vircon32/vircon32-libretro)|d8a92430e887286b4e5351916ef0bd35d8cb40e8|Jan 18, 2025
334334
Libraries|[batocera-luajit](http://github.com/openresty/luajit2)|v2.1-20250117|Jan 17, 2025
335335
Libraries|[python-adafruit-circuitpython-neopixel-spi](https://files.pythonhosted.org/packages/ac/41/3f14d009e09f105b71970ed3b132961c09064731125e8773ed6a13866943)|1.0.13|Jan 17, 2025

package/batocera/emulators/clk/clk.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# clk
44
#
55
################################################################################
6-
# Version: Commits on Aug 19, 2025
7-
CLK_VERSION = 14e7ba8fab37c20677b3d8a062a143fc32926cf8
6+
# Version: Commits on Aug 22, 2025
7+
CLK_VERSION = 7d6e24b8ed2bd03e1f9089304955de0f6de610f3
88
CLK_SITE = https://github.com/TomHarte/CLK
99
CLK_LICENSE = MIT
1010
CLK_DEPENDENCIES = sdl2 libgl

package/batocera/emulators/dolphin-emu/dolphin-emu.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# dolphin-emu
44
#
55
################################################################################
6-
# Version: Commits on Aug 20, 2025
7-
DOLPHIN_EMU_VERSION = 90a137ffdc96199c4e6105a4aadda30351a5ca75
6+
# Version: Commits on Aug 21, 2025
7+
DOLPHIN_EMU_VERSION = 2e09dc0fdda2818d89a7962d5eb44339fb6b467a
88
DOLPHIN_EMU_VERSION_MINOR = 328
99
DOLPHIN_EMU_SITE = https://github.com/dolphin-emu/dolphin
1010
DOLPHIN_EMU_SITE_METHOD = git

package/batocera/emulators/hatari/hatari.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# hatari
44
#
55
################################################################################
6-
# Version: Commits on Aug 19, 2025
7-
HATARI_VERSION = 6e6739f6e6c96a5a62109f52288aa409e76d5a36
6+
# Version: Commits on Aug 21, 2025
7+
HATARI_VERSION = 1524b194b2b29e72938095d3642adea9a5bc0a60
88
HATARI_SITE = $(call github,hatari,hatari,$(HATARI_VERSION))
99
HATARI_LICENSE = GPLv3
1010
HATARI_DEPENDENCIES = sdl2 zlib libpng libcapsimage

package/batocera/emulators/lightspark/lightspark.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# lightspark
44
#
55
################################################################################
6-
# Version: Commits on Aug 18, 2025
7-
LIGHTSPARK_VERSION = 10b9546126d2672922cf8aadc9f45f740792236f
6+
# Version: Commits on Aug 21, 2025
7+
LIGHTSPARK_VERSION = 24cd92f269ee97c6ed2ecdc5f0777e89578e7e92
88
LIGHTSPARK_SITE = $(call github,lightspark,lightspark,$(LIGHTSPARK_VERSION))
99
LIGHTSPARK_LICENSE = LGPLv3
1010
LIGHTSPARK_DEPENDENCIES = sdl2 freetype pcre jpeg libpng cairo pango ffmpeg libcurl rtmpdump

package/batocera/emulators/pcsx2/pcsx2.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# pcsx2
44
#
55
################################################################################
6-
# Version: Commits on Aug 20, 2025
7-
PCSX2_VERSION = v2.5.117
6+
# Version: Commits on Aug 21, 2025
7+
PCSX2_VERSION = v2.5.120
88
PCSX2_SITE = https://github.com/pcsx2/pcsx2.git
99
PCSX2_SITE_METHOD = git
1010
PCSX2_GIT_SUBMODULES = YES

package/batocera/emulators/play/play.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# play
44
#
55
################################################################################
6-
# Version: Commits on Aug 20, 2025
7-
PLAY_VERSION = 3c090f87220fede8b0e0435c414a314f26aefba9
6+
# Version: Commits on Aug 19, 2025
7+
PLAY_VERSION = 7062c5e67a4a90b75fe1d0221c43f678a0d049b6
88
PLAY_SITE = https://github.com/jpd002/Play-.git
99
PLAY_SITE_METHOD = git
1010
PLAY_GIT_SUBMODULES = YES

package/batocera/emulators/retroarch/libretro/libretro-dice/libretro-dice.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# libretro-dice
44
#
55
################################################################################
6-
# Version: Commits on Aug 08, 2025
7-
LIBRETRO_DICE_VERSION = c4096a8e685e432fac5bbba6d41262d17ca8fa26
6+
# Version: Commits on Aug 22, 2025
7+
LIBRETRO_DICE_VERSION = 2f847e9e3ccdc8086ab02ab3e6c97bf0729deadd
88
LIBRETRO_DICE_SITE = $(call github,mittonk,dice-libretro,$(LIBRETRO_DICE_VERSION))
99
LIBRETRO_DICE_LICENSE = GPLv3
1010
LIBRETRO_DICE_DEPENDENCIES += retroarch

0 commit comments

Comments
 (0)