Compare commits

..

6 commits

4 changed files with 24 additions and 7 deletions

View file

@ -24,4 +24,5 @@ hash^RETRODECKMELONDSLATEST^https://github.com/RetroDECK/net.kuribo64.melonDS/re
hash^RETRODECKSOLARUSLATEST^https://github.com/RetroDECK/org.solarus_games.solarus.Launcher/releases/latest/download/RetroDECK-solarus-Artifact.tar.gz
hash^RETRODECKGZDOOMLATEST^https://github.com/RetroDECK/org.zdoom.GZDoom/releases/latest/download/RetroDECK-gzdoom-Artifact.tar.gz
hash^RETRODECKMAMELATEST^https://github.com/RetroDECK/MAME/releases/latest/download/RetroDECK-MAME-Artifact.tar.gz
hash^PORTMASTERLATESTSHA^https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip
hash^PORTMASTERLATESTSHA^https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip
hash^RACITRAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/latest/citra_libretro.so.zip

View file

@ -42,7 +42,7 @@ FastmemMode = true
[GPU]
Renderer = Vulkan
Renderer = OpenGL
Adapter = AMD RADV VANGOGH
ResolutionScale = 3
Multisamples = 1

View file

@ -85,7 +85,8 @@
<p>Changes:</p>
<ul>
<li>Updated all the outdated emulators</li>
<li>Duckstation due to licencing changes is frozen at the latest possible build becoming de facto: Legacy</li>
<li>Duckstation due to licensing changes is frozen at the latest possible build becoming de facto: Legacy</li>
<li>Duckstation configured to use OpenGL as Vulkan seems to be broken</li>
<li>New Flash system via the new emulator: Ruffle</li>
<li>PortMaster is now included in RetroDECK!</li>
<li>Steam Sync is now a thing: favorite your games and enable the Steam Sync in the Configurator to find them as a Steam standalone games thank to Steam Rom Manager acting like an engine</li>

View file

@ -1,6 +1,6 @@
app-id: net.retrodeck.retrodeck
runtime: org.kde.Platform
runtime-version: "6.7"
runtime-version: "6.8"
sdk: org.kde.Sdk
base: org.electronjs.Electron2.BaseApp # Needed for Steam ROM Manager
base-version: "22.08"
@ -274,6 +274,16 @@ modules:
url: https://buildbot.libretro.com/nightly/linux/x86_64/RetroArch_cores.7z
sha256: RANIGHTLYCORESPLACEHOLDER
# Citra is removed from the LibretroCores but is still available in Libretro repo
- name: citra-libretro-core
buildsystem: simple
build-commands:
- cp citra_libretro.so ${FLATPAK_DEST}/share/libretro/cores/
sources:
- type: archive
url: https://buildbot.libretro.com/nightly/linux/x86_64/latest/citra_libretro.so.zip
sha256: RACITRAPLACEHOLDER
- name: retroarch-cores
buildsystem: simple
build-commands:
@ -646,6 +656,7 @@ modules:
# RUFFLE - START
# https://github.com/ruffle-rs/ruffle/releases
- name: ruffle
buildsystem: simple
build-commands:
@ -678,20 +689,24 @@ modules:
dest_dir="${FLATPAK_DEST}/lib"
dest_debug_dir="${FLATPAK_DEST}/retrodeck/lib/debug"
mkdir -p "$dest_dir" "dest_debug_dir"
mkdir -p "$dest_dir" "$dest_debug_dir"
copy_missing_libs() {
local src=$1
local dest=$2
local src_debug=$2
local dest=$3
for lib in $missing_libs; do
if [[ -f "$src/$lib" ]]; then
cp "$src/$lib" "$dest"
echo "Copied \"$lib\" to \"$dest\""
elif [[ -f "$src_debug/$lib.debug" ]]; then
cp "$src_debug/$lib.debug" "$dest"
echo "Copied debug version of \"$lib\" to \"$dest\""
fi
done
}
copy_missing_libs "$src_dir" "$dest_dir"
copy_missing_libs "$src_dir" "$src_debug_dir" "$dest_dir"
copy_missing_libs "$src_debug_dir" "$dest_debug_dir"
rm -rf "$src_dir"