mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 23:15:39 +00:00
Merge 840344217f
into de743a3e23
This commit is contained in:
commit
6e637cefe9
|
@ -620,6 +620,9 @@
|
|||
"pokemini": {
|
||||
"name": "Nintendo Pokémon Mini"
|
||||
},
|
||||
"portmaster": {
|
||||
"name": "PortMaster"
|
||||
},
|
||||
"ports": {
|
||||
"name": "Ports"
|
||||
},
|
||||
|
@ -972,12 +975,12 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"ruffle": {
|
||||
"description": "Flash Games emulator",
|
||||
"name" : "Ruffle",
|
||||
"system" : "flash",
|
||||
"launch": "ruffle-rd-wrapper.sh"
|
||||
},
|
||||
"ruffle": {
|
||||
"description": "Flash Games emulator",
|
||||
"name" : "Ruffle",
|
||||
"system" : "flash",
|
||||
"launch": "ruffle-rd-wrapper.sh"
|
||||
},
|
||||
"melonds": {
|
||||
"description": "MelonDS Nintendo DS Emulator",
|
||||
"name": "melonds",
|
||||
|
@ -1105,6 +1108,12 @@
|
|||
"description": "ES-DE Emulation Frontend",
|
||||
"name": "ES-DE",
|
||||
"launch": "es-de"
|
||||
},
|
||||
"portmaster": {
|
||||
"description": "PortMaster",
|
||||
"name": "PortMaster",
|
||||
"system": "portmaster",
|
||||
"launch": "PortMaster"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -433,6 +433,9 @@ post_update() {
|
|||
# Placeholder for version 0.9.0b
|
||||
|
||||
set_setting_value "$raconf" "libretro_info_path" "/var/config/retroarch/cores" "retroarch"
|
||||
# TODO: Configurator dialog: Hey, we need to reset ES-DE! (because again ES-DE folders, new theme and such)
|
||||
prepare_component "reset" "es-de"
|
||||
prepare_component "reset" "portmaster"
|
||||
prepare_component "reset" "ruffle"
|
||||
|
||||
# TODO: check this
|
||||
|
|
|
@ -857,6 +857,19 @@ prepare_component() {
|
|||
sed -i 's#RETRODECKSAVESDIR#'$saves_folder'#g' "/var/config/gzdoom/gzdoom.ini" # This is an unfortunate one-off because set_setting_value does not currently support JSON
|
||||
fi
|
||||
|
||||
if [[ "$component" =~ ^(portmaster|all)$ ]]; then
|
||||
component_found="true"
|
||||
# TODO: MultiUser
|
||||
log i "----------------------"
|
||||
log i "Prepearing PortMaster"
|
||||
log i "----------------------"
|
||||
|
||||
rm -rf "/var/data/PortMaster"
|
||||
unzip "/app/retrodeck/PortMaster.zip" -d "/var/data/"
|
||||
chmod +x "/var/data/PortMaster/PortMaster.sh"
|
||||
ln -s "/app/bin/PortMaster" "$roms_folder/portmaster/PortMaster.sh"
|
||||
fi
|
||||
|
||||
if [[ "$component" =~ ^(ruffle|all)$ ]]; then
|
||||
component_found="true"
|
||||
log i "----------------------"
|
||||
|
|
|
@ -524,6 +524,26 @@ modules:
|
|||
url: https://github.com/RetroDECK/MAME/releases/latest/download/RetroDECK-MAME-Artifact.tar.gz
|
||||
sha256: RETRODECKMAMELATEST
|
||||
|
||||
# PortMaster
|
||||
|
||||
- name: PortMaster
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- mkdir -p "${FLATPAK_DEST}/retrodeck/PortMaster/"
|
||||
- cp retrodeck.portmaster.zip "${FLATPAK_DEST}/retrodeck/PortMaster.zip"
|
||||
- install -Dm755 "PortMaster" "${FLATPAK_DEST}/bin/PortMaster"
|
||||
- ls -lah "${FLATPAK_DEST}/bin"
|
||||
sources:
|
||||
- type: file
|
||||
url: https://github.com/PortsMaster/PortMaster-GUI/releases/download/2024.08.24-1111/retrodeck.portmaster.zip
|
||||
sha256: 20a78192995a55ffdfdf4cd9343897c6d1ef50351a8800d188e084f90a847726
|
||||
- type: script
|
||||
commands:
|
||||
- |
|
||||
#!/bin/bash
|
||||
"/var/data/PortMaster/PortMaster.sh" "$@"
|
||||
dest-filename: PortMaster
|
||||
|
||||
# ES-DE
|
||||
|
||||
- name: ES-DE
|
||||
|
|
Loading…
Reference in a new issue