mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
PORTMASTER: added to Zenity
This commit is contained in:
parent
7ddb387709
commit
dc30c2a53d
|
@ -34,6 +34,7 @@ source /app/libexec/global.sh
|
||||||
# - MelonDS
|
# - MelonDS
|
||||||
# - PCSX2
|
# - PCSX2
|
||||||
# - PPSSPP
|
# - PPSSPP
|
||||||
|
# - PortMaster
|
||||||
# - Primehack
|
# - Primehack
|
||||||
# - Ruffle
|
# - Ruffle
|
||||||
# - RPCS3
|
# - RPCS3
|
||||||
|
@ -83,6 +84,7 @@ source /app/libexec/global.sh
|
||||||
# - Reset MelonDS
|
# - Reset MelonDS
|
||||||
# - Reset PCSX2
|
# - Reset PCSX2
|
||||||
# - Reset PPSSPP
|
# - Reset PPSSPP
|
||||||
|
# - Reset PortMaster
|
||||||
# - Reset Primehack
|
# - Reset Primehack
|
||||||
# - Reset Ruffle
|
# - Reset Ruffle
|
||||||
# - Reset RPCS3
|
# - Reset RPCS3
|
||||||
|
@ -448,6 +450,7 @@ configurator_open_emulator_dialog() {
|
||||||
"MelonDS" "Open the NDS emulator MelonDS"
|
"MelonDS" "Open the NDS emulator MelonDS"
|
||||||
"PCSX2" "Open the PS2 emulator PSXC2"
|
"PCSX2" "Open the PS2 emulator PSXC2"
|
||||||
"PPSSPP" "Open the PSP emulator PPSSPP"
|
"PPSSPP" "Open the PSP emulator PPSSPP"
|
||||||
|
"PortMaster" "Open PortMaster to manage your ports, even available from games list under PortMaster system"
|
||||||
"Primehack" "Open the Metroid Prime emulator Primehack"
|
"Primehack" "Open the Metroid Prime emulator Primehack"
|
||||||
"Ruffle" "Open the Flash emulator Ruffle"
|
"Ruffle" "Open the Flash emulator Ruffle"
|
||||||
"RPCS3" "Open the PS3 emulator RPCS3"
|
"RPCS3" "Open the PS3 emulator RPCS3"
|
||||||
|
@ -520,6 +523,11 @@ configurator_open_emulator_dialog() {
|
||||||
PPSSPPSDL
|
PPSSPPSDL
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"PortMaster" )
|
||||||
|
log i "Configurator: \"$emulator\""
|
||||||
|
PortMaster
|
||||||
|
;;
|
||||||
|
|
||||||
"Primehack" )
|
"Primehack" )
|
||||||
log i "Configurator: \"$emulator\""
|
log i "Configurator: \"$emulator\""
|
||||||
primehack-wrapper
|
primehack-wrapper
|
||||||
|
@ -1104,6 +1112,7 @@ configurator_reset_dialog() {
|
||||||
"MelonDS" "Reset the NDS emulator MelonDS to default settings"
|
"MelonDS" "Reset the NDS emulator MelonDS to default settings"
|
||||||
"PCSX2" "Reset the PS2 emulator PCSX2 to default settings"
|
"PCSX2" "Reset the PS2 emulator PCSX2 to default settings"
|
||||||
"PPSSPP" "Reset the PSP emulator PPSSPP to default settings"
|
"PPSSPP" "Reset the PSP emulator PPSSPP to default settings"
|
||||||
|
"PortMaster" "Reset PortMaster to default settings"
|
||||||
"Primehack" "Reset the Metroid Prime emulator Primehack to default settings"
|
"Primehack" "Reset the Metroid Prime emulator Primehack to default settings"
|
||||||
"RPCS3" "Reset the PS3 emulator RPCS3 to default settings"
|
"RPCS3" "Reset the PS3 emulator RPCS3 to default settings"
|
||||||
"Ryujinx" "Reset the Switch emulator Ryujinx to default settings"
|
"Ryujinx" "Reset the Switch emulator Ryujinx to default settings"
|
||||||
|
@ -1148,7 +1157,7 @@ configurator_reset_dialog() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "Primehack" | "Ruffle" | "RPCS3" | "Ryujinx" | "SteamROMManager" )
|
"Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "PortMaster" | "Primehack" | "Ruffle" | "RPCS3" | "Ryujinx" | "SteamROMManager" )
|
||||||
if [[ $(configurator_reset_confirmation_dialog "$component_to_reset" "Are you sure you want to reset the $component_to_reset emulator to default settings?\n\nThis process cannot be undone.") == "true" ]]; then
|
if [[ $(configurator_reset_confirmation_dialog "$component_to_reset" "Are you sure you want to reset the $component_to_reset emulator to default settings?\n\nThis process cannot be undone.") == "true" ]]; then
|
||||||
prepare_component "reset" "$component_to_reset" "configurator"
|
prepare_component "reset" "$component_to_reset" "configurator"
|
||||||
configurator_process_complete_dialog "resetting $component_to_reset"
|
configurator_process_complete_dialog "resetting $component_to_reset"
|
||||||
|
|
Loading…
Reference in a new issue