2017-11-07 01:11:50 +00:00
|
|
|
/*
|
2008-03-30 21:37:53 +00:00
|
|
|
init.nsh
|
|
|
|
|
2012-11-11 17:07:55 +00:00
|
|
|
Initialization functions
|
2007-02-08 21:09:30 +00:00
|
|
|
*/
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
#--------------------------------
|
|
|
|
# User initialization
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
Var ComponentPath
|
|
|
|
Var LyXLangName
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# COMPONENT can be LaTeX, ImageMagick and Ghostscript
|
2008-03-30 21:37:53 +00:00
|
|
|
!macro EXTERNAL_INIT COMPONENT
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# APP_REGKEY_SETUP = "Software\${APP_NAME}${APP_SERIES_KEY}\Setup"
|
2016-05-29 21:57:37 +00:00
|
|
|
# where ${APP_NAME}${APP_SERIES_KEY} is something like LyX22
|
2008-03-30 21:37:53 +00:00
|
|
|
ReadRegStr $ComponentPath SHELL_CONTEXT "${APP_REGKEY_SETUP}" "${COMPONENT} Path"
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# BIN_LATEX etc are defined in settings.nsh
|
|
|
|
${If} ${FileExists} "$ComponentPath\${BIN_${COMPONENT}}"
|
|
|
|
# set variables like PathLaTeX
|
|
|
|
StrCpy $Path${COMPONENT} $ComponentPath
|
|
|
|
${EndIf}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
!macroend
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
Function InitUser
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Get directories of components from registry
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
!insertmacro EXTERNAL_INIT LaTeX
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Get LyX language
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
ReadRegStr $LyXLangName SHELL_CONTEXT "${APP_REGKEY_SETUP}" "LyX Language"
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
${If} $LyXLangName != ""
|
|
|
|
StrCpy $LangName $LyXLangName
|
|
|
|
${EndIf}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
FunctionEnd
|
2011-05-23 04:12:10 +00:00
|
|
|
|
|
|
|
#--------------------------------
|
|
|
|
# visible installer sections
|
|
|
|
|
|
|
|
Section "!${APP_NAME}" SecCore
|
2012-11-12 00:31:00 +00:00
|
|
|
SectionIn RO
|
2016-05-30 23:25:07 +00:00
|
|
|
!if ${SETUPTYPE} == BUNDLE
|
|
|
|
# if no TeX was found MiKTeX will be installed which requires space
|
|
|
|
!if $PathLaTeX == ""
|
|
|
|
AddSize 1020000 # size in KB
|
|
|
|
!endif
|
|
|
|
!endif
|
2011-05-23 04:12:10 +00:00
|
|
|
SectionEnd
|
2012-11-12 00:31:00 +00:00
|
|
|
|
2014-03-29 00:50:18 +00:00
|
|
|
Section "$(SecFileAssocTitle)" SecFileAssoc
|
2016-04-12 23:31:42 +00:00
|
|
|
StrCpy $CreateFileAssociations "true"
|
2011-05-23 04:12:10 +00:00
|
|
|
SectionEnd
|
2012-11-12 00:31:00 +00:00
|
|
|
|
2011-09-05 07:20:53 +00:00
|
|
|
Section "$(SecDesktopTitle)" SecDesktop
|
2016-05-08 01:05:55 +00:00
|
|
|
StrCpy $CreateDesktopIcon "true"
|
2011-05-23 04:12:10 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2012-12-31 16:28:50 +00:00
|
|
|
# Expand the list of dictionaries by default as this was requested by several
|
|
|
|
# users. For the thesaurus this is was not requested because this section
|
|
|
|
# is by default empty.
|
2017-11-07 01:11:50 +00:00
|
|
|
SectionGroup /e "$(SecDictionaries)" SecDictionaries
|
2012-06-03 15:17:01 +00:00
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Afrikaans" SecDAfrikaans
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "af_ZA,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1440
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "العربية" SecDArabic
|
2018-02-17 05:05:13 +00:00
|
|
|
StrCpy $DictCodes "ar_SA,$DictCodes"
|
|
|
|
AddSize 7304
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "հայերեն" SecDArmenian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "hy_AM,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2000
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Bahasa Indonesia" SecDIndonesian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "id_ID,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 217
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Bahasa Melayu" SecDMalayan
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ms_MY,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 227
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "беларускі" SecDBelarusian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "be_BY,$DictCodes"
|
|
|
|
AddSize 1730
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Brezhoneg" SecDBreton
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "br_FR,$DictCodes"
|
2018-02-17 05:05:13 +00:00
|
|
|
AddSize 5556
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "български" SecDBulgarian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "bg_BG,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 985
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Català" SecDCatalanian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ca_ES,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1210
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Ceština" SecDCzech
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "cs_CZ,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2190
|
|
|
|
SectionEnd
|
|
|
|
|
2013-05-31 02:27:08 +00:00
|
|
|
Section /o "Coptic" SecDCoptic
|
|
|
|
StrCpy $DictCodes "cop_EG,$DictCodes"
|
|
|
|
AddSize 151
|
|
|
|
SectionEnd
|
2012-11-10 21:08:43 +00:00
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Cymraeg" SecDWelsh
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "cy_GB,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1540
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Dansk" SecDDanish
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "da_DK,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2470
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Deutsch (A)" SecDGermanAT
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "de_AT,$DictCodes"
|
|
|
|
AddSize 3620
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Deutsch (CH)" SecDGermanCH
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "de_CH,$DictCodes"
|
|
|
|
AddSize 3620
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section "Deutsch (D)" SecDGermanD
|
2012-06-03 21:55:21 +00:00
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "de_DE,$DictCodes"
|
|
|
|
AddSize 3620
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Ελληνικά" SecDGreek
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "el_GR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 6550
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Eesti" SecDEstonian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "et_EE,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 4400
|
|
|
|
SectionEnd
|
|
|
|
|
2013-05-31 02:27:08 +00:00
|
|
|
Section /o "English (AU)" SecDEnglishAU
|
|
|
|
StrCpy $DictCodes "en_AU,$DictCodes"
|
2017-01-26 01:19:27 +00:00
|
|
|
AddSize 552
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionEnd
|
2012-06-03 21:55:21 +00:00
|
|
|
|
|
|
|
Section /o "English (CA)" SecDEnglishCA
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "en_CA,$DictCodes"
|
2017-01-26 01:19:27 +00:00
|
|
|
AddSize 550
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "English (GB)" SecDEnglishGB
|
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "en_GB,$DictCodes"
|
2017-01-26 01:19:27 +00:00
|
|
|
AddSize 742
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2013-05-31 02:27:08 +00:00
|
|
|
Section /o "English (NZ)" SecDEnglishNZ
|
|
|
|
StrCpy $DictCodes "en_NZ,$DictCodes"
|
|
|
|
AddSize 551
|
|
|
|
SectionEnd
|
2012-06-03 21:55:21 +00:00
|
|
|
|
|
|
|
Section "English (US)" SecDEnglishUS
|
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "en_US,$DictCodes"
|
2017-01-26 01:19:27 +00:00
|
|
|
AddSize 548
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section "Español (ES)" SecDSpanishES
|
2012-06-03 21:55:21 +00:00
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "es_ES,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 974
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section "Español (MX)" SecDSpanishMX
|
2012-06-03 21:55:21 +00:00
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "es_MX,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 924
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Esperanto" SecDEsperanto
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "eo_EO,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 389
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Euskara" SecDBasque
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "eu_ES,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 4850
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-21 00:12:08 +00:00
|
|
|
Section /o "فارسی" SecDFarsi
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "fa_IR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 6710
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section "Français" SecDFrench
|
2012-06-03 21:55:21 +00:00
|
|
|
# already installed by default
|
2012-11-10 06:05:19 +00:00
|
|
|
SectionIn RO
|
2012-11-10 21:08:43 +00:00
|
|
|
#StrCpy $DictCodes "fr_FR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1200
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Français (Canada)" SecDFrenchCanada
|
2013-04-13 11:37:02 +00:00
|
|
|
StrCpy $DictCodes "fr_CA,$DictCodes"
|
|
|
|
AddSize 1390
|
|
|
|
SectionEnd
|
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Gaeilge" SecDGaelic
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ga_IR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1090
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Gàidhlig" SecDScottish
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "gd_GB,$DictCodes"
|
2016-05-19 01:28:31 +00:00
|
|
|
AddSize 4161
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Galego" SecDGalician
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "gl_ES,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 3911
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "עִברִית" SecDHebrew
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "he_IL,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 3120
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Hrvatski" SecDCroatian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "hr_HR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2240
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Magyar" SecDHungarian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "hu_HU,$DictCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 3380
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "हिंदी" SecDHindi
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $DictCodes "hi_IN,$DictCodes"
|
|
|
|
AddSize 1900
|
|
|
|
SectionEnd
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Interlingua" SecDInterlingua
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ia_IA,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 613
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Íslenska" SecDIcelandic
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "is_IS,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2320
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Italiano" SecDItalian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "it_IT,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 1380
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Қазақша" SecDKazakh
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "kk_KZ,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 2120
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "한국어" SecDKorean
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ko_KR,$DictCodes"
|
2013-04-07 23:17:23 +00:00
|
|
|
AddSize 16540
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Latina" SecDLatin
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "la_LA,$DictCodes"
|
2013-04-08 00:05:19 +00:00
|
|
|
AddSize 2040
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Lietuviu" SecDLithuanian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "lt_LT,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1320
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Latviešu" SecDLatvian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "lv_LV,$DictCodes"
|
2013-04-28 04:03:13 +00:00
|
|
|
AddSize 2243
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "मराठी" SecDMarathi
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $DictCodes "mr_IN,$DictCodes"
|
|
|
|
AddSize 5290
|
|
|
|
SectionEnd
|
2013-04-07 23:17:23 +00:00
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Nederlands" SecDDutch
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "nl_NL,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1820
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Norsk (Bokmål)" SecDNorwegianNB
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "nb_NO,$DictCodes"
|
2016-05-19 01:28:31 +00:00
|
|
|
AddSize 5291
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Norsk (Nynorsk)" SecDNorwegianNN
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "nn_NO,$DictCodes"
|
2016-05-19 01:28:31 +00:00
|
|
|
AddSize 3292
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2013-05-31 02:27:08 +00:00
|
|
|
Section /o "Occitan" SecDOccitan
|
|
|
|
StrCpy $DictCodes "oc_FR,$DictCodes"
|
|
|
|
AddSize 31710
|
|
|
|
SectionEnd
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2012-06-03 21:55:21 +00:00
|
|
|
Section /o "Polski" SecDPolish
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "pl_PL,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 4540
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Português (BR)" SecDPortugueseBR
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "pt_BR,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 5280
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Português (PT)" SecDPortuguesePT
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "pt_PT,$DictCodes"
|
2016-10-12 00:24:01 +00:00
|
|
|
AddSize 1568
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Româna" SecDRomanian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ro_RO,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 2255
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Русский" SecDRussian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "ru_RU,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 1920
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Serbšcina (Dolno)" SecDSorbianD
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "dsb_DE,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 1035
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Serbšcina (Horno)" SecDSorbianH
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "hsb_DE,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 740
|
|
|
|
SectionEnd
|
|
|
|
|
2018-01-14 21:18:20 +00:00
|
|
|
Section /o "Shqip" SecDAlbanian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "sq_AL,$DictCodes"
|
2018-01-14 21:18:20 +00:00
|
|
|
AddSize 2612
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Slovenšcina" SecDSlovenian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "sl_SI,$DictCodes"
|
2012-11-21 22:48:33 +00:00
|
|
|
AddSize 2910
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Slovenský" SecDSlovakian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $DictCodes "sk_SK,$DictCodes"
|
2013-04-08 00:05:19 +00:00
|
|
|
AddSize 3310
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Српски (Ћирилица)" SecDSerbianC
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "sr_RS,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 4401
|
2013-04-08 21:42:18 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Srpski (Latinica)" SecDSerbianL
|
|
|
|
StrCpy $DictCodes "sr_RS-Latin,$DictCodes"
|
2014-03-06 23:24:28 +00:00
|
|
|
AddSize 2843
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Svenska" SecDSwedish
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "sv_SE,$DictCodes"
|
2012-12-31 16:28:50 +00:00
|
|
|
AddSize 2028
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "தமிழ்" SecDTamil
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $DictCodes "ta_IN,$DictCodes"
|
|
|
|
AddSize 5911
|
|
|
|
SectionEnd
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "తెలుగు" SecDTelugu
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $DictCodes "te_IN,$DictCodes"
|
|
|
|
AddSize 3400
|
|
|
|
SectionEnd
|
2012-06-03 21:55:21 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "ไทย" SecDThai
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "th_TH,$DictCodes"
|
2012-06-03 21:55:21 +00:00
|
|
|
AddSize 351
|
|
|
|
SectionEnd
|
|
|
|
|
2016-11-19 15:35:42 +00:00
|
|
|
Section /o "Tibetan" SecDTibetan
|
|
|
|
StrCpy $DictCodes "bo_CN,$DictCodes"
|
|
|
|
AddSize 7
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Türkmençe" SecDTurkmen
|
2014-03-06 23:24:28 +00:00
|
|
|
StrCpy $DictCodes "tk_TM,$DictCodes"
|
|
|
|
AddSize 950
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Türkçe" SecDTurkish
|
2015-01-09 01:49:41 +00:00
|
|
|
StrCpy $DictCodes "tr_TR,$DictCodes"
|
|
|
|
AddSize 8870
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Українська" SecDUkrainian
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "uk_UA,$DictCodes"
|
2018-02-17 05:05:13 +00:00
|
|
|
AddSize 6375
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "اردو" SecDUrdu
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $DictCodes "ur_PK,$DictCodes"
|
|
|
|
AddSize 1401
|
|
|
|
SectionEnd
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Tiếng Việt" SecDVietnamese
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $DictCodes "vi_VN,$DictCodes"
|
|
|
|
AddSize 40
|
2012-06-03 21:55:21 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionGroupEnd
|
|
|
|
|
2012-11-11 06:12:43 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
SectionGroup "$(SecThesaurus)" SecThesaurus
|
2012-06-03 15:17:01 +00:00
|
|
|
|
2018-02-17 05:05:13 +00:00
|
|
|
Section /o "العربية" SecTArabic
|
|
|
|
StrCpy $ThesCodes "ar_SA,$ThesCodes"
|
|
|
|
AddSize 799
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "български" SecTBulgarian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "bg_BG,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 3020
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Català" SecTCatalan
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "ca_ES,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 731
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Ceština" SecTCzech
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "cs_CZ,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 635
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Dansk" SecTDanish
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "da_DK,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 2360
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Deutsch (D/A)" SecTGermanDA
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "de_DE,$ThesCodes"
|
2012-11-16 00:21:47 +00:00
|
|
|
AddSize 14600
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Deutsch (CH)" SecTGermanCH
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "de_CH,$ThesCodes"
|
2012-11-16 00:21:47 +00:00
|
|
|
AddSize 14600
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2016-10-12 00:24:01 +00:00
|
|
|
Section /o "English (AU)" SecTEnglishAU
|
|
|
|
StrCpy $ThesCodes "en_AU,$ThesCodes"
|
|
|
|
AddSize 21642
|
|
|
|
SectionEnd
|
|
|
|
|
2012-06-03 15:17:01 +00:00
|
|
|
Section /o "English (GB)" SecTEnglishGB
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "en_GB,$ThesCodes"
|
2014-03-07 23:25:22 +00:00
|
|
|
AddSize 14300
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2016-10-12 00:24:01 +00:00
|
|
|
Section /o "English (US)" SecTEnglishUS
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "en_US,$ThesCodes"
|
2016-05-19 01:28:31 +00:00
|
|
|
AddSize 22095
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Español" SecTSpanish
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "es_ES,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 2860
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Français" SecTFrench
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "fr_FR,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 5060
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Gaeilge" SecTGaelic
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "ga_IR,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 30600
|
|
|
|
SectionEnd
|
|
|
|
|
2014-03-06 23:24:28 +00:00
|
|
|
Section /o "Galego" SecTGalician
|
|
|
|
StrCpy $ThesCodes "gl_ES,$ThesCodes"
|
|
|
|
AddSize 510
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Ελληνικά" SecTGreek
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "el_GR,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 903
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Íslenska" SecTIcelandic
|
2013-04-28 04:03:13 +00:00
|
|
|
StrCpy $ThesCodes "is_IS,$ThesCodes"
|
|
|
|
AddSize 63
|
|
|
|
SectionEnd
|
|
|
|
|
2012-06-03 15:17:01 +00:00
|
|
|
Section /o "Italiano" SecTItalian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "it_IT,$ThesCodes"
|
2013-04-08 00:05:19 +00:00
|
|
|
AddSize 2520
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Magyar" SecTHungarian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "hu_HU,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 632
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Norsk (Bokmål)" SecTNorwegianNB
|
2013-04-07 23:17:23 +00:00
|
|
|
StrCpy $ThesCodes "nb_NO,$ThesCodes"
|
2016-05-19 01:28:31 +00:00
|
|
|
AddSize 2595
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Norsk (Nynorsk)" SecTNorwegianNN
|
|
|
|
StrCpy $ThesCodes "nn_NO,$ThesCodes"
|
|
|
|
AddSize 2
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Polski" SecTPolish
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "pl_PL,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 5580
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Português" SecTPortuguese
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "pt_PT,$ThesCodes"
|
2016-10-12 00:24:01 +00:00
|
|
|
AddSize 3950
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Româna" SecTRomanian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "ro_RO,$ThesCodes"
|
2013-04-08 00:05:19 +00:00
|
|
|
AddSize 3650
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Русский" SecTRussian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "ru_RU,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 2080
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Slovenšcina" SecTSlovenian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "sl_SI,$ThesCodes"
|
2015-01-09 01:49:41 +00:00
|
|
|
AddSize 1110
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Slovenský" SecTSlovakian
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "sk_SK,$ThesCodes"
|
2013-04-08 00:05:19 +00:00
|
|
|
AddSize 930
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section /o "Svenska" SecTSwedish
|
2012-12-31 16:28:50 +00:00
|
|
|
StrCpy $ThesCodes "sv_SE,$ThesCodes"
|
2012-06-03 15:17:01 +00:00
|
|
|
AddSize 720
|
|
|
|
SectionEnd
|
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
Section /o "Українська" SecTUkrainian
|
2013-04-28 04:03:13 +00:00
|
|
|
StrCpy $ThesCodes "uk_UA,$ThesCodes"
|
2016-10-12 00:24:01 +00:00
|
|
|
AddSize 1339
|
2013-04-28 04:03:13 +00:00
|
|
|
SectionEnd
|
|
|
|
|
2012-06-03 15:17:01 +00:00
|
|
|
SectionGroupEnd
|
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# Section descriptions
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecCore} "$(SecCoreDescription)"
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecFileAssoc} "$(SecFileAssocDescription)"
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} "$(SecDesktopDescription)"
|
2012-11-11 17:07:55 +00:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDictionaries} "$(SecDictionariesDescription)"
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecThesaurus} "$(SecThesaurusDescription)"
|
2011-05-23 04:12:10 +00:00
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
|
|
|
2012-11-10 06:05:19 +00:00
|
|
|
|
|
|
|
# .onInit must be here after the section definition because we have to set
|
|
|
|
# the selection states of the dictionary sections
|
|
|
|
Function .onInit
|
|
|
|
|
2016-02-08 23:31:57 +00:00
|
|
|
ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
|
|
|
|
${if} $R0 == "5.0" # 2000
|
|
|
|
${orif} $R0 == "5.1" # XP
|
|
|
|
${orif} $R0 == "5.2" # 2003
|
2017-12-06 14:28:22 +00:00
|
|
|
${orif} $R0 == "6.0" # Vista
|
|
|
|
MessageBox MB_OK|MB_ICONSTOP "${APP_NAME} ${APP_VERSION} requires Windows 7 or newer." /SD IDOK
|
2012-11-10 06:05:19 +00:00
|
|
|
Quit
|
2016-02-08 23:31:57 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
|
2017-11-21 23:32:25 +00:00
|
|
|
# check that another LyX installer is not currently running
|
|
|
|
!if ${SETUPTYPE} == STANDARD
|
|
|
|
FindProcDLL::FindProc "${BundleExeFile}"
|
|
|
|
${if} $R0 == "1"
|
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(InstallRunning)" /SD IDOK
|
|
|
|
Abort
|
|
|
|
${endif}
|
|
|
|
!endif
|
|
|
|
!if ${SETUPTYPE} == BUNDLE
|
|
|
|
FindProcDLL::FindProc "${ExeFile}"
|
|
|
|
${if} $R0 == "1"
|
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(InstallRunning)" /SD IDOK
|
|
|
|
Abort
|
|
|
|
${endif}
|
|
|
|
!endif
|
2013-05-02 23:11:32 +00:00
|
|
|
|
2017-11-07 01:11:50 +00:00
|
|
|
# Check that LyX is not currently running
|
2017-12-06 14:28:22 +00:00
|
|
|
FindProcDLL::FindProc "${BIN_LYX}"
|
2017-11-07 01:11:50 +00:00
|
|
|
${if} $R0 == "1"
|
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(UnInstallRunning)" /SD IDOK
|
|
|
|
Abort
|
|
|
|
${endif}
|
|
|
|
|
2016-02-12 01:52:36 +00:00
|
|
|
# read the user and computer name
|
2016-02-08 23:31:57 +00:00
|
|
|
ReadRegStr $ComputerName HKLM "System\CurrentControlSet\Control\ComputerName\ActiveComputerName" "ComputerName"
|
|
|
|
System::Call "advapi32::GetUserName(t .r0, *i ${NSIS_MAX_STRLEN} r1) i.r2"
|
2016-02-12 01:52:36 +00:00
|
|
|
StrCpy $UserName $0
|
2016-02-08 23:31:57 +00:00
|
|
|
|
2012-11-11 06:12:43 +00:00
|
|
|
!insertmacro MULTIUSER_INIT
|
|
|
|
|
2012-11-10 06:05:19 +00:00
|
|
|
# check if this LyX version is already installed
|
|
|
|
${if} $MultiUser.Privileges == "Admin"
|
|
|
|
${orif} $MultiUser.Privileges == "Power"
|
2014-04-27 13:14:01 +00:00
|
|
|
ReadRegStr $0 HKLM "${APP_UNINST_KEY}" "DisplayIcon"
|
2012-11-10 06:05:19 +00:00
|
|
|
${else}
|
2014-04-27 13:14:01 +00:00
|
|
|
ReadRegStr $0 HKCU "${APP_UNINST_KEY}" "DisplayIcon"
|
2012-11-10 06:05:19 +00:00
|
|
|
# handle also the case that LyX is already installed in HKLM
|
|
|
|
${if} $0 == ""
|
2014-04-27 13:14:01 +00:00
|
|
|
ReadRegStr $0 HKLM "${APP_UNINST_KEY}" "DisplayIcon"
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
${endif}
|
|
|
|
${if} $0 != ""
|
2014-04-27 13:14:01 +00:00
|
|
|
# check if the uninstaller was acidentally deleted
|
|
|
|
# if so don't bother the user if he realy wants to install a new LyX over an existing one
|
|
|
|
# because he won't have a chance to deny this
|
|
|
|
StrCpy $4 $0 -10 # remove '\bin\lyx,0'
|
|
|
|
# (for FileCheck the variables $0 and $1 cannot be used)
|
2017-12-06 14:28:22 +00:00
|
|
|
!insertmacro FileCheck $5 "Uninstall-${APP_NAME}.exe" "$4" # macro from LyXUtils.nsh
|
2014-04-27 13:14:01 +00:00
|
|
|
${if} $5 == "False"
|
|
|
|
Goto ForceInstallation
|
|
|
|
${endif}
|
2014-04-19 16:58:22 +00:00
|
|
|
# installing over an existing installation of the same LyX release is not necessary
|
|
|
|
# if the users does this he most probably has a problem with LyX that can better be solved
|
|
|
|
# by reinstalling LyX
|
|
|
|
# for beta and other test releases over-installing can even cause errors
|
|
|
|
MessageBox MB_YESNO|MB_DEFBUTTON2|MB_ICONEXCLAMATION "$(AlreadyInstalled)" /SD IDNO IDYES ForceInstallation
|
2012-11-10 06:05:19 +00:00
|
|
|
Abort
|
2014-04-19 16:58:22 +00:00
|
|
|
ForceInstallation:
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
|
|
|
|
# check if there is an existing LyX installation of the same LyX series
|
|
|
|
# we usually don't release more than 10 versions so with 20 we are safe to check if a newer version is installed
|
|
|
|
IntOp $4 ${APP_VERSION_REVISION} + 20
|
|
|
|
${for} $5 0 $4
|
|
|
|
${if} $MultiUser.Privileges == "Admin"
|
|
|
|
${orif} $MultiUser.Privileges == "Power"
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$5" "DisplayVersion"
|
2013-01-03 01:46:48 +00:00
|
|
|
# also check for an emergency release
|
|
|
|
${if} $0 == ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$51" "DisplayVersion"
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
${else}
|
|
|
|
ReadRegStr $0 HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$5" "DisplayVersion"
|
2013-01-03 01:46:48 +00:00
|
|
|
# also check for an emergency release
|
|
|
|
${if} $0 == ""
|
|
|
|
ReadRegStr $0 HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$51" "DisplayVersion"
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $R5 $0 # store the read version number
|
|
|
|
StrCpy $OldVersionNumber "${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$5"
|
|
|
|
# we don't stop here because we want the latest installed version
|
|
|
|
${endif}
|
|
|
|
${next}
|
2013-05-02 23:11:32 +00:00
|
|
|
|
2012-11-11 06:12:43 +00:00
|
|
|
${if} $OldVersionNumber > ${APP_SERIES_KEY}
|
|
|
|
# store the version number and reformat it temporarily for the error message
|
|
|
|
StrCpy $R0 $OldVersionNumber
|
|
|
|
StrCpy $OldVersionNumber $R5
|
2014-02-18 01:15:53 +00:00
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(NewerInstalled)" /SD IDOK
|
2012-11-11 06:12:43 +00:00
|
|
|
StrCpy $OldVersionNumber $R0
|
|
|
|
Abort
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
|
|
|
|
# this can be reset to "true" in section SecDesktop
|
|
|
|
StrCpy $CreateDesktopIcon "false"
|
|
|
|
StrCpy $CreateFileAssociations "false"
|
|
|
|
|
|
|
|
${IfNot} ${Silent}
|
|
|
|
# Show banner while installer is intializating
|
|
|
|
Banner::show /NOUNLOAD "Checking system"
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
Call SearchExternal
|
|
|
|
|
2017-11-01 13:33:03 +00:00
|
|
|
#!if ${SETUPTYPE} == BUNDLE
|
|
|
|
# # don't let the installer sections appear when the programs are already installed
|
|
|
|
# ${if} $PathBibTeXEditor != ""
|
|
|
|
# SectionSetText 3 "" # hides the corresponding uninstaller section, ${SecInstJabRef}
|
|
|
|
# ${endif}
|
|
|
|
#!endif
|
2012-11-10 06:05:19 +00:00
|
|
|
|
|
|
|
# select sections of already installed spell-checker dictionaries, make them read-only
|
|
|
|
# and set the necessary size to 0 bytes
|
|
|
|
StrCpy $String $FoundDict
|
|
|
|
StrCpy $Search "af_ZA"
|
|
|
|
Call StrPoint # function from LyXUtils.nsh
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDAfrikaans} $0
|
|
|
|
SectionSetSize ${SecDAfrikaans} 0
|
|
|
|
${endif}
|
2018-02-17 05:05:13 +00:00
|
|
|
StrCpy $Search "ar_SA"
|
2012-11-10 06:05:19 +00:00
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDArabic} $0
|
|
|
|
SectionSetSize ${SecDArabic} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "hy_AM"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDArmenian} $0
|
|
|
|
SectionSetSize ${SecDArmenian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "id_ID"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDIndonesian} $0
|
|
|
|
SectionSetSize ${SecDIndonesian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ms_MY"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDMalayan} $0
|
|
|
|
SectionSetSize ${SecDMalayan} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "be_BY"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDBelarusian} $0
|
|
|
|
SectionSetSize ${SecDBelarusian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "br_FR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDBreton} $0
|
|
|
|
SectionSetSize ${SecDBreton} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "bg_BG"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDBulgarian} $0
|
|
|
|
SectionSetSize ${SecDBulgarian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ca_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDCatalanian} $0
|
|
|
|
SectionSetSize ${SecDCatalanian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "cs_CZ"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDCzech} $0
|
|
|
|
SectionSetSize ${SecDCzech} 0
|
|
|
|
${endif}
|
2012-11-10 21:08:43 +00:00
|
|
|
|
|
|
|
StrCpy $Search "cop_EG"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDCoptic} $0
|
|
|
|
SectionSetSize ${SecDCoptic} 0
|
2012-11-10 21:08:43 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "cy_GB"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDWelsh} $0
|
|
|
|
SectionSetSize ${SecDWelsh} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "da_DK"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDDanish} $0
|
|
|
|
SectionSetSize ${SecDDanish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "de_AT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGermanAT} $0
|
|
|
|
SectionSetSize ${SecDGermanAT} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "de_CH"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGermanCH} $0
|
|
|
|
SectionSetSize ${SecDGermanCH} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "de_DE"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGermanD} $0
|
|
|
|
SectionSetSize ${SecDGermanD} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "el_GR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGreek} $0
|
|
|
|
SectionSetSize ${SecDGreek} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "et_EE"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDEstonian} $0
|
|
|
|
SectionSetSize ${SecDEstonian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_AU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDEnglishAU} $0
|
|
|
|
SectionSetSize ${SecDEnglishAU} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_CA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDEnglishCA} $0
|
|
|
|
SectionSetSize ${SecDEnglishCA} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_GB"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDEnglishGB} $0
|
|
|
|
SectionSetSize ${SecDEnglishGB} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_NZ"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDEnglishNZ} $0
|
|
|
|
SectionSetSize ${SecDEnglishNZ} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_US"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDEnglishUS} $0
|
|
|
|
SectionSetSize ${SecDEnglishUS} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "es_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSpanishES} $0
|
|
|
|
SectionSetSize ${SecDSpanishES} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "es_MX"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSpanishMX} $0
|
|
|
|
SectionSetSize ${SecDSpanishMX} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "eo_EO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDEsperanto} $0
|
|
|
|
SectionSetSize ${SecDEsperanto} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "eu_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDBasque} $0
|
|
|
|
SectionSetSize ${SecDBasque} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "fa_IR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDFarsi} $0
|
|
|
|
SectionSetSize ${SecDFarsi} 0
|
|
|
|
${endif}
|
2013-04-13 11:37:02 +00:00
|
|
|
StrCpy $Search "fr_CA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDFrenchCanada} $0
|
|
|
|
SectionSetSize ${SecDFrenchCanada} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "fr_FR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDFrench} $0
|
|
|
|
SectionSetSize ${SecDFrench} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ga_IR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGaelic} $0
|
|
|
|
SectionSetSize ${SecDGaelic} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "gd_GB"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDScottish} $0
|
|
|
|
SectionSetSize ${SecDScottish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "gl_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDGalician} $0
|
|
|
|
SectionSetSize ${SecDGalician} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "he_IL"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDHebrew} $0
|
|
|
|
SectionSetSize ${SecDHebrew} 0
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
StrCpy $Search "hi_IN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDHindi} $0
|
|
|
|
SectionSetSize ${SecDHindi} 0
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "hr_HR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDCroatian} $0
|
|
|
|
SectionSetSize ${SecDCroatian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "hu_HU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDHungarian} $0
|
|
|
|
SectionSetSize ${SecDHungarian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ia_IA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDInterlingua} $0
|
|
|
|
SectionSetSize ${SecDInterlingua} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "is_IS"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDIcelandic} $0
|
|
|
|
SectionSetSize ${SecDIcelandic} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "it_IT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDItalian} $0
|
|
|
|
SectionSetSize ${SecDItalian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "kk_KZ"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDKazakh} $0
|
|
|
|
SectionSetSize ${SecDKazakh} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ko_KR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDKorean} $0
|
|
|
|
SectionSetSize ${SecDKorean} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "la_LA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDLatin} $0
|
|
|
|
SectionSetSize ${SecDLatin} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "lt_LT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDLithuanian} $0
|
|
|
|
SectionSetSize ${SecDLithuanian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "lv_LV"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDLatvian} $0
|
|
|
|
SectionSetSize ${SecDLatvian} 0
|
|
|
|
${endif}
|
2013-05-31 02:27:08 +00:00
|
|
|
StrCpy $Search "mr_IN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDMarathi} $0
|
|
|
|
SectionSetSize ${SecDMarathi} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "nl_NL"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDDutch} $0
|
|
|
|
SectionSetSize ${SecDDutch} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "nb_NO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDNorwegianNB} $0
|
|
|
|
SectionSetSize ${SecDNorwegianNB} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "nn_NO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDNorwegianNN} $0
|
|
|
|
SectionSetSize ${SecDNorwegianNN} 0
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
StrCpy $Search "oc_FR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDOccitan} $0
|
|
|
|
SectionSetSize ${SecDOccitan} 0
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "pl_PL"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDPolish} $0
|
|
|
|
SectionSetSize ${SecDPolish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "pt_BR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDPortugueseBR} $0
|
|
|
|
SectionSetSize ${SecDPortugueseBR} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "pt_PT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDPortuguesePT} $0
|
|
|
|
SectionSetSize ${SecDPortuguesePT} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ro_RO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDRomanian} $0
|
|
|
|
SectionSetSize ${SecDRomanian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ru_RU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDRussian} $0
|
|
|
|
SectionSetSize ${SecDRussian} 0
|
|
|
|
${endif}
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $Search "dsb_DE"
|
2012-11-10 06:05:19 +00:00
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSorbianD} $0
|
|
|
|
SectionSetSize ${SecDSorbianD} 0
|
|
|
|
${endif}
|
2012-11-10 21:08:43 +00:00
|
|
|
StrCpy $Search "hsb_DE"
|
2012-11-10 06:05:19 +00:00
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSorbianH} $0
|
|
|
|
SectionSetSize ${SecDSorbianH} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sq_AL"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDAlbanian} $0
|
|
|
|
SectionSetSize ${SecDAlbanian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sl_SI"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2012-11-21 22:48:33 +00:00
|
|
|
SectionSetFlags ${SecDSlovenian} $0
|
|
|
|
SectionSetSize ${SecDSlovenian} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sk_SK"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2012-11-21 22:48:33 +00:00
|
|
|
SectionSetFlags ${SecDSlovakian} $0
|
|
|
|
SectionSetSize ${SecDSlovakian} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sr_RS"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-04-08 21:42:18 +00:00
|
|
|
SectionSetFlags ${SecDSerbianC} $0
|
|
|
|
SectionSetSize ${SecDSerbianC} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sr_RS-Latin"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSerbianL} $0
|
|
|
|
SectionSetSize ${SecDSerbianL} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sv_SE"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDSwedish} $0
|
|
|
|
SectionSetSize ${SecDSwedish} 0
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
StrCpy $Search "ta_IN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDTamil} $0
|
|
|
|
SectionSetSize ${SecDTamil} 0
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "te_IN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDTelugu} $0
|
|
|
|
SectionSetSize ${SecDTelugu} 0
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "th_TH"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDThai} $0
|
|
|
|
SectionSetSize ${SecDThai} 0
|
|
|
|
${endif}
|
2016-11-19 15:35:42 +00:00
|
|
|
StrCpy $Search "bo_CN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDTibetan} $0
|
|
|
|
SectionSetSize ${SecDTibetan} 0
|
|
|
|
${endif}
|
2014-03-06 23:24:28 +00:00
|
|
|
StrCpy $Search "tk_TM"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDTurkmen} $0
|
|
|
|
SectionSetSize ${SecDTurkmen} 0
|
|
|
|
${endif}
|
2015-01-09 01:49:41 +00:00
|
|
|
StrCpy $Search "tr_TR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDTurkish} $0
|
|
|
|
SectionSetSize ${SecDTurkish} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "uk_UA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDUkrainian} $0
|
|
|
|
SectionSetSize ${SecDUkrainian} 0
|
|
|
|
${endif}
|
2012-11-11 06:12:43 +00:00
|
|
|
StrCpy $Search "ur_PK"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-05-31 02:27:08 +00:00
|
|
|
SectionSetFlags ${SecDUrdu} $0
|
|
|
|
SectionSetSize ${SecDUrdu} 0
|
2012-11-11 06:12:43 +00:00
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "vi_VN"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecDVietnamese} $0
|
|
|
|
SectionSetSize ${SecDVietnamese} 0
|
|
|
|
${endif}
|
|
|
|
|
|
|
|
# select sections of already installed thesaurus dictionaries, make them read-only
|
|
|
|
# and set the necessary size to 0 bytes
|
|
|
|
StrCpy $String $FoundThes
|
2018-02-17 05:05:13 +00:00
|
|
|
StrCpy $Search "ar_SA"
|
2012-11-10 06:05:19 +00:00
|
|
|
Call StrPoint # function from LyXUtils.nsh
|
2018-02-17 05:05:13 +00:00
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTArabic} $0
|
|
|
|
SectionSetSize ${SecTArabic} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "bg_BG"
|
|
|
|
Call StrPoint
|
2012-11-10 06:05:19 +00:00
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTBulgarian} $0
|
|
|
|
SectionSetSize ${SecTBulgarian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ca_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTCatalan} $0
|
|
|
|
SectionSetSize ${SecTCatalan} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "cs_CZ"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTCzech} $0
|
|
|
|
SectionSetSize ${SecTCzech} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "da_DK"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTDanish} $0
|
|
|
|
SectionSetSize ${SecTDanish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "de_DE"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTGermanDA} $0
|
|
|
|
SectionSetSize ${SecTGermanDA} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "de_CH"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTGermanCH} $0
|
|
|
|
SectionSetSize ${SecTGermanCH} 0
|
|
|
|
${endif}
|
2016-10-12 00:24:01 +00:00
|
|
|
StrCpy $Search "en_AU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTEnglishAU} $0
|
|
|
|
SectionSetSize ${SecTEnglishAU} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "en_GB"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTEnglishGB} $0
|
|
|
|
SectionSetSize ${SecTEnglishGB} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "en_US"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2016-10-12 00:24:01 +00:00
|
|
|
SectionSetFlags ${SecTEnglishUS} $0
|
|
|
|
SectionSetSize ${SecTEnglishUS} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "es_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTSpanish} $0
|
|
|
|
SectionSetSize ${SecTSpanish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "fr_FR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTFrench} $0
|
|
|
|
SectionSetSize ${SecTFrench} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ga_IR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTGaelic} $0
|
|
|
|
SectionSetSize ${SecTGaelic} 0
|
|
|
|
${endif}
|
2014-03-06 23:24:28 +00:00
|
|
|
StrCpy $Search "gl_ES"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTGalician} $0
|
|
|
|
SectionSetSize ${SecTGalician} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "el_GR"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTGreek} $0
|
|
|
|
SectionSetSize ${SecTGreek} 0
|
|
|
|
${endif}
|
2013-04-28 04:03:13 +00:00
|
|
|
StrCpy $Search "is_IS"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTIcelandic} $0
|
|
|
|
SectionSetSize ${SecTIcelandic} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "it_IT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTItalian} $0
|
|
|
|
SectionSetSize ${SecTItalian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "hu_HU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTHungarian} $0
|
|
|
|
SectionSetSize ${SecTHungarian} 0
|
|
|
|
${endif}
|
2013-04-07 23:17:23 +00:00
|
|
|
StrCpy $Search "nb_NO"
|
2012-11-10 06:05:19 +00:00
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2013-04-07 23:17:23 +00:00
|
|
|
SectionSetFlags ${SecTNorwegianNB} $0
|
|
|
|
SectionSetSize ${SecTNorwegianNB} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
2016-05-19 01:28:31 +00:00
|
|
|
StrCpy $Search "nn_NO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTNorwegianNN} $0
|
|
|
|
SectionSetSize ${SecTNorwegianNN} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $Search "pl_PL"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTPolish} $0
|
|
|
|
SectionSetSize ${SecTPolish} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "pt_PT"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTPortuguese} $0
|
|
|
|
SectionSetSize ${SecTPortuguese} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ro_RO"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTRomanian} $0
|
|
|
|
SectionSetSize ${SecTRomanian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "ru_RU"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTRussian} $0
|
|
|
|
SectionSetSize ${SecTRussian} 0
|
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sl_SI"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2012-11-21 22:48:33 +00:00
|
|
|
SectionSetFlags ${SecTSlovenian} $0
|
|
|
|
SectionSetSize ${SecTSlovenian} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sk_SK"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
2012-11-21 22:48:33 +00:00
|
|
|
SectionSetFlags ${SecTSlovakian} $0
|
|
|
|
SectionSetSize ${SecTSlovakian} 0
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "sv_SE"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTSwedish} $0
|
|
|
|
SectionSetSize ${SecTSwedish} 0
|
2013-04-28 04:03:13 +00:00
|
|
|
${endif}
|
|
|
|
StrCpy $Search "uk_UA"
|
|
|
|
Call StrPoint
|
|
|
|
${if} $Pointer != "-1"
|
|
|
|
IntOp $0 ${SF_SELECTED} | ${SF_RO}
|
|
|
|
SectionSetFlags ${SecTUkrainian} $0
|
|
|
|
SectionSetSize ${SecTUkrainian} 0
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
|
|
|
|
${IfNot} ${Silent}
|
|
|
|
Banner::destroy
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
# this function is called at first after starting the uninstaller
|
|
|
|
Function un.onInit
|
|
|
|
|
|
|
|
!insertmacro MULTIUSER_UNINIT
|
|
|
|
|
|
|
|
# Check that LyX is not currently running
|
2017-12-06 14:28:22 +00:00
|
|
|
FindProcDLL::FindProc "${BIN_LYX}"
|
2012-11-10 06:05:19 +00:00
|
|
|
${if} $R0 == "1"
|
2014-02-18 01:15:53 +00:00
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(UnInstallRunning)" /SD IDOK
|
2012-11-10 06:05:19 +00:00
|
|
|
Abort
|
|
|
|
${endif}
|
|
|
|
|
|
|
|
# set registry root key
|
|
|
|
${if} $MultiUser.Privileges == "Admin"
|
|
|
|
${orif} $MultiUser.Privileges == "Power"
|
|
|
|
SetShellVarContext all
|
|
|
|
${else}
|
|
|
|
SetShellVarContext current
|
|
|
|
${endif}
|
|
|
|
|
|
|
|
# Ascertain whether the user has sufficient privileges to uninstall.
|
|
|
|
# abort when LyX was installed with admin permissions but the user doesn't have administrator privileges
|
|
|
|
ReadRegStr $0 HKLM "${APP_UNINST_KEY}" "DisplayVersion"
|
|
|
|
${if} $0 != ""
|
|
|
|
${andif} $MultiUser.Privileges != "Admin"
|
|
|
|
${andif} $MultiUser.Privileges != "Power"
|
2014-02-18 01:15:53 +00:00
|
|
|
MessageBox MB_OK|MB_ICONSTOP "$(UnNotAdminLabel)" /SD IDOK
|
2012-11-10 06:05:19 +00:00
|
|
|
Abort
|
|
|
|
${endif}
|
2012-11-11 17:07:55 +00:00
|
|
|
# warning when LyX couldn't be found in the registry
|
2012-11-10 06:05:19 +00:00
|
|
|
${if} $0 == "" # check in HKCU
|
|
|
|
ReadRegStr $0 HKCU "${APP_UNINST_KEY}" "DisplayVersion"
|
|
|
|
${if} $0 == ""
|
2014-02-18 01:15:53 +00:00
|
|
|
MessageBox MB_OK|MB_ICONEXCLAMATION "$(UnNotInRegistryLabel)" /SD IDOK
|
2012-11-10 06:05:19 +00:00
|
|
|
${endif}
|
|
|
|
${endif}
|
|
|
|
|
|
|
|
# Macro to investigate name of LyX's preferences folders to be able remove them
|
|
|
|
!insertmacro UnAppPreSuff $AppPre $AppSuff # macro from LyXUtils.nsh
|
|
|
|
|
|
|
|
# test if MiKTeX was installed together with LyX
|
2012-11-11 06:12:43 +00:00
|
|
|
ReadRegStr $0 SHCTX "SOFTWARE\MiKTeX.org\MiKTeX" "OnlyWithLyX"
|
2012-11-10 06:05:19 +00:00
|
|
|
${if} $0 == "Yes${APP_SERIES_KEY}"
|
|
|
|
SectionSetText 2 "MiKTeX" # names the corersponding uninstaller section
|
|
|
|
StrCpy $LaTeXInstalled "MiKTeX"
|
|
|
|
${else}
|
|
|
|
SectionSetText 2 "" # hides the corresponding uninstaller section
|
|
|
|
${endif}
|
|
|
|
|
|
|
|
# question message if the user really wants to uninstall LyX
|
2014-02-18 01:15:53 +00:00
|
|
|
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "$(UnReallyRemoveLabel)" /SD IDYES IDYES +2 # continue if yes
|
2012-11-10 06:05:19 +00:00
|
|
|
Abort
|
|
|
|
|
|
|
|
FunctionEnd
|