diff options
author | darkvater <darkvater@openttd.org> | 2005-01-24 23:44:24 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-24 23:44:24 +0000 |
commit | 212ecff33b0b8409256baf2d9a9fe0fd43c385c3 (patch) | |
tree | 9ad2314f8109421bf51a6d9e75bd9241f488ed7c /os/win32/installer | |
parent | ae7bdefc336b12c4ee1579acef6cf98d5d959cad (diff) | |
download | openttd-212ecff33b0b8409256baf2d9a9fe0fd43c385c3.tar.xz |
(svn r1658) -Update readme and windows installer for 0.3.6
-Fix up VS6 and add new default icon for OpenTTD
Diffstat (limited to 'os/win32/installer')
-rw-r--r-- | os/win32/installer/install.nsi | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index 01ef28507..399bfccbe 100644 --- a/os/win32/installer/install.nsi +++ b/os/win32/installer/install.nsi @@ -1,8 +1,8 @@ ; Define your application name !define APPNAME "OpenTTD" -!define APPNAMEANDVERSION "OpenTTD 0.3.5.0" -!define APPVERSION "0.3.5.0" -!define INSTALLERVERSION 13 ;NEED TO UPDATE THIS FOR EVERY RELEASE!!! +!define APPNAMEANDVERSION "OpenTTD 0.3.6.0" +!define APPVERSION "0.3.6.0" +!define INSTALLERVERSION 14 ;NEED TO UPDATE THIS FOR EVERY RELEASE!!! BrandingText "OpenTTD Installer" @@ -102,6 +102,9 @@ Section "!OpenTTD" Section1 File ${PATH_ROOT}data\opntitle.dat File ${PATH_ROOT}data\signalsw.grf File ${PATH_ROOT}data\trkfoundw.grf + ; Copy scenario files + SetOutPath "$INSTDIR\scenario\" + File ${PATH_ROOT}scenario\*.scn ; Copy the rest of the stuff SetOutPath "$INSTDIR\" @@ -114,7 +117,7 @@ Section "!OpenTTD" Section1 ; Copy executable File /oname=OpenTTD.exe ${PATH_ROOT}Release\openttd.exe - File ${PATH_ROOT}strgen\Release\strgen.exe + File ${PATH_ROOT}strgen\Debug\strgen.exe ; Delete old files from the main dir. they are now placed in data/ and lang/ |