summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2005-01-25 15:43:27 +0000
committerdarkvater <darkvater@openttd.org>2005-01-25 15:43:27 +0000
commit568dff40b6dd015d4d52ae51cbb2df785d3d14c9 (patch)
tree9954e0879f9cd46f724f67c6492464dfd1da17be
parentd439221c62fb6dc95192c68659fd68e4a85f60a2 (diff)
downloadopenttd-568dff40b6dd015d4d52ae51cbb2df785d3d14c9.tar.xz
(svn r1668) -Fixed windows installer (autorail.grf) and a changelog typo
-rw-r--r--changelog.txt1
-rw-r--r--os/win32/installer/install.nsi11
2 files changed, 5 insertions, 7 deletions
diff --git a/changelog.txt b/changelog.txt
index aadb51f6e..32b6023ef 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -128,7 +128,6 @@
- Fix: When deleting an order, the next pointer was not cleared, resulting in some unusual behavoir from time to time
- Fix: You can now also delete automatically found servers by pressing "del"
- Fix: You should no longer be able to delete bridges on any type of underground when there is a vehicle on it
-- Fix: your loan is now substracted from your company value
- Add: A brand new set of icons.
- Change: AutoRenew is now a client-side patch instead of a game-side patch
- Change: Removed the 'close ALL windows' from the toolbar since shift+del does this.
diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi
index 399bfccbe..98cfa0273 100644
--- a/os/win32/installer/install.nsi
+++ b/os/win32/installer/install.nsi
@@ -66,7 +66,7 @@ Page custom SelectCD SelectCD2 ": TTD folder"
!define MUI_FINISHPAGE_RUN "$INSTDIR\openttd.exe"
!define MUI_FINISHPAGE_LINK "Visit OpenTTD's homepage"
-!define MUI_FINISHPAGE_LINK_LOCATION "http://www.openttd.com/"
+!define MUI_FINISHPAGE_LINK_LOCATION "http://www.openttd.org/"
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\readme.txt"
@@ -97,11 +97,8 @@ Section "!OpenTTD" Section1
; Copy data files
SetOutPath "$INSTDIR\data\"
- File ${PATH_ROOT}data\canalsw.grf
- File ${PATH_ROOT}data\openttd.grf
- File ${PATH_ROOT}data\opntitle.dat
- File ${PATH_ROOT}data\signalsw.grf
- File ${PATH_ROOT}data\trkfoundw.grf
+ File ${PATH_ROOT}data\*.grf
+ File ${PATH_ROOT}data\opntitle.dat
; Copy scenario files
SetOutPath "$INSTDIR\scenario\"
File ${PATH_ROOT}scenario\*.scn
@@ -223,6 +220,7 @@ Section Uninstall
Delete "$INSTDIR\INSTALL.LOG"
Delete "$INSTDIR\crash.log"
Delete "$INSTDIR\openttd.cfg"
+ Delete "$INSTDIR\hs.dat"
Delete "$INSTDIR\save\autosave\network*.tmp" ; temporary network file
; Data files
@@ -231,6 +229,7 @@ Section Uninstall
Delete "$INSTDIR\data\openttd.grf"
Delete "$INSTDIR\data\canalsw.grf"
Delete "$INSTDIR\data\trkfoundw.grf"
+ Delete "$INSTDIR\data\autorail.grf"
Delete "$INSTDIR\data\trg1r.grf"
Delete "$INSTDIR\data\trghr.grf"
Delete "$INSTDIR\data\trgtr.grf"