874 lines
30 KiB
Plaintext
874 lines
30 KiB
Plaintext
; This file is part of Warzone 2100.
|
|
; Copyright (C) 2006-2010 Warzone 2100 Project
|
|
; Copyright (C) 2006 Dennis Schridde
|
|
;
|
|
; Warzone 2100 is free software; you can redistribute it and/or modify
|
|
; it under the terms of the GNU General Public License as published by
|
|
; the Free Software Foundation; either version 2 of the License, or
|
|
; (at your option) any later version.
|
|
;
|
|
; Warzone 2100 is distributed in the hope that it will be useful,
|
|
; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
; GNU General Public License for more details.
|
|
;
|
|
; You should have received a copy of the GNU General Public License
|
|
; along with Warzone 2100; if not, write to the Free Software
|
|
; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
;
|
|
; NSIS Modern User Interface
|
|
; Warzone 2100 Project Installer script
|
|
;
|
|
|
|
;--------------------------------
|
|
;Include section
|
|
|
|
!include "MUI.nsh"
|
|
!include "FileFunc.nsh"
|
|
!include "LogicLib.nsh"
|
|
|
|
;--------------------------------
|
|
;General
|
|
CRCCheck on ;make sure this isn't corrupted
|
|
SetCompressor /SOLID lzma
|
|
|
|
;Name and file
|
|
Name "${PACKAGE_NAME}"
|
|
OutFile "${OUTFILE}"
|
|
|
|
;Default installation folder
|
|
InstallDir "$PROGRAMFILES\${PACKAGE_NAME} Trunk"
|
|
|
|
;Get installation folder from registry if available
|
|
InstallDirRegKey HKLM "Software\${PACKAGE_NAME} Trunk" ""
|
|
|
|
;Request application privileges for Windows Vista
|
|
RequestExecutionLevel admin
|
|
|
|
;--------------------------------
|
|
;Versioninfo
|
|
|
|
VIProductVersion "${VERSIONNUM}"
|
|
VIAddVersionKey "CompanyName" "Warzone 2100 Project"
|
|
VIAddVersionKey "FileDescription" "${PACKAGE_NAME} Installer"
|
|
VIAddVersionKey "FileVersion" "${PACKAGE_VERSION}"
|
|
VIAddVersionKey "InternalName" "${PACKAGE_NAME}"
|
|
VIAddVersionKey "LegalCopyright" "Copyright © 2006-2010 Warzone 2100 Project"
|
|
VIAddVersionKey "OriginalFilename" "${PACKAGE}-${PACKAGE_VERSION}.exe"
|
|
VIAddVersionKey "ProductName" "${PACKAGE_NAME}"
|
|
VIAddVersionKey "ProductVersion" "${PACKAGE_VERSION}"
|
|
|
|
;--------------------------------
|
|
;Variables
|
|
|
|
Var MUI_TEMP
|
|
Var STARTMENU_FOLDER
|
|
|
|
;--------------------------------
|
|
;Interface Settings
|
|
|
|
!define MUI_HEADERIMAGE
|
|
!define MUI_HEADERIMAGE_BITMAP "${TOP_SRCDIR}\icons\wz2100header.bmp"
|
|
!define MUI_HEADERIMAGE_RIGHT
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "${TOP_SRCDIR}\icons\wz2100welcome.bmp"
|
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${TOP_SRCDIR}\icons\wz2100welcome.bmp"
|
|
|
|
!define MUI_ICON "${TOP_SRCDIR}\icons\warzone2100.ico"
|
|
!define MUI_UNICON "${TOP_SRCDIR}\icons\warzone2100.uninstall.ico"
|
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
;Start Menu Folder Page Configuration (for MUI_PAGE_STARTMENU)
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKLM"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\${PACKAGE_NAME}"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
|
|
|
; These indented statements modify settings for MUI_PAGE_FINISH
|
|
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
|
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
|
|
|
|
;--------------------------------
|
|
;Pages
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_STARTMENU "Application" $STARTMENU_FOLDER
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_UNPAGE_WELCOME
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
!insertmacro MUI_UNPAGE_FINISH
|
|
|
|
;--------------------------------
|
|
;Languages
|
|
|
|
!insertmacro MUI_LANGUAGE "English" # first language is the default language
|
|
!insertmacro MUI_LANGUAGE "Dutch"
|
|
!insertmacro MUI_LANGUAGE "German"
|
|
!insertmacro MUI_LANGUAGE "Russian"
|
|
|
|
;--------------------------------
|
|
;Reserve Files
|
|
|
|
;These files should be inserted before other files in the data block
|
|
;Keep these lines before any File command
|
|
;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)
|
|
|
|
!insertmacro MUI_RESERVEFILE_LANGDLL
|
|
|
|
;--------------------------------
|
|
;Installer Sections
|
|
|
|
Section $(TEXT_SecBase) SecBase
|
|
|
|
SectionIn RO
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
SetShellVarContext all
|
|
|
|
; Clean-up section for no-longer supported stuff
|
|
Delete "$INSTDIR\mods\multiplay\original.wz"
|
|
Delete "$INSTDIR\mods\multiplay\aivolution.wz"
|
|
Delete "$SMPROGRAMS\$STARTMENU_FOLDER\${PACKAGE_NAME} - Aivolution.lnk"
|
|
Delete "$SMPROGRAMS\$STARTMENU_FOLDER\${PACKAGE_NAME} - Original.lnk"
|
|
|
|
;ADD YOUR OWN FILES HERE...
|
|
|
|
; Main executable
|
|
File "${TOP_BUILDDIR}\src\${PACKAGE}.exe"
|
|
|
|
; Windows dbghelp library
|
|
File "${EXTDIR}\bin\dbghelp.dll.license.txt"
|
|
File "${EXTDIR}\bin\dbghelp.dll"
|
|
|
|
; Data files
|
|
File "${TOP_BUILDDIR}\data\mp.wz"
|
|
File "${TOP_BUILDDIR}\data\base.wz"
|
|
|
|
; Information/documentation files (convert eols for text files)
|
|
File "${TOP_SRCDIR}\ChangeLog"
|
|
Push "ChangeLog"
|
|
Push "ChangeLog.txt"
|
|
Call unix2dos
|
|
|
|
File "${TOP_SRCDIR}\AUTHORS"
|
|
Push "AUTHORS"
|
|
Push "Authors.txt"
|
|
Call unix2dos
|
|
|
|
File "${TOP_SRCDIR}\COPYING"
|
|
Push "COPYING"
|
|
Push "License.txt"
|
|
Call unix2dos
|
|
|
|
File "${TOP_SRCDIR}\doc\Readme.en"
|
|
Push "Readme.en"
|
|
Push "Readme.en.txt"
|
|
Call unix2dos
|
|
|
|
File "${TOP_SRCDIR}\doc\Readme.de"
|
|
Push "Readme.de"
|
|
Push "Readme.de.txt"
|
|
Call unix2dos
|
|
|
|
File "/oname=Readme.en.html" "${TOP_SRCDIR}\doc\Readme.en.xhtml"
|
|
File "/oname=Readme.de.html" "${TOP_SRCDIR}\doc\Readme.de.xhtml"
|
|
|
|
; Create mod directories
|
|
CreateDirectory "$INSTDIR\mods\campaign"
|
|
CreateDirectory "$INSTDIR\mods\music"
|
|
CreateDirectory "$INSTDIR\mods\global"
|
|
CreateDirectory "$INSTDIR\mods\multiplay"
|
|
|
|
; Music files
|
|
SetOutPath "$INSTDIR\music"
|
|
File "${TOP_SRCDIR}\data\music\menu.ogg"
|
|
File "${TOP_SRCDIR}\data\music\track1.ogg"
|
|
File "${TOP_SRCDIR}\data\music\track2.ogg"
|
|
File "${TOP_SRCDIR}\data\music\track3.ogg"
|
|
File "${TOP_SRCDIR}\data\music\music.wpl"
|
|
|
|
SetOutPath "$INSTDIR\styles"
|
|
|
|
File "/oname=readme.print.css" "${TOP_SRCDIR}\doc\styles\readme.print.css"
|
|
File "/oname=readme.screen.css" "${TOP_SRCDIR}\doc\styles\readme.screen.css"
|
|
|
|
SetOutPath "$INSTDIR\fonts"
|
|
File "/oname=fonts.conf" "${EXTDIR}\etc\fonts\fonts.conf.wd_disable"
|
|
File "${EXTDIR}\etc\fonts\DejaVuSans.ttf"
|
|
File "${EXTDIR}\etc\fonts\DejaVuSans-Bold.ttf"
|
|
|
|
;Store installation folder
|
|
WriteRegStr HKLM "Software\${PACKAGE_NAME}" "" $INSTDIR
|
|
|
|
; Write the Windows-uninstall keys
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "DisplayName" "${PACKAGE_NAME}"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "DisplayVersion" "${PACKAGE_VERSION}"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "DisplayIcon" "$INSTDIR\${PACKAGE}.exe,0"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "Publisher" "Warzone 2100 Project"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "URLInfoAbout" "${PACKAGE_BUGREPORT}"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "InstallLocation" "$INSTDIR"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "UninstallString" "$INSTDIR\uninstall.exe"
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "NoModify" 1
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}" "NoRepair" 1
|
|
|
|
;Create uninstaller
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
SetOutPath "$INSTDIR"
|
|
;Create shortcuts
|
|
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\uninstall.exe"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\${PACKAGE_NAME}.lnk" "$INSTDIR\${PACKAGE}.exe"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
SetOutPath "$INSTDIR"
|
|
CreateShortCut "$DESKTOP\${PACKAGE_NAME}.lnk" "$INSTDIR\${PACKAGE}.exe"
|
|
SectionEnd
|
|
|
|
|
|
; Installs OpenAL runtime libraries, using Creative's installer
|
|
Section $(TEXT_SecOpenAL) SecOpenAL
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
File "${EXTDIR}\bin\oalinst.exe"
|
|
|
|
ExecWait '"$INSTDIR\oalinst.exe" --silent'
|
|
|
|
SectionEnd
|
|
|
|
SectionGroup /e $(TEXT_SecMods) secMods
|
|
|
|
Section $(TEXT_SecDyDoAIMod) SecDyDoAIMod
|
|
|
|
SetOutPath "$INSTDIR\mods\multiplay"
|
|
|
|
File "${TOP_BUILDDIR}\data\mods\multiplay\dydo-ai.wz"
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN "Application"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\${PACKAGE_NAME} - DyDo-AI.lnk" "$INSTDIR\${PACKAGE}.exe" "--mod_mp=dydo-ai.wz"
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
SectionEnd
|
|
|
|
Section $(TEXT_SecOriginalMod) SecOriginalMod
|
|
|
|
SetOutPath "$INSTDIR\mods\multiplay"
|
|
File "${TOP_BUILDDIR}\data\mods\multiplay\old-1.10-balance.wz"
|
|
SetOutPath "$INSTDIR"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN "Application"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\${PACKAGE_NAME} - Old 1.10 Balance.lnk" "$INSTDIR\${PACKAGE}.exe" "--mod_mp=old-1.10-balance.wz"
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
SectionEnd
|
|
|
|
SectionGroupEnd
|
|
|
|
SectionGroup $(TEXT_SecFMVs) SecFMVs
|
|
|
|
Section /o $(TEXT_SecFMVs_Eng) SecFMVs_Eng
|
|
|
|
IfFileExists "sequences.wz" +5
|
|
NSISdl::download "http://www.il.fontys.nl/~giel/warzone/videos/warzone2100-sequences-en-hi-2.2-1.wz" "sequences.wz"
|
|
Pop $R0 ; Get the return value
|
|
StrCmp $R0 "success" +2
|
|
MessageBox MB_OK|MB_ICONSTOP "Download of videos failed: $R0"
|
|
|
|
SectionEnd
|
|
|
|
Section /o $(TEXT_SecFMVs_EngLo) SecFMVs_EngLo
|
|
|
|
IfFileExists "sequences.wz" +5
|
|
NSISdl::download "http://www.il.fontys.nl/~giel/warzone/videos/warzone2100-sequences-en-lo-2.2-1.wz" "sequences.wz"
|
|
Pop $R0 ; Get the return value
|
|
StrCmp $R0 "success" +2
|
|
MessageBox MB_OK|MB_ICONSTOP "Download of videos failed: $R0"
|
|
|
|
SectionEnd
|
|
|
|
;Section /o $(TEXT_SecFMVs_Ger) SecFMVs_Ger
|
|
;
|
|
; IfFileExists "sequences.wz" +5
|
|
; NSISdl::download "http://download.gna.org/warzone/videos/2.2/warzone2100-sequences-ger-hi-2.2.wz" "sequences.wz"
|
|
; Pop $R0 ; Get the return value
|
|
; StrCmp $R0 "success" +2
|
|
; MessageBox MB_OK|MB_ICONSTOP "Download of videos failed: $R0"
|
|
;
|
|
;SectionEnd
|
|
|
|
SectionGroupEnd
|
|
|
|
SectionGroup $(TEXT_SecNLS) SecNLS
|
|
|
|
Section "-NLS files" SecNLS_files
|
|
SetOutPath "$INSTDIR\locale\cs\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\cs.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\da\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\da.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\de\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\de.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\en_GB\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\en_GB.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\es\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\es.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\et\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\et_EE.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\fi\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\fi.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\fr\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\fr.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\fy\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\fy.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\ga\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\ga.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\hr\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\hr.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\it\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\it.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\ko\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\ko.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\la\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\la.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\lt\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\lt.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\nb\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\nb.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\nl\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\nl.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\pl\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\pl.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\pt_BR\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\pt_BR.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\pt\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\pt.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\ro\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\ro.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\ru\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\ru.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\sk\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\sk.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\sl\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\sl.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\tr\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\tr.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\uk\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\uk_UA.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\zh_TW\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\zh_TW.gmo"
|
|
|
|
SetOutPath "$INSTDIR\locale\zh_CN\LC_MESSAGES"
|
|
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\zh_CN.gmo"
|
|
|
|
SectionEnd
|
|
|
|
;Replace fonts.conf with Windows 'fonts' enabled one
|
|
Section /o $(TEXT_SecNLS_WinFonts) SecNLS_WinFonts
|
|
SetOutPath "$INSTDIR\fonts"
|
|
Delete "$INSTDIR\fonts\fonts.conf"
|
|
File "/oname=fonts.conf" "${EXTDIR}\etc\fonts\fonts.conf.wd_enable"
|
|
SectionEnd
|
|
|
|
SectionGroupEnd
|
|
|
|
;--------------------------------
|
|
;Installer Functions
|
|
|
|
Function .onInit
|
|
!insertmacro MUI_LANGDLL_DISPLAY
|
|
|
|
# increase required size of section 'SecFMVs_Eng' by file size
|
|
SectionGetSize ${SecFMVs_Eng} $0
|
|
IntOp $0 $0 + 571937;134
|
|
SectionSetSize ${SecFMVs_Eng} $0
|
|
|
|
# increase required size of section 'SecFMVs_EngLo' by file size
|
|
SectionGetSize ${SecFMVs_EngLo} $0
|
|
IntOp $0 $0 + 165681;436
|
|
SectionSetSize ${SecFMVs_EngLo} $0
|
|
|
|
# increase required size of section 'SecFMVs_Ger' by file size
|
|
; SectionGetSize ${SecFMVs_Ger} $0
|
|
; IntOp $0 $0 + 499187;492
|
|
; SectionSetSize ${SecFMVs_Ger} $0
|
|
|
|
;HACK: Set section 'Video' as read-only
|
|
SectionGetFlags ${SecFMVs} $0
|
|
IntOp $0 $0 ^ ${SF_SELECTED}
|
|
IntOp $0 $0 | ${SF_RO}
|
|
SectionSetFlags ${SecFMVs} $0
|
|
|
|
;FIXME: Select default video sub-component
|
|
StrCpy $5 ${SecFMVs_Eng}
|
|
FunctionEnd
|
|
|
|
Function .onSelChange
|
|
${If} ${SectionIsSelected} ${SecFMVs_Eng}
|
|
${OrIf} ${SectionIsSelected} ${SecFMVs_EngLo}
|
|
;${OrIf} ${SectionIsSelected} ${SecFMVs_Ger}
|
|
!insertmacro StartRadioButtons $5
|
|
!insertmacro RadioButton ${SecFMVs_Eng}
|
|
!insertmacro RadioButton ${SecFMVs_EngLo}
|
|
; !insertmacro RadioButton ${SecFMVs_Ger}
|
|
!insertmacro EndRadioButtons
|
|
${EndIf}
|
|
FunctionEnd
|
|
|
|
Function unix2dos
|
|
; strips all CRs and then converts all LFs into CRLFs
|
|
; (this is roughly equivalent to "cat file | dos2unix | unix2dos")
|
|
; beware that this function destroys $0 $1 $2
|
|
;
|
|
; usage:
|
|
; Push "infile"
|
|
; Push "outfile"
|
|
; Call unix2dos
|
|
ClearErrors
|
|
Pop $2
|
|
FileOpen $1 $2 w ;$1 = file output (opened for writing)
|
|
Pop $2
|
|
FileOpen $0 $2 r ;$0 = file input (opened for reading)
|
|
Push $2 ;save name for deleting
|
|
IfErrors unix2dos_done
|
|
|
|
unix2dos_loop:
|
|
FileReadByte $0 $2 ; read a byte (stored in $2)
|
|
IfErrors unix2dos_done ; EOL
|
|
StrCmp $2 13 unix2dos_loop ; skip CR
|
|
StrCmp $2 10 unix2dos_cr unix2dos_write ; if LF write an extra CR
|
|
|
|
unix2dos_cr:
|
|
FileWriteByte $1 13
|
|
|
|
unix2dos_write:
|
|
FileWriteByte $1 $2 ; write byte
|
|
Goto unix2dos_loop ; read next byte
|
|
|
|
unix2dos_done:
|
|
FileClose $0 ; close files
|
|
FileClose $1
|
|
Pop $0
|
|
Delete $0 ; delete original
|
|
|
|
FunctionEnd
|
|
|
|
;--------------------------------
|
|
;Descriptions
|
|
|
|
;English
|
|
LangString TEXT_SecBase ${LANG_ENGLISH} "Core files"
|
|
LangString DESC_SecBase ${LANG_ENGLISH} "The core files required to run Warzone 2100."
|
|
|
|
LangString TEXT_SecOpenAL ${LANG_ENGLISH} "OpenAL libraries"
|
|
LangString DESC_SecOpenAL ${LANG_ENGLISH} "Runtime libraries for OpenAL, a free Audio interface. Implementation by Creative Labs."
|
|
|
|
LangString TEXT_SecMods ${LANG_ENGLISH} "Mods"
|
|
LangString DESC_SecMods ${LANG_ENGLISH} "Various mods for Warzone 2100."
|
|
|
|
LangString TEXT_SecFMVs ${LANG_ENGLISH} "Videos"
|
|
LangString DESC_SecFMVs ${LANG_ENGLISH} "Download and install in-game cutscenes."
|
|
|
|
LangString TEXT_SecFMVs_Eng ${LANG_ENGLISH} "English"
|
|
LangString DESC_SecFMVs_Eng ${LANG_ENGLISH} "Download and install English in-game cutscenes (545 MB)."
|
|
|
|
LangString TEXT_SecFMVs_EngLo ${LANG_ENGLISH} "English (LQ)"
|
|
LangString DESC_SecFMVs_EngLo ${LANG_ENGLISH} "Download and install a low-quality version of English in-game cutscenes (162 MB)."
|
|
|
|
LangString TEXT_SecFMVs_Ger ${LANG_ENGLISH} "German"
|
|
LangString DESC_SecFMVs_Ger ${LANG_ENGLISH} "Download and install German in-game cutscenes (460 MB)."
|
|
|
|
LangString TEXT_SecNLS ${LANG_ENGLISH} "Language files"
|
|
LangString DESC_SecNLS ${LANG_ENGLISH} "Support for languages other than English."
|
|
|
|
LangString TEXT_SecNLS_WinFonts ${LANG_ENGLISH} "WinFonts"
|
|
LangString DESC_SecNLS_WinFonts ${LANG_ENGLISH} "Include Windows Fonts folder into the search path. Enable this if you want to use custom fonts in config file or having troubles with standard font. Can be slow on Vista and later!"
|
|
|
|
LangString TEXT_SecDyDoAIMod ${LANG_ENGLISH} "DyDo-AI"
|
|
LangString DESC_SecDyDoAIMod ${LANG_ENGLISH} "DyDo-AI: New computer opponent"
|
|
|
|
LangString TEXT_SecOriginalMod ${LANG_ENGLISH} "1.10 balance"
|
|
LangString DESC_SecOriginalMod ${LANG_ENGLISH} "Play the game as it was back in the 1.10 days."
|
|
|
|
;Dutch
|
|
LangString TEXT_SecBase ${LANG_DUTCH} "Core files"
|
|
LangString DESC_SecBase ${LANG_DUTCH} "The core files required to run Warzone 2100."
|
|
|
|
LangString TEXT_SecOpenAL ${LANG_DUTCH} "OpenAL bibliotheken"
|
|
LangString DESC_SecOpenAL ${LANG_DUTCH} "Vereiste bibliotheken voor OpenAL, een opensource/vrije Audio Bibliotheek."
|
|
|
|
LangString TEXT_SecMods ${LANG_DUTCH} "Mods"
|
|
LangString DESC_SecMods ${LANG_DUTCH} "Verschillende mods."
|
|
|
|
LangString TEXT_SecFMVs ${LANG_DUTCH} "Videos"
|
|
LangString DESC_SecFMVs ${LANG_DUTCH} "Download and install in-game cutscenes."
|
|
|
|
LangString TEXT_SecFMVs_Eng ${LANG_DUTCH} "English"
|
|
LangString DESC_SecFMVs_Eng ${LANG_DUTCH} "Download and install English in-game cutscenes (545 MB)."
|
|
|
|
LangString TEXT_SecFMVs_EngLo ${LANG_DUTCH} "English (LQ)"
|
|
LangString DESC_SecFMVs_EngLo ${LANG_DUTCH} "Download and install a low-quality version of English in-game cutscenes (162 MB)."
|
|
|
|
LangString TEXT_SecFMVs_Ger ${LANG_DUTCH} "German"
|
|
LangString DESC_SecFMVs_Ger ${LANG_DUTCH} "Download and install German in-game cutscenes (460 MB)."
|
|
|
|
LangString TEXT_SecNLS ${LANG_DUTCH} "Language files"
|
|
LangString DESC_SecNLS ${LANG_DUTCH} "Ondersteuning voor andere talen dan Engels (Nederlands inbegrepen)."
|
|
|
|
LangString TEXT_SecNLS_WinFonts ${LANG_DUTCH} "WinFonts"
|
|
LangString DESC_SecNLS_WinFonts ${LANG_DUTCH} "Include Windows Fonts folder into the search path. Enable this if you want to use custom fonts in config file or having troubles with standard font. Can be slow on Vista and later!"
|
|
|
|
LangString TEXT_SecDyDoAIMod ${LANG_DUTCH} "DyDo-AI"
|
|
LangString DESC_SecDyDoAIMod ${LANG_DUTCH} "DyDo-AI: Nieuwe computertegenstander"
|
|
|
|
LangString TEXT_SecOriginalMod ${LANG_DUTCH} "1.10 balance"
|
|
LangString DESC_SecOriginalMod ${LANG_DUTCH} "Speel het spel met de originele 1.10 versie balans stats."
|
|
|
|
;German
|
|
LangString TEXT_SecBase ${LANG_GERMAN} "Core files"
|
|
LangString DESC_SecBase ${LANG_GERMAN} "Die Kerndateien, die für Warzone 2100 benötigt werden."
|
|
|
|
LangString TEXT_SecOpenAL ${LANG_GERMAN} "OpenAL Bibliotheken"
|
|
LangString DESC_SecOpenAL ${LANG_GERMAN} "Bibliotheken für OpenAL, ein freies Audio Interface. Implementation von Creative Labs."
|
|
|
|
LangString TEXT_SecMods ${LANG_GERMAN} "Mods"
|
|
LangString DESC_SecMods ${LANG_GERMAN} "Verschiedene Mods."
|
|
|
|
LangString TEXT_SecFMVs ${LANG_GERMAN} "Videos"
|
|
LangString DESC_SecFMVs ${LANG_GERMAN} "Videos herunterladen und installieren."
|
|
|
|
LangString TEXT_SecFMVs_Eng ${LANG_GERMAN} "English"
|
|
LangString DESC_SecFMVs_Eng ${LANG_GERMAN} "Die englischen Videos herunterladen und installieren (545 MiB)."
|
|
|
|
LangString TEXT_SecFMVs_EngLo ${LANG_GERMAN} "English (LQ)"
|
|
LangString DESC_SecFMVs_EngLo ${LANG_GERMAN} "Die englischen Videos in geringer Qualität herunterladen und installieren (162 MiB)."
|
|
|
|
LangString TEXT_SecFMVs_Ger ${LANG_GERMAN} "German"
|
|
LangString DESC_SecFMVs_Ger ${LANG_GERMAN} "Die deutschen Videos herunterladen und installieren (460 MiB)."
|
|
|
|
LangString TEXT_SecNLS ${LANG_GERMAN} "Language files"
|
|
LangString DESC_SecNLS ${LANG_GERMAN} "Unterstützung für Sprachen außer Englisch (Deutsch inbegriffen)."
|
|
|
|
LangString TEXT_SecNLS_WinFonts ${LANG_GERMAN} "WinFonts"
|
|
LangString DESC_SecNLS_WinFonts ${LANG_GERMAN} "Den Windows-Schriftarten-Ordner in den Suchpfad aufnehmen. Nutzen Sie dies, falls Sie später eigene Schriftarten in der Konfigurationsdatei eingeben wollen oder es zu Problemen mit der Standardschriftart kommt. Kann unter Vista und später langsam sein!"
|
|
|
|
LangString TEXT_SecDyDoAIMod ${LANG_GERMAN} "DyDo-AI"
|
|
LangString DESC_SecDyDoAIMod ${LANG_GERMAN} "DyDo-AI: Neuer Computergegner"
|
|
|
|
LangString TEXT_SecOriginalMod ${LANG_GERMAN} "1.10 balance"
|
|
LangString DESC_SecOriginalMod ${LANG_GERMAN} "Spielen Sie das Spiel mit dem Balancing aus der Originalversion 1.10."
|
|
|
|
;Russian
|
|
LangString TEXT_SecBase ${LANG_RUSSIAN} "Áàçîâûå ôàéëû"
|
|
LangString DESC_SecBase ${LANG_RUSSIAN} "Ôàéëû òðåáóåìûå äëÿ çàïóñêà Warzone 2100."
|
|
|
|
LangString TEXT_SecOpenAL ${LANG_RUSSIAN} "Áèáëèîòåêà OpenAL"
|
|
LangString DESC_SecOpenAL ${LANG_RUSSIAN} "Ñâîáîäíî ðàñïðîñòðàíÿåìûé àïïàðàòíî- ïðîãðàììíûé èíòåðôåéñ (API) äëÿ ðàáîòû ñ àóäèîäàííûìè. Âåðñèÿ îò Creative Labs."
|
|
|
|
LangString TEXT_SecMods ${LANG_RUSSIAN} "Ìîäèôèêàöèè"
|
|
LangString DESC_SecMods ${LANG_RUSSIAN} "Ðàçëè÷íûå ìîäèôèêàöèè äëÿ Warzone 2100."
|
|
|
|
LangString TEXT_SecFMVs ${LANG_RUSSIAN} "Âèäåî"
|
|
LangString DESC_SecFMVs ${LANG_RUSSIAN} "Ñêà÷àòü è óñòàíîâèòü âíóòðèèãðîâûå ðîëèêè."
|
|
|
|
LangString TEXT_SecFMVs_Eng ${LANG_RUSSIAN} "Àíãëèéñêèå"
|
|
LangString DESC_SecFMVs_Eng ${LANG_RUSSIAN} "Ñêà÷àòü è óñòàíîâèòü âíóòðèèãðîâûå ðîëèêè íà àíãëèéñêîì ÿçûêå (545 MB)."
|
|
|
|
LangString TEXT_SecFMVs_EngLo ${LANG_RUSSIAN} "Àíãëèéñêèå (LQ)"
|
|
LangString DESC_SecFMVs_EngLo ${LANG_RUSSIAN} "Ñêà÷àòü è óñòàíîâèòü âíóòðèèãðîâûå ðîëèêè (íèçêîãî êà÷åñòâà) íà àíãëèéñêîì ÿçûêå (162 MB)."
|
|
|
|
LangString TEXT_SecFMVs_Ger ${LANG_RUSSIAN} "Íåìåöêèå"
|
|
LangString DESC_SecFMVs_Ger ${LANG_RUSSIAN} "Ñêà÷àòü è óñòàíîâèòü âíóòðèèãðîâûå ðîëèêè íà íåìåöêîì ÿçûêå (460 MB)."
|
|
|
|
LangString TEXT_SecNLS ${LANG_RUSSIAN} "ßçûêîâûå ôàéëû"
|
|
LangString DESC_SecNLS ${LANG_RUSSIAN} "Ïîääåðæêà Ðóññêîãî è äðóãèõ ÿçûêîâ."
|
|
|
|
LangString TEXT_SecNLS_WinFonts ${LANG_RUSSIAN} "WinØðèôòû"
|
|
LangString DESC_SecNLS_WinFonts ${LANG_RUSSIAN} "Çàäåéñòâîâàòü ïàïêó øðèôòîâ Windows ïðè ïîèñêå. Ïîìîãàåò åñëè åñòü ïðîáëåìû ñ ïîñòàâëÿåìûìè øðèôòàìè. Íà Âèñòå âîçìîæíî çàìåäëåíèå ïðè çàãðóçêå!"
|
|
|
|
LangString TEXT_SecDyDoAIMod ${LANG_RUSSIAN} "DyDo-AI"
|
|
LangString DESC_SecDyDoAIMod ${LANG_RUSSIAN} "DyDo-AI: Íîâûé êîìïüþòåðíûé ïðîòèâíèê."
|
|
|
|
LangString TEXT_SecOriginalMod ${LANG_RUSSIAN} "Áàëàíñ 1.10"
|
|
LangString DESC_SecOriginalMod ${LANG_RUSSIAN} "Èãðàòü â èãðó ñ áàëàíñîì îò îðèãèíàëüíîé âåðñèè 1.10."
|
|
|
|
;Assign language strings to sections
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecBase} $(DESC_SecBase)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecOpenAL} $(DESC_SecOpenAL)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecMods} $(DESC_SecMods)
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDyDoAIMod} $(DESC_SecDyDoAIMod)
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecOriginalMod} $(DESC_SecOriginalMod)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecFMVs} $(DESC_SecFMVs)
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecFMVs_Eng} $(DESC_SecFMVs_Eng)
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecFMVs_EngLo} $(DESC_SecFMVs_EngLo)
|
|
; !insertmacro MUI_DESCRIPTION_TEXT ${SecFMVs_Ger} $(DESC_SecFMVs_Ger)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecNLS} $(DESC_SecNLS)
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecNLS_WinFonts} $(DESC_SecNLS_WinFonts)
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
|
|
;--------------------------------
|
|
;Uninstaller Section
|
|
|
|
Section "Uninstall"
|
|
|
|
;ADD YOUR OWN FILES HERE...
|
|
|
|
Delete "$INSTDIR\${PACKAGE}.exe"
|
|
|
|
Delete "$INSTDIR\oalinst.exe"
|
|
|
|
Delete "$INSTDIR\dbghelp.dll.license.txt"
|
|
Delete "$INSTDIR\dbghelp.dll"
|
|
|
|
Delete "$INSTDIR\base.wz"
|
|
Delete "$INSTDIR\mp.wz"
|
|
Delete "$INSTDIR\sequences.wz"
|
|
|
|
Delete "$INSTDIR\stderr.txt"
|
|
Delete "$INSTDIR\stdout.txt"
|
|
|
|
Delete "$INSTDIR\Readme.en.txt"
|
|
Delete "$INSTDIR\Readme.de.txt"
|
|
Delete "$INSTDIR\Readme.en.html"
|
|
Delete "$INSTDIR\Readme.de.html"
|
|
|
|
Delete "$INSTDIR\License.txt"
|
|
Delete "$INSTDIR\Authors.txt"
|
|
Delete "$INSTDIR\ChangeLog.txt"
|
|
|
|
Delete "$INSTDIR\music\menu.ogg"
|
|
Delete "$INSTDIR\music\track1.ogg"
|
|
Delete "$INSTDIR\music\track2.ogg"
|
|
Delete "$INSTDIR\music\track3.ogg"
|
|
Delete "$INSTDIR\music\music.wpl"
|
|
RMDir "$INSTDIR\music"
|
|
|
|
Delete "$INSTDIR\uninstall.exe"
|
|
|
|
Delete "$INSTDIR\styles\readme.print.css"
|
|
Delete "$INSTDIR\styles\readme.screen.css"
|
|
RMDir "$INSTDIR\styles"
|
|
|
|
Delete "$INSTDIR\fonts\fonts.conf"
|
|
Delete "$INSTDIR\fonts\DejaVuSansMono.ttf"
|
|
Delete "$INSTDIR\fonts\DejaVuSansMono-Bold.ttf"
|
|
Delete "$INSTDIR\fonts\DejaVuSans.ttf"
|
|
Delete "$INSTDIR\fonts\DejaVuSans-Bold.ttf"
|
|
RMDir "$INSTDIR\fonts"
|
|
|
|
Delete "$INSTDIR\mods\music\music_1.0.AUTHORS.txt"
|
|
Delete "$INSTDIR\mods\music\music_1.0.wz"
|
|
|
|
Delete "$INSTDIR\mods\multiplay\dydo-ai.wz"
|
|
Delete "$INSTDIR\mods\multiplay\old-1.10-balance.wz"
|
|
|
|
RMDir "$INSTDIR\mods\multiplay"
|
|
RMDir "$INSTDIR\mods\music"
|
|
RMDir "$INSTDIR\mods\campaign"
|
|
RMDir "$INSTDIR\mods\global"
|
|
|
|
RMDir "$INSTDIR\mods"
|
|
|
|
; remove all the locales
|
|
|
|
Delete "$INSTDIR\locale\cs\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\cs\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\cs"
|
|
|
|
Delete "$INSTDIR\locale\da\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\da\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\da"
|
|
|
|
Delete "$INSTDIR\locale\de\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\de\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\de"
|
|
|
|
Delete "$INSTDIR\locale\en_GB\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\en_GB\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\en_GB"
|
|
|
|
Delete "$INSTDIR\locale\es\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\es\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\es"
|
|
|
|
Delete "$INSTDIR\locale\et\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\et\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\et"
|
|
|
|
Delete "$INSTDIR\locale\fi\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\fi\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\fi"
|
|
|
|
Delete "$INSTDIR\locale\fr\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\fr\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\fr"
|
|
|
|
Delete "$INSTDIR\locale\fy\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\fy\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\fy"
|
|
|
|
Delete "$INSTDIR\locale\ga\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\ga\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\ga"
|
|
|
|
Delete "$INSTDIR\locale\hr\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\hr\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\hr"
|
|
|
|
Delete "$INSTDIR\locale\it\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\it\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\it"
|
|
|
|
Delete "$INSTDIR\locale\ko\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\ko\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\ko"
|
|
|
|
Delete "$INSTDIR\locale\la\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\la\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\la"
|
|
|
|
Delete "$INSTDIR\locale\lt\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\lt\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\lt"
|
|
|
|
Delete "$INSTDIR\locale\nb\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\nb\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\nb"
|
|
|
|
Delete "$INSTDIR\locale\nl\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\nl\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\nl"
|
|
|
|
Delete "$INSTDIR\locale\pl\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\pl\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\pl"
|
|
|
|
Delete "$INSTDIR\locale\pt_BR\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\pt_BR\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\pt_BR"
|
|
|
|
Delete "$INSTDIR\locale\pt\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\pt\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\pt"
|
|
|
|
Delete "$INSTDIR\locale\ro\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\ro\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\ro"
|
|
|
|
Delete "$INSTDIR\locale\ru\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\ru\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\ru"
|
|
|
|
Delete "$INSTDIR\locale\sk\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\sk\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\sk"
|
|
|
|
Delete "$INSTDIR\locale\sl\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\sl\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\sl"
|
|
|
|
Delete "$INSTDIR\locale\tr\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\tr\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\tr"
|
|
|
|
Delete "$INSTDIR\locale\uk\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\uk\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\uk"
|
|
|
|
Delete "$INSTDIR\locale\zh_TW\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\zh_TW\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\zh_TW"
|
|
|
|
Delete "$INSTDIR\locale\zh_CN\LC_MESSAGES\${PACKAGE}.mo"
|
|
RMDir "$INSTDIR\locale\zh_CN\LC_MESSAGES"
|
|
RMDir "$INSTDIR\locale\zh_CN"
|
|
|
|
RMDir "$INSTDIR\locale"
|
|
RMDir "$INSTDIR"
|
|
|
|
SetShellVarContext all
|
|
|
|
; remove the desktop shortcut icon
|
|
|
|
Delete "$DESKTOP\${PACKAGE_NAME}.lnk"
|
|
|
|
; and now, lets really remove the startmenu entries...
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
|
|
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\${PACKAGE_NAME}.lnk"
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\${PACKAGE_NAME} - Old 1.10 Balance.lnk"
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\${PACKAGE_NAME} - DyDo-AI.lnk"
|
|
|
|
;Delete empty start menu parent diretories
|
|
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
|
|
|
|
startMenuDeleteLoop:
|
|
ClearErrors
|
|
RMDir $MUI_TEMP
|
|
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
|
|
|
|
IfErrors startMenuDeleteLoopDone
|
|
|
|
StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
|
|
startMenuDeleteLoopDone:
|
|
|
|
DeleteRegValue HKLM "Software\${PACKAGE_NAME}" "Start Menu Folder"
|
|
DeleteRegValue HKLM "Software\${PACKAGE_NAME}" ""
|
|
DeleteRegKey /ifempty HKLM "Software\${PACKAGE_NAME}"
|
|
|
|
; Unregister with Windows' uninstall system
|
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PACKAGE_NAME}"
|
|
|
|
SectionEnd
|
|
|
|
;--------------------------------
|
|
;Uninstaller Functions
|
|
|
|
Function un.onInit
|
|
|
|
!insertmacro MUI_UNGETLANGUAGE
|
|
|
|
FunctionEnd
|