From 9473a7e6f8d72bea90ec704166547b4dc372fdfd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Wed, 21 Dec 2011 22:09:24 +0000 Subject: [PATCH] installer: - fix an uninstall issue - fix a typo - update settings git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40538 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/Win32/packaging/installer/settings.nsh | 4 ++-- development/Win32/packaging/installer/setup/configure.nsh | 2 +- development/Win32/packaging/installer/setup/uninstall.nsh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/development/Win32/packaging/installer/settings.nsh b/development/Win32/packaging/installer/settings.nsh index 686cf27913..e0367e9315 100644 --- a/development/Win32/packaging/installer/settings.nsh +++ b/development/Win32/packaging/installer/settings.nsh @@ -12,7 +12,7 @@ These typically need to be modified for each LyX release !define APP_VERSION_MAJOR 2 !define APP_VERSION_MINOR 0 !define APP_VERSION_REVISION 2 -!define APP_VERSION_BUILD 1 # Start with 1 for the installer releases of each version +!define APP_VERSION_BUILD 3 # Start with 1 for the installer releases of each version !define APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}" # Version to display @@ -50,7 +50,7 @@ These typically need to be modified for each LyX release !define JabRefVersion "2.7" !define MiKTeXDeliveredVersion "2.9" -!define ImageMagickVersion "6.7.3" +!define ImageMagickVersion "6.7.4" # definitions for the Complete installer !if ${SETUPTYPE} == BUNDLE diff --git a/development/Win32/packaging/installer/setup/configure.nsh b/development/Win32/packaging/installer/setup/configure.nsh index 8513dc4798..e1e3658f73 100644 --- a/development/Win32/packaging/installer/setup/configure.nsh +++ b/development/Win32/packaging/installer/setup/configure.nsh @@ -242,7 +242,7 @@ Function StartLyX # the time consuming LaTeX package installation #Exec 'cmd /K " "$INSTDIR\bin\lyx.exe""' - Exec "$INSTDIR\${AppRun}" + Exec "$INSTDIR\${APP_RUN}" FunctionEnd diff --git a/development/Win32/packaging/installer/setup/uninstall.nsh b/development/Win32/packaging/installer/setup/uninstall.nsh index 7553c3151c..763e65ae9f 100644 --- a/development/Win32/packaging/installer/setup/uninstall.nsh +++ b/development/Win32/packaging/installer/setup/uninstall.nsh @@ -71,7 +71,7 @@ Section "un.LyX" un.SecUnProgramFiles # Application folder SetOutPath "$TEMP" - RMDir "$INSTDIR" + RMDir /r "$INSTDIR" # Registry keys DeleteRegKey SHCTX "${APP_REGKEY_SETUP}" -- 2.39.2