diff --git a/sc2/build/win32_install/README b/sc2/build/win32_install/README index 9b7bee456..0a2709ce3 100644 --- a/sc2/build/win32_install/README +++ b/sc2/build/win32_install/README @@ -7,10 +7,10 @@ will probably work better anyway) The following additional tools are required: NSIS 2.0b1 or newer: nsis.sourceforge.net -NSIS 'ZipDLL' http://nsis.sourceforge.net/archive/download.php?file=ZipDLL.zip -NSIS 'unTGZ' http://nsis.sourceforge.net/archive/viewpage.php?pageid=84 +NSIS 'ZipDLL' http://nsis.sourceforge.net/archive/nsisweb.php?page=33 Optionally: +NSIS 'unTGZ' http://nsis.sourceforge.net/archive/viewpage.php?pageid=84 upx 1.90 or newer: http://upx.sourceforge.net/#unstable resource hacker: http://www.users.on.net/johnson/resourcehacker/ diff --git a/sc2/build/win32_install/uqm.nsi b/sc2/build/win32_install/uqm.nsi index b286f4edd..11fcb3998 100644 --- a/sc2/build/win32_install/uqm.nsi +++ b/sc2/build/win32_install/uqm.nsi @@ -183,6 +183,7 @@ SectionIn 1 2 RO File "..\..\doc\users\manual.txt" File /oname=COPYING.txt "..\..\COPYING" File /oname=AUTHORS.txt "..\..\AUTHORS" + File /oname=README.txt "..\..\README" ; Write the installation path into the registry WriteRegStr HKCU "Software\${MUI_PRODUCT}" "Install_Dir" "$INSTDIR" WriteRegStr HKLM "Software\${MUI_PRODUCT}" "Install_Dir" "$INSTDIR" @@ -452,6 +453,7 @@ SectionIn 1 2 CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\WhatsNew.lnk" "$INSTDIR\WhatsNew.txt" CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\COPYING.lnk" "$INSTDIR\COPYING.txt" CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\AUTHORS.lnk" "$INSTDIR\AUTHORS.txt" + CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\README.lnk" "$INSTDIR\README.txt" SectionEnd @@ -641,6 +643,7 @@ Section "Uninstall" Delete "$INSTDIR\manual.txt" Delete "$INSTDIR\COPYING.txt" Delete "$INSTDIR\AUTHORS.txt" + Delete "$INSTDIR\README.txt" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\zlib.dll" Delete "$INSTDIR\libpng1.dll"