summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2007-02-27 22:11:12 +0000
committerDarkvater <Darkvater@openttd.org>2007-02-27 22:11:12 +0000
commit1168c5beb3c92d814eee4242dd9eba76857c32d4 (patch)
tree78c1b96d06931c83b9686fa43b625f73464e3a4f /os
parentff9a02c1c89db3bd400f8eaa45ae3f2c25f018b6 (diff)
downloadopenttd-1168c5beb3c92d814eee4242dd9eba76857c32d4.tar.xz
(svn r8929) -Codechange: [win32] Give the installer a slightly more verbose link at the final screen and also copy any heightmaps to the desination directory.
Diffstat (limited to 'os')
-rw-r--r--os/win32/installer/install.nsi8
1 files changed, 7 insertions, 1 deletions
diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi
index 40bf4f44d..47c111265 100644
--- a/os/win32/installer/install.nsi
+++ b/os/win32/installer/install.nsi
@@ -76,7 +76,7 @@ Page custom SelectCDEnter SelectCDExit ": TTD folder"
Page custom ShowWarningsPage
!define MUI_FINISHPAGE_RUN "$INSTDIR\openttd.exe"
-!define MUI_FINISHPAGE_LINK "Visit OpenTTD's homepage"
+!define MUI_FINISHPAGE_LINK "Visit the OpenTTD site for latest news, FAQs and downloads"
!define MUI_FINISHPAGE_LINK_LOCATION "${APPURLLINK}"
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\readme.txt"
@@ -114,6 +114,10 @@ Section "!OpenTTD" Section1
SetOutPath "$INSTDIR\scenario\"
File /nonfatal ${PATH_ROOT}bin\scenario\*.scn
+ ; Copy heightmap files (don't choke if they don't exist)
+ SetOutPath "$INSTDIR\scenario\heightmap\"
+ File /nonfatal ${PATH_ROOT}bin\scenario\heightmap\*.*
+
; Copy the rest of the stuff
SetOutPath "$INSTDIR\"
@@ -214,6 +218,8 @@ Section "Uninstall"
If you choose Yes, your scenarios will be deleted." \
IDYES RemoveScen IDNO NoRemoveScen
RemoveScen:
+ Delete "$INSTDIR\scenario\heightmap*"
+ RMDir "$INSTDIR\scenario\heightmap"
Delete "$INSTDIR\scenario\*"
RMDir "$INSTDIR\scenario"
NoRemoveScen: