bump version and export MEGADL var

This commit is contained in:
Christopher Roy Bratusek 2016-08-27 11:01:15 +02:00
parent e1e117d432
commit bc9387258e
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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}"
}