diff --git a/ChangeLog b/ChangeLog index 9a4ec94..e66dd7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ v7.3.0 (---): ::internal changes: - modularize common.sh +- supply megadl (32 and 64 bit) ::downloader changes: - changed download links to Mediafire so that they can automatically be @@ -10,6 +11,9 @@ v7.3.0 (---): - changed download links to Sendspace so that they can automatically be downloaded using wget, this makes Challenging Super Mario Bros. Wii: Virtual Special auto-downloadable +- include megadl a tool that can download files from Mega using commandline, + this makes Pokemon Delta Emerald, Pokemon Rutile Ruby, Pokemon Star Sapphire + and Bravely Second Uncensored auto-downloadable ::misc. changes: - update Cliff Super Mario Bros. to version 1.0.5 diff --git a/scripts/common/common.sh b/scripts/common/common.sh index 3f93630..0333d66 100644 --- a/scripts/common/common.sh +++ b/scripts/common/common.sh @@ -1,7 +1,7 @@ #!/bin/bash -PATCHIMAGE_VERSION=7.3.0-devel -PATCHIMAGE_RELEASE=2016/08/24+ +PATCHIMAGE_VERSION=7.3.0 +PATCHIMAGE_RELEASE=2016/08/27 [[ -e ${HOME}/.patchimage.rc ]] && source "${HOME}"/.patchimage.rc @@ -21,6 +21,7 @@ setup_tools () { export GDOWN="${PATCHIMAGE_TOOLS_DIR}"/gdown.pl export CTRTOOL="${PATCHIMAGE_TOOLS_DIR}"/ctrtool."${SUFFIX}" export FDSTOOL="${PATCHIMAGE_TOOLS_DIR}"/3dstool."${SUFFIX}" + export MEGADL="${PATCHIMAGE_TOOLS_DIR}"/megadl."${SUFFIX}" }