summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-04-06 18:35:49 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-04-06 18:35:49 +0200
commit63bac4db7713d61f386c87ad5272b80ff63a08d2 (patch)
tree3e05a07f6fb2b79979f685fbc371d0cce6521aab
parentb8a204b807a2dde69e3672ed2c71ab2785df2493 (diff)
downloadbranding-1.0.tar.gz
branding-1.0.tar.bz2
branding-1.0.tar.xz
branding-1.0.zip
Updated the optional music download link to the latest version.branding-1.0
Also made the downloaded temp filename more generic for maintenance purpose.
-rw-r--r--packaging/windows/setup-tmw.nsi6
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/windows/setup-tmw.nsi b/packaging/windows/setup-tmw.nsi
index cdabd60..5b5319f 100644
--- a/packaging/windows/setup-tmw.nsi
+++ b/packaging/windows/setup-tmw.nsi
@@ -312,11 +312,11 @@ Section /o "Music" SecMusic
AddSize 17602
CreateDirectory "$INSTDIR\data\music"
SetOutPath "$INSTDIR\data\music"
- NSISdl::download "http://downloads.sourceforge.net/themanaworld/tmwmusic-0.2.tar.gz" "$TEMP\tmwmusic-0.2.tar.gz"
+ NSISdl::download "http://downloads.sourceforge.net/themanaworld/tmwmusic-0.3.tar.gz" "$TEMP\music-data.tar.gz"
; !! Requires an additional plugin from http://nsis.sourceforge.net/UnTGZ_plug-in Place untgz.dll in your nsis/plugin dir
- untgz::extract -j -d "$INSTDIR\data\music" "$TEMP\tmwmusic-0.2.tar.gz"
- Delete "$TEMP\tmwmusic-0.2.tar.gz"
+ untgz::extract -j -d "$INSTDIR\data\music" "$TEMP\music-data.tar.gz"
+ Delete "$TEMP\music-data.tar.gz"
SectionEnd