From 7c2116c7cb4c65eaa61c070bcf95036f661ec859 Mon Sep 17 00:00:00 2001 From: canni0 Date: Wed, 8 Oct 2008 14:50:30 +0000 Subject: - Install Routine completed - Support update installation (no covers.ini change) git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1438 b956fd51-792f-4845-bead-9b4dfca2ff2c --- installer/settings/files_main_install.nsh | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'installer/settings/files_main_install.nsh') diff --git a/installer/settings/files_main_install.nsh b/installer/settings/files_main_install.nsh index f6f4a1c8..1ff099d4 100644 --- a/installer/settings/files_main_install.nsh +++ b/installer/settings/files_main_install.nsh @@ -2,3 +2,53 @@ ; UltraStar Deluxe Installer - Version 1.1: Main components ; ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ +; Create Directories: + +CreateDirectory $INSTDIR\plugins +CreateDirectory $INSTDIR\songs +CreateDirectory $INSTDIR\screenshots +CreateDirectory $INSTDIR\playlists + +SetOutPath "$INSTDIR" + +; themes, languages, sounds, visuals dir + +File /r ..\game\themes +File /r ..\game\languages +File /r ..\game\sounds +File /r ..\installerdependencies\visuals + +; Root dir: + +File ..\game\themes\dll\*.dll + +File ..\ChangeLog.txt +File ..\ChangeLog.german.txt +File ..\README.txt +File ..\installerdependencies\documents\documentation.pdf + +File "..\ScoreConverter.exe" +File "..\${exe}.exe" + +; Covers dir: + +IfFileExists $INSTDIR\covers\covers.ini +2 0 +File ..\game\covers\Covers.ini +File ..\game\covers\NoCover.jpg + +; Plugins dir: + +SetOutPath "$INSTDIR\Plugins\" + File "..\Plugins\Blind.dll" + File "..\Plugins\Duell.dll" + File "..\Plugins\Hold_The_Line.dll" + File "..\Plugins\TeamDuell.dll" + File "..\Plugins\Until5000.dll" + +${If} ${AtLeastWinVista} + + SetOutPath "$WINDIR" + File "..\installerdependencies\plugins\gdf.dll" + +${EndIf} + -- cgit v1.2.3