Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions melonds/component_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@
# These actions happen conditionally based on the version being upgraded
#########################################################################

if [[ $(check_version_is_older_than "$version_being_updated" "0.10.1b") == "true" ]]; then

log i "0.10.1b Upgrade - Fix Bios Path: MelonDS"

set_setting_value "$melonds_config" "BIOS9Path" "$bios_path/bios9.bin" "DS" "melonds"
set_setting_value "$melonds_config" "BIOS7Path" "$bios_path/bios7.bin" "DS" "melonds"
set_setting_value "$melonds_config" "FirmwarePath" "$bios_path/firmware.bin" "DS" "melonds"

fi
3 changes: 0 additions & 3 deletions ryubing/component_prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ if [[ "$action" == "reset" ]]; then # Run reset-only commands
log i "Resetting $component_name"
log i "------------------------"

# removing config directory to wipe legacy files
log d "Removing \"$XDG_CONFIG_HOME/Ryujinx\""
rm -rf "$XDG_CONFIG_HOME/Ryujinx"
create_dir "$XDG_CONFIG_HOME/Ryujinx/system"
create_dir "$ryubing_profiles_path"
cp -fv "$component_config/Config.json" "$ryubing_config"
Expand Down