From bc9387258e793182b65e87e811b26af9c775d31b Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sat, 27 Aug 2016 11:01:15 +0200 Subject: [PATCH] bump version and export MEGADL var --- ChangeLog | 4 ++++ scripts/common/common.sh | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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}" }