mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-12-12 15:35:39 +00:00
Compare commits
6 commits
f67e61adfb
...
32209e5899
Author | SHA1 | Date | |
---|---|---|---|
XargonWan | 32209e5899 | ||
XargonWan | 5f9185d523 | ||
XargonWan | 7743f48e4d | ||
XargonWan | dc2ae1755c | ||
XargonWan | ac474ee5c0 | ||
XargonWan | 8201f12d70 |
|
@ -25,3 +25,4 @@ hash^RETRODECKSOLARUSLATEST^https://github.com/RetroDECK/org.solarus_games.solar
|
|||
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^RACITRAPLACEHOLDER^https://buildbot.libretro.com/nightly/linux/x86_64/latest/citra_libretro.so.zip
|
|
@ -42,7 +42,7 @@ FastmemMode = true
|
|||
|
||||
|
||||
[GPU]
|
||||
Renderer = Vulkan
|
||||
Renderer = OpenGL
|
||||
Adapter = AMD RADV VANGOGH
|
||||
ResolutionScale = 3
|
||||
Multisamples = 1
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue