From be03816e9e51d9cbef5ea0d26789e457140ffbca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Thu, 22 Nov 2012 20:17:45 +0100 Subject: [PATCH] installer: some simplifications --- .../Win32/packaging/installer/ChangeLog.txt | 4 +- .../packaging/installer/include/detection.nsh | 9 ++-- .../packaging/installer/include/init.nsh | 3 +- .../Win32/packaging/installer/settings.nsh | 7 +-- .../packaging/installer/setup/install.nsh | 50 +++++++++---------- 5 files changed, 34 insertions(+), 39 deletions(-) diff --git a/development/Win32/packaging/installer/ChangeLog.txt b/development/Win32/packaging/installer/ChangeLog.txt index 86a30a43ae..74219ab484 100644 --- a/development/Win32/packaging/installer/ChangeLog.txt +++ b/development/Win32/packaging/installer/ChangeLog.txt @@ -3,7 +3,7 @@ (To benefit from them you must uninstall an already installed LyX 2.0.x and then use this installer.) - updated thesaurus for Slovenian - (need to uninstall to benefit from this) + (need to reinstall LyX to benefit from this) Changelog for LyX-205-4: @@ -38,7 +38,7 @@ Changelog for LyX-205-2: (To benefit from them you must uninstall an already installed LyX 2.0.x and then use this installer.) - updated thesaurus for German - (need to uninstall to benefit from this) + (need to reinstall LyX to benefit from this) - bugfix: remove registry entries of existing LyX version when installing over it - don't allow to install an older LyX version over an existing newer one diff --git a/development/Win32/packaging/installer/include/detection.nsh b/development/Win32/packaging/installer/include/detection.nsh index 3f792dac5d..b9f61af0ed 100644 --- a/development/Win32/packaging/installer/include/detection.nsh +++ b/development/Win32/packaging/installer/include/detection.nsh @@ -24,9 +24,6 @@ Detection of external component locations # #-------------------------- -#Var ReportReturn -#Var CommandLineOutput - Function SearchExternal Call LaTeXActions # function from LaTeX.nsh Call MissingPrograms @@ -150,9 +147,9 @@ Function MissingPrograms ReadRegStr $PathBibTeXEditor HKLM "Software\JabRef" "Path" ${endif} - ${IfNot} ${FileExists} "$PathBibTeXEditor\${BIN_BIBTEXEDITOR}" - StrCpy $PathBibTeXEditor "" - StrCpy $JabRefInstalled == "No" + ${ifnot} ${FileExists} "$PathBibTeXEditor\${BIN_BIBTEXEDITOR}" + StrCpy $PathBibTeXEditor "" + StrCpy $JabRefInstalled == "No" ${else} StrCpy $JabRefInstalled == "Yes" ${endif} diff --git a/development/Win32/packaging/installer/include/init.nsh b/development/Win32/packaging/installer/include/init.nsh index c3876af0da..b7403a5b50 100644 --- a/development/Win32/packaging/installer/include/init.nsh +++ b/development/Win32/packaging/installer/include/init.nsh @@ -58,7 +58,7 @@ SectionEnd !if ${SETUPTYPE} == BUNDLE Section /o "$(SecInstJabRefTitle)" SecInstJabRef - AddSize 12400 + AddSize ${SIZE_JABREF} StrCpy $InstallJabRef "true" SectionEnd !endif @@ -637,7 +637,6 @@ Function .onInit ${EndIf} Call SearchExternal - #Call InitExternal !if ${SETUPTYPE} == BUNDLE # don't let the installer sections appear when the programs are already installed diff --git a/development/Win32/packaging/installer/settings.nsh b/development/Win32/packaging/installer/settings.nsh index 54734b065f..a318f244b9 100644 --- a/development/Win32/packaging/installer/settings.nsh +++ b/development/Win32/packaging/installer/settings.nsh @@ -19,7 +19,7 @@ These typically need to be modified for each LyX release #-------------------------------- # Installer file name -# Typical names for the release are "LyX-201-1-Installer.exe" etc. +# Typical names for the release are "LyX-201-Installer-1.exe" etc. !ifndef ExeFile !define ExeFile "LyX-${APP_VERSION_MAJOR}${APP_VERSION_MINOR}${APP_VERSION_REVISION}-Installer-${APP_VERSION_BUILD}.exe" @@ -55,8 +55,9 @@ These typically need to be modified for each LyX release # definitions for the Complete installer !if ${SETUPTYPE} == BUNDLE !define JabRefInstall "external\JabRef-2.8.1-setup.exe" + !define SIZE_JABREF 12400 !define MiKTeXInstall "$INSTDIR\external\basic-miktex-2.9.4521.exe" - !define SIZE_DOWNLOAD_LATEX 162476 - !define SIZE_LATEX 380000 + #!define SIZE_DOWNLOAD_LATEX 157100 + #!define SIZE_LATEX 600000 !endif diff --git a/development/Win32/packaging/installer/setup/install.nsh b/development/Win32/packaging/installer/setup/install.nsh index 9eb51e199f..ba499651b3 100644 --- a/development/Win32/packaging/installer/setup/install.nsh +++ b/development/Win32/packaging/installer/setup/install.nsh @@ -11,7 +11,6 @@ Installation of program files, dictionaries and external components Var PythonCompileFile Var PythonCompileReturn -#Var DownloadResult Section -ProgramFiles SecProgramFiles @@ -103,34 +102,33 @@ Section -ProgramFiles SecProgramFiles # install JabRef if not already installed and the user selected it # if no BibTeX editor is installed ${if} $PathBibTeXEditor == "" - ${if} $InstallJabRef == "true" - # launch installer - MessageBox MB_OK|MB_ICONINFORMATION "$(JabRefInfo)" - ExecWait "$INSTDIR\${JabRefInstall}" - # test if JabRef is now installed - StrCpy $PathBibTeXEditor "" + ${andif} $InstallJabRef == "true" + # launch installer + MessageBox MB_OK|MB_ICONINFORMATION "$(JabRefInfo)" + ExecWait "$INSTDIR\${JabRefInstall}" + # test if JabRef is now installed + StrCpy $PathBibTeXEditor "" + ${if} $MultiUser.Privileges == "Admin" + ${orif} $MultiUser.Privileges == "Power" + ReadRegStr $PathBibTeXEditor HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "UninstallString" + StrCpy $PathBibTeXEditor $PathBibTeXEditor -14 # remove "\uninstall.exe" + ${else} + # for non-admin users we can only check if it is in the start menu + ReadRegStr $PathBibTeXEditor HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "StartMenu" + ${endif} + ${if} $PathBibTeXEditor == "" + MessageBox MB_OK|MB_ICONEXCLAMATION "$(JabRefError)" + ${else} + # special entry that it was installed together with LyX + # so that we can later uninstall it together with LyX ${if} $MultiUser.Privileges == "Admin" - ${orif} $MultiUser.Privileges == "Power" - ReadRegStr $PathBibTeXEditor HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "UninstallString" - StrCpy $PathBibTeXEditor $PathBibTeXEditor -14 # remove "\uninstall.exe" + ${orif} $MultiUser.Privileges == "Power" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" ${else} - # for non-admin users we can only check if it is in the start menu - ReadRegStr $PathBibTeXEditor HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "StartMenu" + WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" ${endif} - ${if} $PathBibTeXEditor == "" - MessageBox MB_OK|MB_ICONEXCLAMATION "$(JabRefError)" - ${else} - # special entry that it was installed together with LyX - # so that we can later uninstall it together with LyX - ${if} $MultiUser.Privileges == "Admin" - ${orif} $MultiUser.Privileges == "Power" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" - ${else} - WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef ${JabRefVersion}" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" - ${endif} - ${endif} # end if PathBibTeXEditor - ${endif} - ${endif} + ${endif} + ${endif} # end if PathBibTeXEditor !endif # end if BUNDLE # install eLyXer -- 2.39.2