2022-11-18 20:10:17 +00:00
#!/bin/bash
post_update( ) {
# post update script
2024-03-05 07:41:28 +00:00
log i "Executing post-update script"
2022-11-18 20:10:17 +00:00
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.5.0b" ) = = "true" ] ] ; then # If updating from prior to save sorting change at 0.5.0b
2023-03-09 14:18:06 +00:00
save_migration
2022-11-19 21:47:45 +00:00
fi
2022-11-18 20:10:17 +00:00
2023-02-25 16:02:05 +00:00
# Everything within the following ( <code> ) will happen behind the Zenity dialog. The save migration was a long process so it has its own individual dialogs.
2022-11-18 20:10:17 +00:00
(
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.6.2b" ) = = "true" ] ] ; then
2023-02-25 16:02:05 +00:00
# In version 0.6.2b, the following changes were made that required config file updates/reset:
2023-03-07 15:36:14 +00:00
# - Primehack preconfiguration completely redone. "Stop emulation" hotkey set to Start+Select, Xbox and Nintendo keymap profiles were created, Xbox set as default.
# - Duckstation save and state locations were dir_prep'd to the rdhome/save and /state folders, which was not previously done. Much safer now!
2023-03-14 14:33:24 +00:00
# - Fix PICO-8 folder structure. ROM and save folders are now sane and binary files will go into ~/retrodeck/bios/pico-8/
2023-03-15 23:58:02 +00:00
2023-02-25 16:11:40 +00:00
rm -rf /var/config/primehack # Purge old Primehack config files. Saves are safe as they are linked into /var/data/primehack.
2024-01-16 08:14:27 +00:00
prepare_component "reset" "primehack"
2023-03-07 15:36:14 +00:00
dir_prep " $rdhome /saves/duckstation " "/var/data/duckstation/memcards"
dir_prep " $rdhome /states/duckstation " "/var/data/duckstation/savestates"
2023-03-14 14:33:24 +00:00
mv " $bios_folder /pico8 " " $bios_folder /pico8_olddata " # Move legacy (and incorrect / non-functional ) PICO-8 location for future cleanup / less confusion
2023-03-16 00:01:53 +00:00
dir_prep " $bios_folder /pico-8 " " $HOME /.lexaloffle/pico-8 " # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed
2023-03-14 14:33:24 +00:00
dir_prep " $roms_folder /pico8 " " $bios_folder /pico-8/carts " # Symlink default game location to RD roms for cleanliness (this location is overridden anyway by the --root_path launch argument anyway)
dir_prep " $bios_folder /pico-8/cdata " " $saves_folder /pico-8 " # PICO-8 saves folder
2023-02-25 16:02:05 +00:00
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.6.3b" ) = = "true" ] ] ; then
2023-03-31 19:45:46 +00:00
# In version 0.6.3b, the following changes were made that required config file updates/reset:
2023-03-16 15:14:25 +00:00
# - Put Dolphin and Primehack save states in different folders inside $rd_home/states
# - Fix symlink to hard-coded PICO-8 config folder (dir_prep doesn't like ~)
2023-03-21 15:11:20 +00:00
# - Overwrite Citra and Yuzu configs, as controller mapping was broken due to emulator updates.
2023-04-10 13:02:06 +00:00
2023-03-16 15:14:25 +00:00
dir_prep " $rdhome /states/dolphin " "/var/data/dolphin-emu/StateSaves"
dir_prep " $rdhome /states/primehack " "/var/data/primehack/StateSaves"
rm -rf " $HOME /~/ " # Remove old incorrect location from 0.6.2b
2023-03-22 16:41:26 +00:00
rm -f " $HOME /.lexaloffle/pico-8 " # Remove old symlink to prevent recursion
2023-03-16 15:14:25 +00:00
dir_prep " $bios_folder /pico-8 " " $HOME /.lexaloffle/pico-8 " # Store binary and config files together. The .lexaloffle directory is a hard-coded location for the PICO-8 config file, cannot be changed
2023-03-22 20:45:43 +00:00
dir_prep " $saves_folder /pico-8 " " $bios_folder /pico-8/cdata " # PICO-8 saves folder structure was backwards, fixing for consistency.
2023-03-21 15:11:20 +00:00
2023-05-02 18:32:45 +00:00
cp -f " $emuconfigs /citra/qt-config.ini " /var/config/citra-emu/qt-config.ini
2023-03-21 20:00:30 +00:00
sed -i 's#RETRODECKHOMEDIR#' $rdhome '#g' /var/config/citra-emu/qt-config.ini
2023-05-02 18:32:45 +00:00
cp -fr " $emuconfigs /yuzu/ " * /var/config/yuzu/
2023-03-21 20:00:30 +00:00
sed -i 's#RETRODECKHOMEDIR#' $rdhome '#g' /var/config/yuzu/qt-config.ini
2023-03-22 18:42:06 +00:00
# Remove unneeded tools folder, as location has changed to RO space
rm -rfv /var/config/retrodeck/tools/
2023-03-16 15:14:25 +00:00
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.6.4b" ) = = "true" ] ] ; then
2023-03-31 19:45:46 +00:00
# In version 0.6.4b, the following changes were made:
# Changed settings in Primehack: The audio output was not selected by default, default AR was also incorrect.
# Changed settings in Duckstation and PCSX2: The "ask on exit" was disabled and "save on exit" was enabled.
# The default configs have been updated for new installs and resets, a patch was created to address existing installs.
deploy_multi_patch "emu-configs/patches/updates/064b_update.patch"
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.6.5b" ) = = "true" ] ] ; then
2023-04-06 20:22:27 +00:00
# In version 0.6.5b, the following changes were made:
# Change Yuzu GPU accuracy to normal for better performance
set_setting_value $yuzuconf "gpu_accuracy" "0" "yuzu" "Renderer"
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.7.0b" ) = = "true" ] ] ; then
2023-03-10 21:54:07 +00:00
# In version 0.7.0b, the following changes were made that required config file updates/reset or other changes to the filesystem:
2023-05-05 15:18:37 +00:00
# - Update retrodeck.cfg and set new paths to $rdhome by default
2023-05-16 14:21:23 +00:00
# - Update PCSX2 and Duckstation configs to latest templates (to accomadate RetroAchievements feature) and move Duckstation config folder from /var/data to /var/config
2023-03-10 21:54:07 +00:00
# - New ~/retrodeck/mods and ~/retrodeck/texture_packs directories are added and symlinked to multiple different emulators (where supported)
2023-03-16 15:38:01 +00:00
# - Expose ES-DE gamelists folder to user at ~/retrodeck/gamelists
2023-05-11 15:30:47 +00:00
# - Copy new borders into RA config location
2023-05-12 21:04:20 +00:00
# - Copy new RetroArch control remaps into RA config location
2023-06-02 14:12:33 +00:00
# - Add shipped Amiga bios if it doesn't already exist
2023-04-20 19:56:41 +00:00
# - Update RPCS3 vfs file contents. migrate from old location if needed
2023-04-25 14:59:57 +00:00
# - Disable ESDE update checks for existing installs
2023-04-27 14:31:32 +00:00
# - Move Duckstation saves and states to new locations
2023-04-27 17:37:03 +00:00
# - Clean up legacy tools files (Configurator is now accessible through the main ES-DE menu)
2023-05-01 18:24:12 +00:00
# - Move Dolphin and Primehack save folder names
2023-05-10 19:14:16 +00:00
# - Move PPSSPP saves/states to appropriate folders
2023-05-10 19:38:22 +00:00
# - Set ESDE user themes folder directly
2023-05-18 15:38:20 +00:00
# - Disable auto-save/load in existing RA / PCSX2 / Duckstation installs for proper preset functionality
# - Disable ask-on-exit in existing Citra / Dolphin / Duckstation / Primehack installs for proper preset functionality
# - Disable auto-load-state in existing PPSSPP installs for proper preset functionality
2023-05-16 16:29:36 +00:00
# - Init Cemu as it is a new emulator
2023-06-09 17:43:45 +00:00
# - Init PICO-8 as it has newly-shipped config files
2023-05-05 15:18:37 +00:00
update_rd_conf # Expand retrodeck.cfg to latest template
set_setting_value $rd_conf "screenshots_folder" " $rdhome /screenshots "
set_setting_value $rd_conf "mods_folder" " $rdhome /mods "
set_setting_value $rd_conf "texture_packs_folder" " $rdhome /texture_packs "
set_setting_value $rd_conf "borders_folder" " $rdhome /borders "
conf_read
2023-03-10 21:54:07 +00:00
2023-05-15 14:58:32 +00:00
mv -f " $pcsx2conf " " $pcsx2conf .bak "
generate_single_patch " $emuconfigs /PCSX2/PCSX2.ini " " $pcsx2conf .bak " "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" pcsx2
deploy_single_patch " $emuconfigs /PCSX2/PCSX2.ini " "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch" " $pcsx2conf "
2023-05-05 16:27:31 +00:00
rm -f "/var/config/PCSX2/inis/PCSX2-cheevos-upgrade.patch"
2023-05-16 14:21:23 +00:00
dir_prep "/var/config/duckstation" "/var/data/duckstation"
2023-05-05 16:27:31 +00:00
mv -f " $duckstationconf " " $duckstationconf .bak "
2023-05-13 16:05:50 +00:00
generate_single_patch " $emuconfigs /duckstation/settings.ini " " $duckstationconf .bak " "/var/config/duckstation/duckstation-cheevos-upgrade.patch" pcsx2
deploy_single_patch " $emuconfigs /duckstation/settings.ini " "/var/config/duckstation/duckstation-cheevos-upgrade.patch" " $duckstationconf "
rm -f "/var/config/duckstation/duckstation-cheevos-upgrade.patch"
2023-05-05 16:27:31 +00:00
2024-02-28 14:55:44 +00:00
create_dir " $mods_folder "
create_dir " $texture_packs_folder "
create_dir " $borders_folder "
2023-05-05 15:18:37 +00:00
2023-03-17 14:26:31 +00:00
dir_prep " $mods_folder /Primehack " "/var/data/primehack/Load/GraphicMods"
dir_prep " $texture_packs_folder /Primehack " "/var/data/primehack/Load/Textures"
dir_prep " $mods_folder /Dolphin " "/var/data/dolphin-emu/Load/GraphicMods"
dir_prep " $texture_packs_folder /Dolphin " "/var/data/dolphin-emu/Load/Textures"
dir_prep " $mods_folder /Citra " "/var/data/citra-emu/load/mods"
dir_prep " $texture_packs_folder /Citra " "/var/data/citra-emu/load/textures"
dir_prep " $mods_folder /Yuzu " "/var/data/yuzu/load"
2023-05-18 14:23:05 +00:00
dir_prep " $texture_packs_folder /RetroArch-Mesen " "/var/config/retroarch/system/HdPacks"
dir_prep " $texture_packs_folder /PPSSPP " "/var/config/ppsspp/PSP/TEXTURES"
dir_prep " $texture_packs_folder /PCSX2 " "/var/config/PCSX2/textures"
2023-05-23 19:24:54 +00:00
dir_prep " $texture_packs_folder /RetroArch-Mupen64Plus/cache " "/var/config/retroarch/system/Mupen64plus/cache"
dir_prep " $texture_packs_folder /RetroArch-Mupen64Plus/hires_texture " "/var/config/retroarch/system/Mupen64plus/hires_texture"
2023-05-18 14:23:05 +00:00
dir_prep " $texture_packs_folder /Duckstation " "/var/config/duckstation/textures"
2023-03-16 15:38:01 +00:00
2024-02-19 15:21:43 +00:00
dir_prep " $rdhome /gamelists " "/var/config/emulationstation/ES-DE/gamelists"
2023-04-05 18:21:50 +00:00
2023-05-11 16:19:34 +00:00
dir_prep " $borders_folder " "/var/config/retroarch/overlays/borders"
2023-06-27 14:53:34 +00:00
rsync -rlD --mkpath "/app/retrodeck/emu-configs/retroarch/borders/" "/var/config/retroarch/overlays/borders/"
2023-05-11 15:30:47 +00:00
2023-06-15 14:50:09 +00:00
rsync -rlD --mkpath " $emuconfigs /defaults/retrodeck/presets/remaps/ " "/var/config/retroarch/config/remaps/"
2023-05-12 21:04:20 +00:00
2023-06-02 14:12:33 +00:00
if [ [ ! -f " $bios_folder /capsimg.so " ] ] ; then
cp -f "/app/retrodeck/extras/Amiga/capsimg.so" " $bios_folder /capsimg.so "
fi
2023-04-20 19:56:41 +00:00
cp -f $emuconfigs /rpcs3/vfs.yml /var/config/rpcs3/vfs.yml
2023-04-27 13:23:07 +00:00
sed -i 's^\^$(EmulatorDir): .*^$(EmulatorDir): ' " $bios_folder /rpcs3/ " '^' " $rpcs3vfsconf "
set_setting_value " $rpcs3vfsconf " "/games/" " $roms_folder /ps3/ " "rpcs3"
2023-04-20 19:56:41 +00:00
if [ [ -d " $roms_folder /ps3/emudir " ] ] ; then # The old location exists, meaning the emulator was run at least once.
2023-04-21 13:56:43 +00:00
mkdir " $bios_folder /rpcs3 "
2023-05-02 18:32:45 +00:00
mv " $roms_folder /ps3/emudir/ " * " $bios_folder /rpcs3/ "
2023-04-20 19:56:41 +00:00
rm " $roms_folder /ps3/emudir "
2023-04-27 20:51:24 +00:00
configurator_generic_dialog "RetroDECK 0.7.0b Upgrade" "As part of this update and due to a RPCS3 config upgrade, the files that used to exist at\n\n~/retrodeck/roms/ps3/emudir\n\nare now located at\n\n~/retrodeck/bios/rpcs3.\nYour existing files have been moved automatically."
2023-04-20 19:56:41 +00:00
fi
2024-02-28 14:55:44 +00:00
create_dir " $bios_folder /rpcs3/dev_hdd0 "
create_dir " $bios_folder /rpcs3/dev_hdd1 "
create_dir " $bios_folder /rpcs3/dev_flash "
create_dir " $bios_folder /rpcs3/dev_flash2 "
create_dir " $bios_folder /rpcs3/dev_flash3 "
create_dir " $bios_folder /rpcs3/dev_bdvd "
create_dir " $bios_folder /rpcs3/dev_usb000 "
2023-04-21 13:56:43 +00:00
dir_prep " $bios_folder /rpcs3/dev_hdd0/home/00000001/savedata " " $saves_folder /ps3/rpcs3 "
2023-04-25 14:59:57 +00:00
set_setting_value $es_settings "ApplicationUpdaterFrequency" "never" "es_settings"
2023-04-25 15:06:38 +00:00
2023-04-27 20:51:24 +00:00
if [ [ -f " $saves_folder /duckstation/shared_card_1.mcd " || -f " $saves_folder /duckstation/shared_card_2.mcd " ] ] ; then
configurator_generic_dialog "RetroDECK 0.7.0b Upgrade" "As part of this update, the location of saves and states for Duckstation has been changed.\n\nYour files will be moved automatically, and can now be found at\n\n~.../saves/psx/duckstation/memcards/\nand\n~.../states/psx/duckstation/"
fi
2024-02-28 14:55:44 +00:00
create_dir " $saves_folder /psx/duckstation/memcards "
2023-05-02 18:32:45 +00:00
mv " $saves_folder /duckstation/ " * " $saves_folder /psx/duckstation/memcards/ "
2023-04-27 14:31:32 +00:00
rmdir " $saves_folder /duckstation " # File-safe folder cleanup
2023-05-16 14:21:23 +00:00
unlink "/var/config/duckstation/memcards"
2023-04-27 20:51:24 +00:00
set_setting_value " $duckstationconf " "Card1Path" " $saves_folder /psx/duckstation/memcards/shared_card_1.mcd " "duckstation" "MemoryCards"
set_setting_value " $duckstationconf " "Card2Path" " $saves_folder /psx/duckstation/memcards/shared_card_2.mcd " "duckstation" "MemoryCards"
set_setting_value " $duckstationconf " "Directory" " $saves_folder /psx/duckstation/memcards " "duckstation" "MemoryCards"
2023-05-15 14:36:24 +00:00
set_setting_value " $duckstationconf " "RecursivePaths" " $roms_folder /psx " "duckstation" "GameList"
2024-02-28 14:55:44 +00:00
create_dir " $states_folder /psx "
2023-04-27 14:31:32 +00:00
mv -t " $states_folder /psx/ " " $states_folder /duckstation "
2023-05-16 14:21:23 +00:00
unlink "/var/config/duckstation/savestates"
2023-05-13 16:05:50 +00:00
dir_prep " $states_folder /psx/duckstation " "/var/config/duckstation/savestates"
2023-04-27 14:31:32 +00:00
2023-04-27 17:37:03 +00:00
rm -rf /var/config/retrodeck/tools
2024-02-19 15:21:43 +00:00
rm -rf /var/config/emulationstation/ES-DE/gamelists/tools/
2023-04-27 17:37:03 +00:00
2023-05-01 18:24:12 +00:00
mv " $saves_folder /gc/dolphin/EUR " " $saves_folder /gc/dolphin/EU "
mv " $saves_folder /gc/dolphin/USA " " $saves_folder /gc/dolphin/US "
mv " $saves_folder /gc/dolphin/JAP " " $saves_folder /gc/dolphin/JP "
dir_prep " $saves_folder /gc/dolphin/EU " "/var/data/dolphin-emu/GC/EUR"
dir_prep " $saves_folder /gc/dolphin/US " "/var/data/dolphin-emu/GC/USA"
dir_prep " $saves_folder /gc/dolphin/JP " "/var/data/dolphin-emu/GC/JAP"
mv " $saves_folder /gc/primehack/EUR " " $saves_folder /gc/primehack/EU "
mv " $saves_folder /gc/primehack/USA " " $saves_folder /gc/primehack/US "
mv " $saves_folder /gc/primehack/JAP " " $saves_folder /gc/primehack/JP "
dir_prep " $saves_folder /gc/primehack/EU " "/var/data/primehack/GC/EUR"
dir_prep " $saves_folder /gc/primehack/US " "/var/data/primehack/GC/USA"
dir_prep " $saves_folder /gc/primehack/JP " "/var/data/primehack/GC/JAP"
2023-05-10 19:14:16 +00:00
dir_prep " $saves_folder /PSP/PPSSPP-SA " "/var/config/ppsspp/PSP/SAVEDATA"
dir_prep " $states_folder /PSP/PPSSPP-SA " "/var/config/ppsspp/PSP/PPSSPP_STATE"
2023-05-10 19:38:22 +00:00
2023-05-11 20:59:01 +00:00
set_setting_value " $es_settings " "ROMDirectory" " $roms_folder " "es_settings"
set_setting_value " $es_settings " "MediaDirectory" " $media_folder " "es_settings"
2023-05-17 15:28:12 +00:00
sed -i '$ a <string name="UserThemeDirectory" value="" />' " $es_settings " # Add new default line to existing file
2023-05-11 20:59:01 +00:00
set_setting_value " $es_settings " "UserThemeDirectory" " $themes_folder " "es_settings"
unlink "/var/config/emulationstation/ROMs"
2024-02-19 15:21:43 +00:00
unlink "/var/config/emulationstation/ES-DE/downloaded_media"
unlink "/var/config/emulationstation/ES-DE/themes"
2023-05-16 16:29:36 +00:00
set_setting_value " $raconf " "savestate_auto_load" "false" "retroarch"
set_setting_value " $raconf " "savestate_auto_save" "false" "retroarch"
set_setting_value " $pcsx2conf " "SaveStateOnShutdown" "false" "pcsx2" "EmuCore"
set_setting_value " $duckstationconf " "SaveStateOnExit" "false" "duckstation" "Main"
2023-05-17 15:28:12 +00:00
set_setting_value " $duckstationconf " "Enabled" "false" "duckstation" "Cheevos"
2023-05-16 16:29:36 +00:00
2023-05-18 15:38:20 +00:00
set_setting_value " $citraconf " "confirmClose" "false" "citra" "UI"
set_setting_value " $citraconf " "confirmClose\default" "false" "citra" "UI"
set_setting_value " $dolphinconf " "ConfirmStop" "False" "dolphin" "Interface"
set_setting_value " $duckstationconf " "ConfirmPowerOff" "false" "duckstation" "Main"
set_setting_value " $primehackconf " "ConfirmStop" "False" "primehack" "Interface"
2023-06-11 14:27:48 +00:00
2023-05-18 15:38:20 +00:00
set_setting_value " $ppssppconf " "AutoLoadSaveState" "0" "ppsspp" "General"
2024-01-16 08:14:27 +00:00
prepare_component "reset" "cemu"
2023-06-02 14:19:40 +00:00
2024-01-16 08:14:27 +00:00
prepare_component "reset" "pico8"
2023-06-09 17:43:45 +00:00
2024-07-24 13:36:58 +00:00
configurator_generic_dialog "RetroDECK 0.7.0b Upgrade" "Would you like to install the official controller profile?\n(this will reset your custom emulator settings)\n\nAfter installation you can enable it from from Controller Settings\t->\tTemplates."
2023-06-02 14:19:40 +00:00
if [ [ $( configurator_generic_question_dialog "RetroDECK Official Controller Profile" "Would you like to install the official RetroDECK controller profile?" ) = = "true" ] ] ; then
install_retrodeck_controller_profile
2024-01-16 08:14:27 +00:00
prepare_component "reset" "all"
2023-06-02 14:19:40 +00:00
fi
2023-03-10 21:54:07 +00:00
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.7.1b" ) = = "true" ] ] ; then
2023-07-24 19:30:37 +00:00
# In version 0.7.1b, the following changes were made that required config file updates/reset or other changes to the filesystem:
# - Force update PPSSPP standalone keybinds for L/R.
set_setting_value " $ppssppcontrolsconf " "L" "1-45,10-193" "ppsspp" "ControlMapping"
set_setting_value " $ppssppcontrolsconf " "R" "1-51,10-192" "ppsspp" "ControlMapping"
fi
2023-02-25 16:02:05 +00:00
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.7.3b" ) = = "true" ] ] ; then
2023-11-18 08:36:17 +00:00
# In version 0.7.3b, there was a bug that prevented the correct creations of the roms/system folders, so we force recreate them.
emulationstation --home /var/config/emulationstation --create-system-dirs
fi
2024-02-28 16:09:58 +00:00
if [ [ $( check_version_is_older_than "0.8.0b" ) = = "true" ] ] ; then
2024-02-29 19:46:38 +00:00
log i "In version 0.8.0b, the following changes were made that required config file updates/reset or other changes to the filesystem:"
log i "- Remove RetroDECK controller profile from existing template location"
log i "- Change section name in retrodeck.cfg for ABXY button swap preset"
log i "- Force disable global rewind in RA in prep for preset system"
log i "- The following components are been added and need to be initialized: es-de 3.0, MAME-SA, Vita3K, GZDoom"
2024-03-13 07:46:58 +00:00
# Removing old controller configs
local controller_configs_path = " $HOME /.steam/steam/controller_base/templates "
local controller_configs = (
" $controller_configs_path /RetroDECK_controller_config.vdf "
" $controller_configs_path /RetroDECK_controller_generic_standard.vdf "
" $controller_configs_path /RetroDECK_controller_ps3_dualshock3.vdf "
" $controller_configs_path /RetroDECK_controller_ps4_dualshock4.vdf "
" $controller_configs_path /RetroDECK_controller_ps5_dualsense.vdf "
" $controller_configs_path /RetroDECK_controller_steam_controller_gordon.vdf "
" $controller_configs_path /RetroDECK_controller_neptune.vdf "
" $controller_configs_path /RetroDECK_controller_switch_pro.vdf "
" $controller_configs_path /RetroDECK_controller_xbox360.vdf "
" $controller_configs_path /RetroDECK_controller_xboxone.vdf "
)
for this_vdf in " ${ controller_configs [@] } " ; do
if [ [ -f " $this_vdf " ] ] ; then
log d " Found an old Steam Controller profile, removing it: \" $this_vdf \" "
rm -f " $this_vdf "
fi
done
2024-02-29 19:46:38 +00:00
log d " Renaming \"nintendo_button_layout\" into \"abxy_button_swap\" in the retrodeck config file: \" $rd_conf \" "
2024-01-29 15:46:27 +00:00
sed -i 's^nintendo_button_layout^abxy_button_swap^' " $rd_conf " # This is a one-off sed statement as there are no functions for replacing section names
2024-02-29 19:46:38 +00:00
log i "Force disabling rewind, you can re-enable it via the Configurator"
2024-02-27 19:41:25 +00:00
set_setting_value " $raconf " "rewind_enable" "false" "retroarch"
2024-02-21 09:00:52 +00:00
# in 3.0 .emulationstation was moved into ES-DE
2024-02-29 19:46:38 +00:00
log i "Renaming old \"/var/config/emulationstation\" folder as \"/var/config/ES-DE\""
2024-02-21 13:26:37 +00:00
mv -f /var/config/emulationstation /var/config/ES-DE
2024-02-25 14:53:37 +00:00
2024-02-25 15:15:40 +00:00
prepare_component "reset" "es-de"
2024-02-26 12:48:44 +00:00
prepare_component "reset" "mame"
prepare_component "reset" "vita3k"
prepare_component "reset" "gzdoom"
2024-02-28 16:09:58 +00:00
if [ -d " $rdhome /.logs " ] ; then
mv " $rdhome /.logs " " $logs_folder "
2024-02-29 19:46:38 +00:00
log i " Old log folder \" $rdhome /.logs\" found. Renamed it as \" $logs_folder \" "
2024-02-28 16:09:58 +00:00
fi
# The save folder of rpcs3 was inverted so we're moving the saves into the real one
2024-02-29 19:46:38 +00:00
log i "RPCS3 saves needs to be migrated, executing."
2024-03-29 20:08:58 +00:00
if [ [ " $( ls -A $bios_folder /rpcs3/dev_hdd0/home/00000001/savedata) " ] ] ; then
log i "Existing RPCS3 savedata found, backing up..."
create_dir " $backups_folder "
zip -rq9 " $backups_folder / $( date +"%0m%0d" ) _rpcs3_save_data.zip " " $bios_folder /rpcs3/dev_hdd0/home/00000001/savedata "
fi
2024-03-02 10:45:41 +00:00
dir_prep " $saves_folder /ps3/rpcs3 " " $bios_folder /rpcs3/dev_hdd0/home/00000001/savedata "
2024-03-29 19:59:01 +00:00
log i " RPCS3 saves migration completed, a backup was made here: \" $backups_folder / $( date +"%0m%0d" ) _rpcs3_save_data.zip\". "
2024-03-02 10:45:41 +00:00
log i " Switch firmware folder should be moved in \" $bios_folder /switch/firmware\" from \" $bios_folder /switch/registered\" "
2024-03-29 07:30:01 +00:00
mv " $bios_folder /switch/registered " " $bios_folder /switch/firmware "
2024-03-02 10:45:41 +00:00
2024-03-08 07:58:56 +00:00
log i "New systems were added in this version, regenerating system folders."
2024-03-17 10:34:49 +00:00
#es-de --home "/var/config/" --create-system-dirs
es-de --create-system-dirs
2024-03-08 07:58:56 +00:00
2024-01-29 15:46:27 +00:00
fi
2024-04-19 02:48:36 +00:00
if [ [ $( check_version_is_older_than "0.8.1b" ) = = "true" ] ] ; then
2024-04-23 14:41:38 +00:00
log i "In version 0.8.1b, the following changes were made that required config file updates/reset or other changes to the filesystem:"
log i "- ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
log i "- Give the user the option to reset Ryujinx, which was not properly initialized in 0.8.0b"
2024-07-22 13:39:07 +00:00
2024-04-19 02:48:36 +00:00
log d "ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
dir_prep " $rdhome /ES-DE/collections " "/var/config/ES-DE/collections"
dir_prep " $rdhome /ES-DE/gamelists " "/var/config/ES-DE/gamelists"
2024-05-04 08:13:30 +00:00
log i " Moving ES-DE collections, downloaded_media, gamelist, and themes from \" $rdhome \" to \" $rdhome /ES-DE\" "
set_setting_value " $es_settings " "MediaDirectory" " $rdhome /ES-DE/downloaded_media " "es_settings"
set_setting_value " $es_settings " "UserThemeDirectory" " $rdhome /ES-DE/themes " "es_settings"
2024-08-03 07:53:04 +00:00
mv -f " $rdhome /themes " " $rdhome /ES-DE/themes " && log d " Move of \" $rdhome /themes\" in \" $rdhome /ES-DE\" folder completed "
mv -f " $rdhome /downloaded_media " " $rdhome /ES-DE/downloaded_media " && log d " Move of \" $rdhome /downloaded_media\" in \" $rdhome /ES-DE\" folder completed "
mv -f " $rdhome /gamelists/ " * " $rdhome /ES-DE/gamelists " && log d " Move of \" $rdhome /gamelists/\" in \" $rdhome /ES-DE\" folder completed " && rm -rf " $rdhome /gamelists "
2024-04-23 14:41:38 +00:00
2024-05-05 07:39:30 +00:00
log i " MAME-SA, migrating samples to the new exposed folder: from \"/var/data/mame/assets/samples\" to \" $bios_folder /mame-sa/samples\" "
create_dir " $bios_folder /mame-sa/samples "
2024-05-06 08:48:18 +00:00
mv -f "/var/data/mame/assets/samples/" * " $bios_folder /mame-sa/samples "
2024-05-05 07:39:30 +00:00
set_setting_value " $mameconf " "samplepath" " $bios_folder /mame-sa/samples " "mame"
2024-05-05 19:39:00 +00:00
log i " Installing the missing ScummVM assets and renaming \" $mods_folder /RetroArch/ScummVM/themes\" into \"theme\" "
mv -f " $mods_folder /RetroArch/ScummVM/themes " " $mods_folder /RetroArch/ScummVM/theme "
2024-05-07 19:44:12 +00:00
unzip -o " $emuconfigs /retroarch/ScummVM.zip " 'scummvm/extra/*' -d /tmp
unzip -o " $emuconfigs /retroarch/ScummVM.zip " 'scummvm/theme/*' -d /tmp
mv -f /tmp/scummvm/extra " $mods_folder /RetroArch/ScummVM "
mv -f /tmp/scummvm/theme " $mods_folder /RetroArch/ScummVM "
rm -rf /tmp/extra /tmp/theme
2024-05-05 19:39:00 +00:00
2024-05-05 20:01:17 +00:00
log i "Placing cheats in \"/var/data/mame/cheat\""
2024-05-09 13:09:00 +00:00
unzip -j -o " $emuconfigs /mame/cheat0264.zip " 'cheat.7z' -d "/var/data/mame/cheat"
2024-05-05 20:01:17 +00:00
2024-04-23 14:41:38 +00:00
log d "Verifying with user if they want to reset Ryujinx"
if [ [ " $( configurator_generic_question_dialog "RetroDECK 0.8.1b Ryujinx Reset" "In RetroDECK 0.8.0b the Ryujinx emulator was not properly initialized for upgrading users.\nThis would cause Ryujinx to not work properly.\n\nWould you like to reset Ryujinx to default RetroDECK settings now?\n\nIf you have made your own changes to the Ryujinx config, you can decline this reset." ) " = = "true" ] ] ; then
log d "User agreed to Ryujinx reset"
prepare_component "reset" "ryujinx"
fi
2024-04-19 02:48:36 +00:00
fi
2024-06-22 12:40:22 +00:00
if [ [ $( check_version_is_older_than "0.8.2b" ) = = "true" ] ] ; then
2024-07-21 22:33:24 +00:00
log i "Vita3K changed some paths, reflecting them: moving \"/var/data/Vita3K\" in \"/var/config/Vita3K\""
move "/var/data/Vita3K" "/var/config/Vita3K"
log i " Moving ES-DE downloaded_media, gamelist, and themes from \" $rdhome \" to \" $rdhome /ES-DE\" due to a RetroDECK Framework bug "
2024-08-03 07:53:04 +00:00
move " $rdhome /themes " " $rdhome /ES-DE/themes " && log d " Move of \" $rdhome /themes\" in \" $rdhome /ES-DE\" folder completed "
move " $rdhome /downloaded_media " " $rdhome /ES-DE/downloaded_media " && log d " Move of \" $rdhome /downloaded_media\" in \" $rdhome /ES-DE\" folder completed "
move " $rdhome /gamelists " " $rdhome /ES-DE/gamelists " && log d " Move of \" $rdhome /gamelists/\" in \" $rdhome /ES-DE\" folder completed "
move " $rdhome /collections " " $rdhome /ES-DE/collections " && log d " Move of \" $rdhome /collections/\" in \" $rdhome /ES-DE\" folder completed "
2024-07-21 22:33:24 +00:00
log i "Since in this version we moved to a PR build of Ryujinx we need to symlink it."
ln -sv $ryujinxconf " $( dirname $ryujinxconf ) /PRConfig.json "
fi
2024-07-24 13:14:51 +00:00
if [ [ $( check_version_is_older_than "0.8.3b" ) = = "true" ] ] ; then
# In version 0.8.3b, the following changes were made:
# - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations.
# Check if any of the directories exist
2024-08-03 07:53:04 +00:00
if [ -d " $rdhome /themes " ] || [ -d " $rdhome /downloaded_media " ] || [ -d " $rdhome /gamelists " ] || [ -d " $rdhome /collections " ] ; then
log i " Moving ES-DE downloaded_media, gamelist, and themes from \" $rdhome \" to \" $rdhome /ES-DE\" due to a RetroDECK Framework bug "
2024-07-24 13:14:51 +00:00
2024-08-03 07:53:04 +00:00
# Ask user if they want to move and overwrite the data
if [ [ $( configurator_generic_question_dialog "Move Data" " In the previous version some users suffered a bug where ES-DE appeared empty (no scraped data or collections for example).\n\n<span foreground=' $purple ' size='larger'><b>Your data is not gone!</b></span>\n\nit's just in a different path.\n\nDo you want to recover your old data replacing the actual one?\nBy choosing no instead, the folder with be moved but no data will be replaced and it will be availalbe in the retrodeck folder.\n\nThe affected folders are:\n\nretrodeck/themes\t\t\t\t->\t\" $rdhome /ES-DE\"/themes\nretrodeck/downloaded_media\t->\t\" $rdhome /ES-DE\"/downloaded_media\nretrodeck/gamelists\t\t\t\t->\t\" $rdhome /ES-DE\"/gamelist\nretrodeck/collections\t\t\t->\t\" $rdhome /ES-DE\"/collections " ) = = "true" ] ] ; then
move_cmd = "mv -f" # Use mv with overwrite
log i "User chose to move and overwrite the data."
else
move_cmd = "move" # Use existing move function
log i "User chose to move the data without overwriting."
fi
# Move each directory if it exists
if [ [ -d " $rdhome /themes " ] ] ; then
mv -f " $rdhome /themes " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /themes\" in \" $rdhome /ES-DE\" folder completed "
else
log i "ES-DE themes appears to already have been migrated."
fi
if [ [ -d " $rdhome /downloaded_media " ] ] ; then
mv -f " $rdhome /downloaded_media " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /downloaded_media\" in \" $rdhome /ES-DE\" folder completed "
else
log i "ES-DE downloaded media appears to already have been migrated."
fi
if [ [ -d " $rdhome /gamelists " ] ] ; then
mv -f " $rdhome /gamelists " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /gamelists/\" in \" $rdhome /ES-DE\" folder completed "
else
log i "ES-DE gamelists appears to already have been migrated."
fi
2024-07-24 13:14:51 +00:00
2024-08-03 07:53:04 +00:00
if [ [ -d " $rdhome /collections " ] ] ; then
mv -f " $rdhome /collections " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /collections/\" in \" $rdhome /ES-DE\" folder completed "
else
log i "ES-DE collections appears to already have been migrated."
fi
2024-08-02 01:22:36 +00:00
else
2024-08-03 07:53:04 +00:00
log i "ES-DE folders appears to already have been migrated."
2024-08-02 01:22:36 +00:00
fi
2024-08-03 07:53:04 +00:00
# Better to refresh the paths
set_setting_value " $es_settings " "ROMDirectory" " $roms_folder " "es_settings"
set_setting_value " $es_settings " "MediaDirectory" " $media_folder " "es_settings"
set_setting_value " $es_settings " "UserThemeDirectory" " $themes_folder " "es_settings"
fi
if [ [ $( check_version_is_older_than "0.8.4b" ) = = "true" ] ] ; then
# In version 0.8.4b, the following changes were made:
# - Recovery from a failed move of the themes, downloaded_media and gamelists folder to their new ES-DE locations (AGAIN)
2024-08-04 12:55:58 +00:00
log d "Injecting the new retrodeck/ES-DE subdir into the retrodeck.cfg"
sed -i -e '/media_folder=/s|retrodeck/|retrodeck/ES-DE/|g' -e '/themes_folder=/s|retrodeck/|retrodeck/ES-DE/|g' " $rd_conf " && log d "Injection successful"
2024-08-05 02:15:12 +00:00
log d " $( cat " $rd_conf " | grep media_folder) "
log d " $( cat " $rd_conf " | grep themes_folder) "
2024-08-04 12:55:58 +00:00
conf_read
2024-08-05 02:15:12 +00:00
conf_write
2024-08-04 12:55:58 +00:00
2024-08-03 07:53:04 +00:00
log i " Checking if ES-DE downloaded_media, gamelist, and themes folder must be migrated from \" $rdhome \" to \" $rdhome /ES-DE\" due to a RetroDECK Framework bug "
2024-07-24 13:14:51 +00:00
2024-08-02 01:22:36 +00:00
# Move each directory if it exists
if [ [ -d " $rdhome /themes " ] ] ; then
2024-08-03 07:53:04 +00:00
mv -f " $rdhome /themes " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /themes\" in \" $rdhome /ES-DE\" folder completed "
2024-08-02 01:22:36 +00:00
else
log i "ES-DE themes appears to already have been migrated."
fi
2024-07-24 13:14:51 +00:00
2024-08-02 01:22:36 +00:00
if [ [ -d " $rdhome /downloaded_media " ] ] ; then
2024-08-03 07:53:04 +00:00
mv -f " $rdhome /downloaded_media " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /downloaded_media\" in \" $rdhome /ES-DE\" folder completed "
2024-08-02 01:22:36 +00:00
else
log i "ES-DE downloaded media appears to already have been migrated."
fi
2024-07-24 13:14:51 +00:00
2024-08-02 01:22:36 +00:00
if [ [ -d " $rdhome /gamelists " ] ] ; then
2024-08-03 07:53:04 +00:00
mv -f " $rdhome /gamelists " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /gamelists/\" in \" $rdhome /ES-DE\" folder completed "
2024-07-24 13:14:51 +00:00
else
2024-08-02 01:22:36 +00:00
log i "ES-DE gamelists appears to already have been migrated."
2024-06-22 12:40:22 +00:00
fi
2024-08-02 01:22:36 +00:00
if [ [ -d " $rdhome /collections " ] ] ; then
2024-08-03 07:53:04 +00:00
mv -f " $rdhome /collections " " $rdhome /ES-DE/ " && log d " Move of \" $rdhome /collections/\" in \" $rdhome /ES-DE\" folder completed "
2024-08-02 01:22:36 +00:00
else
log i "ES-DE collections appears to already have been migrated."
fi
2024-08-04 12:55:58 +00:00
# Setting the correct variables once again
set_setting_value " $es_settings " "MediaDirectory" " $media_folder " "es_settings"
set_setting_value " $es_settings " "UserThemeDirectory" " $themes_folder " "es_settings"
2024-07-24 13:14:51 +00:00
fi
2024-06-22 12:40:22 +00:00
2024-02-28 16:09:58 +00:00
# if [[ $(check_version_is_older_than "0.9.0b") == "true" ]]; then
2024-02-19 15:21:43 +00:00
# # Placeholder for version 0.9.0b
# rm /var/config/emulationstation/.emulationstation # remving the old symlink to .emulationstation as it might be not needed anymore
2024-03-18 20:51:58 +00:00
# TODO: change <mlc_path>RETRODECKHOMEDIR/bios/cemu</mlc_path> in emu-configs/cemu/settings.xml into <mlc_path>RETRODECKHOMEDIR/bios/cemu/mlc</mlc_path>
2024-03-18 21:15:58 +00:00
# if [ ! -d "$bios_folder/cemu/mlc" ]; then
2024-03-18 20:51:58 +00:00
# log i "Cemu MLC folder was moved from \"$bios_folder/cemu\" to \"$bios_folder/cemu/mlc\", migrating it"
# mv -f "$bios_folder/cemu" "$bios_folder/cemu/mlc"
# # TODO: set setting value mlc_path in settings.xml (check prepare script)
# fi
2024-03-18 21:15:58 +00:00
# if [ -f "/var/data/Cemu/keys.txt" ]; then
# log AND ZENITY "Found Cemu keys.txt" in "/var/data/Cemu/keys.txt", for a better compatibility is better to move it into "$bios_folder/cemu/mlc/keys.txt, do you want to continue?
# if yes: mv "/var/data/Cemu/keys.txt" "$bios_folder/cemu/mlc/keys.txt"
# ln -s "$bios_folder/cemu/mlc/keys.txt" "/var/data/Cemu/keys.txt" <--- AND THIS SHOULD BE EVEN PUT IN THE PREPARATION SCRIPT
2024-07-12 11:47:05 +00:00
# fi
# TODO: is this true?
# log i "Since in this version we restored Ryujinx to a main buikd we don't need the symlink anymore."
# rm "$(dirname $ryujinxconf)/PRConfig.json"
2024-02-19 15:21:43 +00:00
# fi
2023-02-25 16:02:05 +00:00
# The following commands are run every time.
2023-04-21 15:46:20 +00:00
if [ [ -d "/var/data/dolphin-emu/Load/DynamicInputTextures" ] ] ; then # Refresh installed textures if they have been enabled
2023-06-27 14:53:34 +00:00
rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/dolphin-emu/Load/DynamicInputTextures/"
2023-04-21 15:46:20 +00:00
fi
2023-05-01 19:32:22 +00:00
if [ [ -d "/var/data/primehack/Load/DynamicInputTextures" ] ] ; then # Refresh installed textures if they have been enabled
2023-06-27 14:53:34 +00:00
rsync -rlD --mkpath "/app/retrodeck/extras/DynamicInputTextures/" "/var/data/primehack/Load/DynamicInputTextures/"
2023-05-01 19:32:22 +00:00
fi
2023-04-21 15:46:20 +00:00
2024-02-27 20:57:33 +00:00
if [ [ ! -z $( find " $HOME /.steam/steam/controller_base/templates/ " -maxdepth 1 -type f -iname "RetroDECK*.vdf" ) || ! -z $( find " $HOME /.var/app/com.valvesoftware.Steam/.steam/steam/controller_base/templates/ " -maxdepth 1 -type f -iname "RetroDECK*.vdf" ) ] ] ; then # If RetroDECK controller profile has been previously installed
2023-10-10 14:23:58 +00:00
install_retrodeck_controller_profile
2023-06-22 13:12:43 +00:00
fi
2023-03-10 19:22:19 +00:00
update_splashscreens
2023-09-12 14:40:28 +00:00
deploy_helper_files
2023-05-16 14:21:23 +00:00
build_retrodeck_current_presets
2022-11-18 20:10:17 +00:00
) |
2024-06-28 20:07:35 +00:00
rd_zenity --icon-name= net.retrodeck.retrodeck --progress --no-cancel --pulsate --auto-close \
2022-11-18 20:10:17 +00:00
--window-icon= "/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
2024-05-07 07:58:31 +00:00
--title "RetroDECK - Upgrade Process" \
2024-05-06 12:20:53 +00:00
--width= 400 --height= 200 \
2024-05-07 07:58:31 +00:00
--text= " RetroDECK is finishing up the upgrading process, please be patient.\n\n<span foreground=' $purple ' size='larger'><b>NOTICE - If the process is taking too long:</b></span>\n\nSome windows might be running in the background that could require your attention: pop-ups from emulators or the upgrade itself that needs user input to continue.\n\n "
2023-05-12 21:04:20 +00:00
2024-08-05 10:42:36 +00:00
conf_read
2023-05-10 13:57:28 +00:00
version = $hard_version
conf_write
2023-05-12 14:51:14 +00:00
if grep -qF "cooker" <<< $hard_version ; then
changelog_dialog " $( echo $version | cut -d'-' -f2) "
else
changelog_dialog " $version "
fi
2023-04-17 17:45:53 +00:00
}