mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
CONFIGURATOR: revrted cli and removed legacy for now
This commit is contained in:
parent
dc30c2a53d
commit
c4e63a0124
|
|
@ -80,8 +80,6 @@
|
|||
<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>
|
||||
<li>Because of this, Favorites collection is now enabled by default on ES-DE</li>
|
||||
<li>New Configurator completely written in GODOT, now with controller support and many more features for you to discover</li>
|
||||
<li>Cli entry --configurator now opens the new Configurator, while --legacy-configurator opens the old, zenity, one</li>
|
||||
<li>New run game engine added to run games via cli, just run `flatpak run net.retrodeck.retrodeck retrodeck/roms/system/game.ext`, `--help` for more info</li>
|
||||
<li>MIME Type added: this means that you can "open with" or double click your games and run them via RetroDECK thanks to the engine descripted above</li>
|
||||
<li>ES-DE Updated to 3.1.1 with language support and more</li>
|
||||
|
|
|
|||
18
retrodeck.sh
18
retrodeck.sh
|
|
@ -28,7 +28,6 @@ Arguments:
|
|||
--info-msg \t Print paths and config informations
|
||||
--debug \t Enable debug logging for this launch of RetroDECK (This may miss errors very early in the launch process)
|
||||
--configurator \t Starts the RetroDECK Configurator
|
||||
--legacy-configurator \t Starts the old, zenity, RetroDECK Configurator
|
||||
--compress-one <file> \t Compresses target file to a compatible format
|
||||
--compress-all <format> \t Compresses all supported games into a compatible format.\n\t\t\t\t\t\t Available formats are \"chd\", \"zip\", \"rvz\" and \"all\"
|
||||
--reset-component <component> \t Reset one or more component or emulator configs to the default values
|
||||
|
|
@ -70,16 +69,17 @@ https://retrodeck.net
|
|||
cli_compress_all_games "$2"
|
||||
;;
|
||||
--configurator*)
|
||||
sh /app/tools/godot-configurator.sh
|
||||
;;
|
||||
--legacy-configurator*)
|
||||
sh /app/tools/configurator.sh
|
||||
if [[ $(configurator_generic_question_dialog "RetroDECK Configurator" "Would you like to launch RetroDECK after closing the Configurator?") == "false" ]]; then
|
||||
exit
|
||||
else
|
||||
shift
|
||||
fi
|
||||
#sh /app/bin/godot-configurator.sh
|
||||
;;
|
||||
# --legacy-configurator*)
|
||||
# sh /app/tools/configurator.sh
|
||||
# if [[ $(configurator_generic_question_dialog "RetroDECK Configurator" "Would you like to launch RetroDECK after closing the Configurator?") == "false" ]]; then
|
||||
# exit
|
||||
# else
|
||||
# shift
|
||||
# fi
|
||||
# ;;
|
||||
--reset-component*)
|
||||
component="$2"
|
||||
if [ -z "$component" ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue