Added Vita3K in the manifest and in "Open Emulator" on Configurator.

This commit is contained in:
XargonWan 2023-10-09 09:54:44 +02:00
parent 48666f41f8
commit 43f4e60214
3 changed files with 26 additions and 2 deletions

View file

@ -1337,7 +1337,7 @@
<platform>psp</platform>
<theme>psp</theme>
</system>
<!--
<system>
<name>psvita</name>
<fullname>Sony PlayStation Vita</fullname>
@ -1347,7 +1347,7 @@
<platform>psvita</platform>
<theme>psvita</theme>
</system>
-->
<system>
<name>psx</name>
<fullname>Sony PlayStation</fullname>

View file

@ -1261,6 +1261,24 @@ modules:
# Ryujinx - END
# Vita3K - START
- name: Vita3K
buildsystem: simple
build-commands:
- |
mkdir -p ${FLATPAK_DEST}/vita3k
cp -r * ${FLATPAK_DEST}/vita3k
chmod +x ${FLATPAK_DEST}/vita3k/Vita3K
rm -f ${FLATPAK_DEST}/vita3k/update-vita3k.sh
ln -s ${FLATPAK_DEST}/vita3k/Vita3K /app/bin/Vita3K
sources:
- type: archive
url: https://github.com/Vita3K/Vita3K/releases/download/continuous/ubuntu-latest.zip
sha256: VITASHAPLACEHOLDER
# Vita3K - END
# External manifests end
- name: retrodeck

View file

@ -35,6 +35,7 @@ source /app/libexec/global.sh
# - Primehack
# - RPCS3
# - Ryujinx
# - Vita3K
# - XEMU
# - Yuzu
# - Tools
@ -441,6 +442,7 @@ configurator_open_emulator_dialog() {
"Primehack" "Open the Metroid Prime emulator Primehack" \
"RPCS3" "Open the PS3 emulator RPCS3" \
"Ryujinx" "Open the Switch emulator Ryujinx" \
"Vita3K" "Open the PSVita emulator Vita3K" \
"XEMU" "Open the Xbox emulator XEMU" \
"Yuzu" "Open the Switch emulator Yuzu")
@ -490,6 +492,10 @@ configurator_open_emulator_dialog() {
ryujinx-wrapper
;;
"Vita3K" )
Vita3K
;;
"XEMU" )
xemu
;;