From 47b5b3e410abe581fde14a9c9621f0cb10b2d124 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Fri, 22 Mar 2019 01:06:56 +0100 Subject: [PATCH] installer: remove unsupported TeX distributions MiKTeX 2.8 and TeXLive 2014 are since a while not supported --- .../packaging/installer/include/LaTeX.nsh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/development/Win32/packaging/installer/include/LaTeX.nsh b/development/Win32/packaging/installer/include/LaTeX.nsh index d7e527bd72..a94f269f9d 100644 --- a/development/Win32/packaging/installer/include/LaTeX.nsh +++ b/development/Win32/packaging/installer/include/LaTeX.nsh @@ -54,10 +54,6 @@ Function LaTeXActions IntOp $0 $0 + 1 Goto loop32 done32: - ${if} $String == "2.8" - StrCpy $MiKTeXVersion "2.8" - StrCpy $LaTeXName "MiKTeX 2.8" - ${endif} ${if} $String == "2.9" StrCpy $MiKTeXVersion "2.9" StrCpy $LaTeXName "MiKTeX 2.9" @@ -78,10 +74,6 @@ Function LaTeXActions IntOp $0 $0 + 1 Goto loop64 done64: - ${if} $String == "2.8" - StrCpy $MiKTeXVersion "2.8" - StrCpy $LaTeXName "MiKTeX 2.8" - ${endif} ${if} $String == "2.9" StrCpy $MiKTeXVersion "2.9" StrCpy $LaTeXName "MiKTeX 2.9" @@ -110,10 +102,6 @@ Function LaTeXActions IntOp $0 $0 + 1 Goto loopB doneB: - ${if} $String == "2.8" - StrCpy $MiKTeXVersion "2.8" - StrCpy $LaTeXName "MiKTeX 2.8" - ${endif} ${if} $String == "2.9" StrCpy $MiKTeXVersion "2.9" StrCpy $LaTeXName "MiKTeX 2.9" @@ -176,19 +164,12 @@ Function LaTeXActions ${endif} # finally set the name ${if} $PathLaTeX != "" - ${andif} $LaTeXName != "MiKTeX 2.8" ${andif} $LaTeXName != "MiKTeX 2.9" StrCpy $LaTeXInstalled "TeXLive" ReadRegStr $String HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeXLive2015" "DisplayVersion" ${if} $String == "" ReadRegStr $String HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\TeXLive2015" "DisplayVersion" ${endif} - ${if} $String == "" - ReadRegStr $String HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeXLive2014" "DisplayVersion" - ${endif} - ${if} $String == "" - ReadRegStr $String HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\TeXLive2014" "DisplayVersion" - ${endif} ${if} $String != "" StrCpy $LaTeXName "TeXLive $String" ${else} -- 2.39.5