mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
Merge pull request #771 from icenine451/cooker-0.8.1b-icenine451
Cooker 0.8.1b icenine451
This commit is contained in:
commit
0b8976a69d
|
@ -138,7 +138,6 @@ fi
|
||||||
|
|
||||||
# If there is no config file I initalize the file with the the default values
|
# If there is no config file I initalize the file with the the default values
|
||||||
if [[ ! -f "$rd_conf" ]]; then
|
if [[ ! -f "$rd_conf" ]]; then
|
||||||
create_dir /var/config/retrodeck/logs
|
|
||||||
log w "RetroDECK config file not found in $rd_conf"
|
log w "RetroDECK config file not found in $rd_conf"
|
||||||
log i "Initializing"
|
log i "Initializing"
|
||||||
# if we are here means that the we are in a new installation, so the version is valorized with the hardcoded one
|
# if we are here means that the we are in a new installation, so the version is valorized with the hardcoded one
|
||||||
|
|
|
@ -301,11 +301,20 @@ post_update() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $(check_version_is_older_than "0.8.1b") == "true" ]]; then
|
if [[ $(check_version_is_older_than "0.8.1b") == "true" ]]; then
|
||||||
|
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"
|
||||||
log d "ES-DE files were moved inside the retrodeck folder, migrating to the new structure"
|
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/collections" "/var/config/ES-DE/collections"
|
||||||
dir_prep "$rdhome/ES-DE/gamelists" "/var/config/ES-DE/gamelists"
|
dir_prep "$rdhome/ES-DE/gamelists" "/var/config/ES-DE/gamelists"
|
||||||
mv -f "$rdhome/gamelists/"* "$rdhome/ES-DE/gamelists"
|
mv -f "$rdhome/gamelists/"* "$rdhome/ES-DE/gamelists"
|
||||||
rm -rf "$rdhome/gamelists"
|
rm -rf "$rdhome/gamelists"
|
||||||
|
|
||||||
|
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
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# if [[ $(check_version_is_older_than "0.9.0b") == "true" ]]; then
|
# if [[ $(check_version_is_older_than "0.9.0b") == "true" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue