From 568dff40b6dd015d4d52ae51cbb2df785d3d14c9 Mon Sep 17 00:00:00 2001 From: darkvater Date: Tue, 25 Jan 2005 15:43:27 +0000 Subject: [PATCH] (svn r1668) -Fixed windows installer (autorail.grf) and a changelog typo --- changelog.txt | 1 - os/win32/installer/install.nsi | 11 +++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index aadb51f6ec..32b6023ef2 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 399bfccbe9..98cfa02731 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"