mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Merge branch 'cooker' of https://github.com/RetroDECK/RetroDECK into feat/okonomiyaki
This commit is contained in:
commit
1805a124a0
|
@ -28,3 +28,4 @@ hash^RETRODECKSHADPS4LATESTSTABLE^https://github.com/shadps4-emu/shadPS4/release
|
||||||
|
|
||||||
#This will replace RETRODECKSHADPS4LATESTURL with the URL of the latest artifact and RETRODECKSHADPS4LATESTSHA with its SHA256 hash.
|
#This will replace RETRODECKSHADPS4LATESTURL with the URL of the latest artifact and RETRODECKSHADPS4LATESTSHA with its SHA256 hash.
|
||||||
#latestghaartifact^RETRODECKSHADPS4LATESTURL^RETRODECKSHADPS4LATESTSHA^https://github.com/shadps4-emu/shadPS4/actions/workflows/linux-qt.yml^shadps4-linux-qt
|
#latestghaartifact^RETRODECKSHADPS4LATESTURL^RETRODECKSHADPS4LATESTSHA^https://github.com/shadps4-emu/shadPS4/actions/workflows/linux-qt.yml^shadps4-linux-qt
|
||||||
|
hash^PORTMASTERLATESTSHA^https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip
|
||||||
|
|
|
@ -168,6 +168,7 @@ find_system_commands() {
|
||||||
substitute_placeholders() {
|
substitute_placeholders() {
|
||||||
local cmd="$1"
|
local cmd="$1"
|
||||||
log d "Substitute placeholder: working on $cmd"
|
log d "Substitute placeholder: working on $cmd"
|
||||||
|
game=$(echo "$game" | sed "s/'/'\\\\''/g") # escaping internal '
|
||||||
local rom_path="$game"
|
local rom_path="$game"
|
||||||
local rom_dir=$(dirname "$rom_path")
|
local rom_dir=$(dirname "$rom_path")
|
||||||
|
|
||||||
|
@ -193,6 +194,8 @@ substitute_placeholders() {
|
||||||
cmd="${cmd//"%FILENAME%"/"'$file_name'"}"
|
cmd="${cmd//"%FILENAME%"/"'$file_name'"}"
|
||||||
cmd="${cmd//"%ROMRAW%"/"'$rom_raw'"}"
|
cmd="${cmd//"%ROMRAW%"/"'$rom_raw'"}"
|
||||||
cmd="${cmd//"%ROMPATH%"/"'$rom_dir'"}"
|
cmd="${cmd//"%ROMPATH%"/"'$rom_dir'"}"
|
||||||
|
cmd="${cmd//"%ENABLESHORTCUTS%"/""}"
|
||||||
|
cmd="${cmd//"%EMULATOR_OS-SHELL%"/"/bin/sh"}"
|
||||||
|
|
||||||
# Ensure paths are quoted correctly
|
# Ensure paths are quoted correctly
|
||||||
cmd="${cmd//"%ROM%"/"'$rom_path'"}"
|
cmd="${cmd//"%ROM%"/"'$rom_path'"}"
|
||||||
|
|
|
@ -615,8 +615,8 @@ modules:
|
||||||
- cp PortMaster.zip "${FLATPAK_DEST}/retrodeck/PortMaster.zip"
|
- cp PortMaster.zip "${FLATPAK_DEST}/retrodeck/PortMaster.zip"
|
||||||
sources:
|
sources:
|
||||||
- type: file
|
- type: file
|
||||||
url: https://github.com/PortsMaster/PortMaster-GUI/releases/download/2024.09.13-1455/retrodeck.portmaster.zip
|
url: https://github.com/PortsMaster/PortMaster-GUI/releases/latest/download/retrodeck.portmaster.zip
|
||||||
sha256: 4fe3ce3ffdc1d66fe235c8a1a6062a86aa06ee615dba1fe5fc6e9bdd75e9d39c
|
sha256: PORTMASTERLATESTSHA
|
||||||
dest-filename: PortMaster.zip
|
dest-filename: PortMaster.zip
|
||||||
- type: script
|
- type: script
|
||||||
commands:
|
commands:
|
||||||
|
@ -644,10 +644,8 @@ modules:
|
||||||
sources:
|
sources:
|
||||||
# Testing the new feat/update-3.1.0
|
# Testing the new feat/update-3.1.0
|
||||||
- type: archive
|
- type: archive
|
||||||
url: https://github.com/RetroDECK/ES-DE/releases/download/feat%2Fupdate-3.1.0-170924.19/RetroDECK-ES-DE-Artifact.tar.gz
|
url: https://github.com/RetroDECK/ES-DE/releases/latest/download/RetroDECK-ES-DE-Artifact.tar.gz
|
||||||
sha256: 047198f98d4c57fefb19bda059ec059ea2fb9691519952b86b744d21b57a00ff
|
sha256: RETRODECKESDELATEST
|
||||||
#url: https://github.com/RetroDECK/ES-DE/releases/latest/download/RetroDECK-ES-DE-Artifact.tar.gz
|
|
||||||
#sha256: RETRODECKESDELATEST
|
|
||||||
|
|
||||||
- name: retrodeck-theme
|
- name: retrodeck-theme
|
||||||
buildsystem: simple
|
buildsystem: simple
|
||||||
|
|
Loading…
Reference in a new issue