]> git.lyx.org Git - lyx.git/blobdiff - development/Win32/packaging/installer/LyXWinInstaller/LyXInstaller-update.nsi
Changed comment character from ';' to '#*
[lyx.git] / development / Win32 / packaging / installer / LyXWinInstaller / LyXInstaller-update.nsi
index 55263abaa2a783dd5ba6e6d6fecc9d24dea87ba7..ee5e3f953a2aa8e1723f741a65a98d4e54ec9f40 100644 (file)
@@ -1,42 +1,42 @@
-; Lyx for Windows, NSIS v2 series installer script
+# Lyx for Windows, NSIS v2 series installer script
 
-; File LyXInstaller-update.nsi
-; This file is part of LyX, the document processor.
-; http://www.lyx.org/
-; Licence details can be found in the file COPYING or copy at
-; http://www.lyx.org/about/license.php3
+# File LyXInstaller-update.nsi
+# This file is part of LyX, the document processor.
+# http://www.lyx.org/
+# Licence details can be found in the file COPYING or copy at
+# http://www.lyx.org/about/license.php3
 
-; Author Uwe Stöhr
-; Full author contact details are available in file CREDITS or copy at
-; http://www.lyx.org/about/credits.php
+# Author Uwe Stöhr
+# Full author contact details are available in file CREDITS or copy at
+# http://www.lyx.org/about/credits.php
 
-; This script requires NSIS 2.25 and newer
-; http://nsis.sourceforge.net/
-;--------------------------------
+# This script requires NSIS 2.25 and newer
+# http://nsis.sourceforge.net/
+#--------------------------------
 
-; Do a Cyclic Redundancy Check to make sure the installer
-; was not corrupted by the download.
+# Do a Cyclic Redundancy Check to make sure the installer
+# was not corrupted by the download.
 CRCCheck force
 
-; Make the installer as small as possible.
+# Make the installer as small as possible.
 SetCompressor lzma
 
-;--------------------------------
-; You should need to change only these macros...
+#--------------------------------
+# You should need to change only these macros...
 
 !define INSTALLER_VERSION "Update"
 !define INSTALLER2_VERSION "Small"
 !define INSTALLER3_VERSION "Complete"
 
-; load the settings
+# load the settings
 !include "Settings.nsh"
 
-;--------------------------------
-; variables only used in this installer version
+#--------------------------------
+# variables only used in this installer version
 
 Var INSTDIR_NEW
 Var INSTDIR_OLD
-; Variables used by all installer versions
+# Variables used by all installer versions
 Var AspellInstallYes
 Var AspellBaseReg
 Var AspellMessage
@@ -71,8 +71,8 @@ Var Search
 Var UserList
 Var UserName
 
-;--------------------------------
-; load some NSIS libraries
+#--------------------------------
+# load some NSIS libraries
 !include "MUI.nsh"
 !include "LogicLib.nsh"
 !include "FileFunc.nsh"
@@ -82,21 +82,21 @@ Var UserName
 !include "WordFunc.nsh"
 !insertmacro WordReplace
 
-; Set of various macros and functions
+# Set of various macros and functions
 !include "LyXUtils.nsh"
 
-; list with modified files
+# list with modified files
 !include "Updated.nsh"
 
-; list with deleted files
+# list with deleted files
 !include "Deleted.nsh"
 
-; Function for page to install Aspell dictionaries
+# Function for page to install Aspell dictionaries
 !include "Aspell.nsh"
 
-;--------------------------------
+#--------------------------------
 
-; Remember the installer language
+# Remember the installer language
 !define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
 !define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
 !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
@@ -108,41 +108,41 @@ Var UserName
 !define MUI_UNICON "${PRODUCT_DIR}\icons\lyx.ico"
 !define MUI_WELCOMEFINISHPAGE_BITMAP "${VERSION_BITMAP}"
 
-; Welcome page
+# Welcome page
 !define MUI_WELCOMEPAGE_TEXT "$(WelcomePageText)"
 !insertmacro MUI_PAGE_WELCOME
 
-; Show the license.
+# Show the license.
 !insertmacro MUI_PAGE_LICENSE "${PRODUCT_LICENSE_FILE}"
 
-; Define which components to install.
+# Define which components to install.
 !insertmacro MUI_PAGE_COMPONENTS
 
-; Specify where to install program shortcuts.
+# Specify where to install program shortcuts.
 !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
 !define MUI_STARTMENUPAGE_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
 !define MUI_STARTMENUPAGE_DEFAULTFOLDER "LyX ${PRODUCT_VERSION}"
 !insertmacro MUI_PAGE_STARTMENU ${PRODUCT_NAME} $StartmenuFolder
 
-; Watch the components being installed.
+# Watch the components being installed.
 !insertmacro MUI_PAGE_INSTFILES
 
-; Finish page
+# Finish page
 !define MUI_FINISHPAGE_RUN 
 !define MUI_FINISHPAGE_TEXT "$(FinishPageMessage)"
 !define MUI_FINISHPAGE_RUN_TEXT "$(FinishPageRun)"
 !define MUI_FINISHPAGE_RUN_FUNCTION "LaunchProduct"
 !insertmacro MUI_PAGE_FINISH
 
-; The uninstaller.
+# The uninstaller.
 !insertmacro MUI_UNPAGE_COMPONENTS
 !insertmacro MUI_UNPAGE_INSTFILES
 
-;--------------------------------
-; Languages
+#--------------------------------
+# Languages
 
-!insertmacro MUI_LANGUAGE "English" ; first language is the default language
+!insertmacro MUI_LANGUAGE "English" # first language is the default language
 !insertmacro MUI_LANGUAGE "Danish"
 !insertmacro MUI_LANGUAGE "Dutch"
 !insertmacro MUI_LANGUAGE "French"
@@ -176,15 +176,15 @@ Var UserName
 
 LicenseData "$(LyXLicenseData)"
 
-;--------------------------------
-; Reserve Files
+#--------------------------------
+# Reserve Files
 
-; These files are inserted before other files in the data block
+# These files are inserted before other files in the data block
 !insertmacro MUI_RESERVEFILE_LANGDLL
 !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
 
-;--------------------------------
-; Installer sections
+#--------------------------------
+# Installer sections
 
 Section "!${PRODUCT_NAME}" SecCore
   SectionIn RO
@@ -196,30 +196,30 @@ Section "$(SecDesktopTitle)" SecDesktop
   StrCpy $CreateDesktopIcon "true"
 SectionEnd
 
-; Section descriptions
+# Section descriptions
 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
 !insertmacro MUI_DESCRIPTION_TEXT ${SecCore} "$(SecCoreDescription)"
 !insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} "$(SecDesktopDescription)"
 !insertmacro MUI_FUNCTION_DESCRIPTION_END
 
-; the installation section
+# the installation section
 !include "InstallActions-update.nsh"
 
-;--------------------------------
-; This hook function is called internally by NSIS on installer startup
+#--------------------------------
+# This hook function is called internally by NSIS on installer startup
 Function .onInit
 
-  ; Check that LyX is not currently running
+  # Check that LyX is not currently running
   FindProcDLL::FindProc "lyx.exe"
   ${if} $R0 == "1"
    MessageBox MB_OK|MB_ICONSTOP "$(UnInstallRunning)"
    Abort
   ${endif}
   
-  ; set the installer language to the Windows locale language
+  # set the installer language to the Windows locale language
   System::Call "kernel32::GetUserDefaultLangID()i.a"
   
-  ; Check that the installer is not currently running
+  # Check that the installer is not currently running
   System::Call 'kernel32::CreateMutexA(i 0, i 0, t "${INSTALLER_EXE}.Instance") i .r1 ?e'
   Pop $R0
   ${if} $R0 != "0"
@@ -237,7 +237,7 @@ Function .onInit
    Abort
   ${endif}
   
-  ; check where LyX is installed
+  # check where LyX is installed
   ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY_OLD}" "DisplayIcon"
   ${if} $0 != ""
     SetShellVarContext all
@@ -253,38 +253,38 @@ Function .onInit
     MessageBox MB_OK|MB_ICONSTOP "$(UpdateNotAllowed)"
     Abort
    ${endif}
-  ${endif} ; end if $0 == 0
-  ${if} $0 != "" ; if it is found
+  ${endif} # end if $0 == 0
+  ${if} $0 != "" # if it is found
    StrCpy $INSTDIR $0
-   StrCpy $INSTDIR $INSTDIR -12 ; delete the string "\bin\lyx.exe" or "\bin\lyx.bat"
+   StrCpy $INSTDIR $INSTDIR -12 # delete the string "\bin\lyx.exe" or "\bin\lyx.bat"
   ${endif}
   
-  ; abort if the user doesn't have administrator privileges but LyX was installed as admin
+  # abort if the user doesn't have administrator privileges but LyX was installed as admin
   StrCpy $Answer ""
   StrCpy $UserName ""
-  !insertmacro IsUserAdmin $Answer $UserName ; macro from LyXUtils.nsh
+  !insertmacro IsUserAdmin $Answer $UserName # macro from LyXUtils.nsh
   ${if} $Answer != "yes"
   ${andif} $ProductRootKey == "HKLM"
     MessageBox MB_OK|MB_ICONSTOP "$(NotAdmin)"
     Abort
   ${endif}
   
-  ; This can be reset to "true" in section SecDesktop.
+  # This can be reset to "true" in section SecDesktop.
   StrCpy $CreateDesktopIcon "false"
   
   ClearErrors
 FunctionEnd
 
-;--------------------------------
+#--------------------------------
 
 Function LaunchProduct
   Exec ${PRODUCT_BAT}
 FunctionEnd
 
-;--------------------------------
-; The Uninstaller
+#--------------------------------
+# The Uninstaller
 
  !include "Uninstall.nsh"
   
 
-; eof
+# eof