]> git.lyx.org Git - features.git/blob - development/Win32/packaging/installer/setup/configure.nsh
Win installer: several fixes
[features.git] / development / Win32 / packaging / installer / setup / configure.nsh
1 /*
2
3 configure.nsh
4
5 Write registry information and configure LyX
6
7 */
8
9 Var PathPrefix
10
11 #!define SHORTCUT '${APP_NAME} ${APP_SERIES_NAME}.lnk" "$INSTDIR\${APP_RUN}" "" "$INSTDIR\${APP_RUN}" "" "" "" "${APP_INFO}"'
12
13 #--------------------------------
14 # Registry information
15
16 Section -InstallData
17
18   # Registry information
19   WriteRegStr SHCTX ${APP_REGKEY} "" $INSTDIR
20   WriteRegStr SHCTX ${APP_REGKEY} "Version" "${APP_VERSION_NUMBER}"
21   WriteRegStr SHCTX ${APP_REGKEY_SETUP} "LaTeX Path" $PathLaTeX
22   
23   # Start Menu shortcut
24   SetOutPath "$INSTDIR\bin" # this is the folder in which the shortcut is executed
25   # we must assure that the folder is not empty (happens on silent install and can accidentally happen)
26   ${if} $StartmenuFolder == ""
27    StrCpy $StartmenuFolder "${APP_DIR}"
28   ${endif}
29   CreateDirectory "$SMPROGRAMS\$StartmenuFolder"
30   CreateShortCut "$SMPROGRAMS\$StartmenuFolder\${APP_NAME}.lnk" "$INSTDIR\${APP_RUN}" "" "$INSTDIR\${APP_RUN}" "" "" "" "${APP_INFO}"
31   # Link to www.lyx.org and to the Wiki
32   WriteINIStr "$SMPROGRAMS\$StartmenuFolder\${APP_WEBPAGE_INFO}.url" "InternetShortcut" "URL" "${APP_WEBPAGE}"
33   WriteINIStr "$SMPROGRAMS\$StartmenuFolder\${APP_WIKI_INFO}.url" "InternetShortcut" "URL" "${APP_WIKI}"
34   # create desktop icon
35   ${if} $CreateDesktopIcon == "true"
36    SetOutPath "$INSTDIR\bin"
37    CreateShortCut "$DESKTOP\${APP_NAME} ${APP_SERIES_NAME}.lnk" "$INSTDIR\${APP_RUN}" "" "$INSTDIR\${APP_RUN}" "" "" "" "${APP_INFO}"
38   ${endif}
39   
40   # Uninstaller information
41   ${If} $MultiUser.InstallMode == "CurrentUser"
42     WriteRegStr SHCTX ${APP_UNINST_KEY} "DisplayName" "${APP_NAME} ${APP_VERSION} $(TEXT_INSTALL_CURRENTUSER)"
43   ${Else}
44     WriteRegStr SHCTX ${APP_UNINST_KEY} "DisplayName" "${APP_NAME} ${APP_VERSION}"
45   ${EndIf}
46   
47   WriteRegStr SHCTX ${APP_UNINST_KEY} "UninstallString" '"$INSTDIR\${SETUP_UNINSTALLER}"'
48   WriteRegStr SHCTX ${APP_UNINST_KEY} "DisplayVersion" "${APP_VERSION}"
49   WriteRegStr SHCTX ${APP_UNINST_KEY} "DisplayIcon" "$INSTDIR\bin\lyx,0"
50   WriteRegStr SHCTX ${APP_UNINST_KEY} "URLUpdateInfo" "${APP_WEBPAGE}"
51   WriteRegStr SHCTX ${APP_UNINST_KEY} "URLInfoAbout" "http://www.lyx.org/AboutLyX"
52   WriteRegStr SHCTX ${APP_UNINST_KEY} "Publisher" "LyX Team"
53   WriteRegStr SHCTX ${APP_UNINST_KEY} "HelpLink" "http://www.lyx.org/MailingLists"
54   WriteRegDWORD SHCTX ${APP_UNINST_KEY} "NoModify" 0x00000001
55   WriteRegDWORD SHCTX ${APP_UNINST_KEY} "NoRepair" 0x00000001
56   WriteRegStr SHCTX ${APP_UNINST_KEY} "StartMenu" "$SMPROGRAMS\$StartmenuFolder"
57   
58   # if we install over an older existing version, remove the old uninstaller information
59   ${if} $OldVersionNumber < ${APP_SERIES_KEY}
60    DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}$OldVersionNumber"
61    # also delete in the case of an emergency release
62    DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}$OldVersionNumber1"
63   ${endif}
64   
65 SectionEnd
66
67 #--------------------------------
68 # Write LyX configuration file
69
70 Section -Configure
71
72   # Associate .lyx files with LyX for current user or all users
73
74   ${if} $CreateFileAssociations == "true"
75    WriteRegStr SHCTX "${APP_DIR_REGKEY}" "" "$INSTDIR\${APP_RUN}"
76   ${endif}
77
78   # Write information about file type
79   #!define REG_FILETYPE 'WriteRegStr SHCTX "Software\Classes\${APP_REGNAME_DOC}"'
80   
81   ${if} $CreateFileAssociations == "true"
82    WriteRegStr SHCTX "${APP_DIR_REGKEY}" "OnlyWithLyX" "Yes${APP_SERIES_KEY}" # special entry to test if they were registered by this LyX version
83    WriteRegStr SHCTX "Software\Classes\${APP_REGNAME_DOC}" "" "${APP_NAME} Document"
84    WriteRegStr SHCTX "Software\Classes\${APP_REGNAME_DOC}\DefaultIcon" "" "$INSTDIR\${APP_RUN},0"
85    WriteRegStr SHCTX "Software\Classes\${APP_REGNAME_DOC}\Shell\open\command" "" '"$INSTDIR\${APP_RUN}" "%1"'
86    # we need to update also the automatically created entry about the lyx.exe
87    # otherwise .lyx-files will could be opened with an older LyX version
88    ReadRegStr $0 SHCTX "Software\Classes\Applications\${BIN_LYX}\shell\open\command" ""
89    ${if} $0 != "" # if something was found
90     WriteRegStr SHCTX "Software\Classes\Applications\${BIN_LYX}\shell\open\command" "" '"$INSTDIR\${APP_RUN}" "%1"'
91    ${endif}
92    # .lyx
93    WriteRegStr SHCTX "Software\Classes\${APP_EXT}" "" "${APP_REGNAME_DOC}"
94    WriteRegStr SHCTX "Software\Classes\${APP_EXT}" "Content Type" "${APP_MIME_TYPE}"
95    # .lyx13
96    WriteRegStr SHCTX "Software\Classes\${APP_EXT}13" "" "${APP_REGNAME_DOC}"
97    WriteRegStr SHCTX "Software\Classes\${APP_EXT}13" "Content Type" "${APP_MIME_TYPE}"
98    # .lyx14
99    WriteRegStr SHCTX "Software\Classes\${APP_EXT}14" "" "${APP_REGNAME_DOC}"
100    WriteRegStr SHCTX "Software\Classes\${APP_EXT}14" "Content Type" "${APP_MIME_TYPE}"
101    # .lyx15
102    WriteRegStr SHCTX "Software\Classes\${APP_EXT}15" "" "${APP_REGNAME_DOC}"
103    WriteRegStr SHCTX "Software\Classes\${APP_EXT}15" "Content Type" "${APP_MIME_TYPE}"
104    # .lyx16
105    WriteRegStr SHCTX "Software\Classes\${APP_EXT}16" "" "${APP_REGNAME_DOC}"
106    WriteRegStr SHCTX "Software\Classes\${APP_EXT}16" "Content Type" "${APP_MIME_TYPE}"
107    # .lyx20
108    WriteRegStr SHCTX "Software\Classes\${APP_EXT}20" "" "${APP_REGNAME_DOC}"
109    WriteRegStr SHCTX "Software\Classes\${APP_EXT}20" "Content Type" "${APP_MIME_TYPE}"
110    # .lyx21 don't set this, because this is designed to be opened with LyX 2.1.x
111   
112    # Refresh shell
113    ${RefreshShellIcons}
114   ${endif}
115   
116   # Install standard lyxrc.dist file
117   #SetOutPath "$INSTDIR\Resources"
118   #File "${FILES_DEPS}\Resources\lyxrc.dist"
119
120   # create the path prefix
121   # $$ represents a literal $ in an NSIS string
122   StrCpy $PathPrefix "$$LyXDir\bin;$$LyXDir\Python;$$LyXDir\Python\Lib;$$LyXDir\Perl\bin;$$LyXDir\imagemagick"
123   
124   ${if} $PathLaTeX != ""
125     StrCpy $PathPrefix "$PathPrefix;$PathLaTeX"
126   ${EndIf}
127   ${if} $PSVPath != ""
128     StrCpy $PathPrefix "$PathPrefix;$PSVPath"
129   ${endif}
130   ${if} $EditorPath != ""
131     StrCpy $PathPrefix "$PathPrefix;$EditorPath"
132   ${endif}
133   ${if} $ImageEditorPath != ""
134     StrCpy $PathPrefix "$PathPrefix;$ImageEditorPath"
135   ${endif}
136   ${if} $GhostscriptPath != ""
137    StrCpy $PathPrefix "$PathPrefix;$GhostscriptPath"
138   ${endif}
139   ${if} $SVGPath != ""
140    StrCpy $PathPrefix "$PathPrefix;$SVGPath"
141   ${endif}
142   ${if} $GnumericPath != ""
143    StrCpy $PathPrefix "$PathPrefix;$GnumericPath"
144   ${endif}
145   ${if} $PathBibTeXEditor != ""
146     StrCpy $PathPrefix "$PathPrefix;$PathBibTeXEditor"
147   ${EndIf}
148   ${if} $PandocPath != ""
149    StrCpy $PathPrefix "$PathPrefix;$PandocPath"
150   ${endif}
151   ${if} $LilyPondPath != ""
152    StrCpy $PathPrefix "$PathPrefix;$LilyPondPath"
153   ${endif}
154   
155   # Set the path prefix in lyxrc.dist
156   ClearErrors
157   Delete "$INSTDIR\Resources\lyxrc.dist"
158   FileOpen $R1 "$INSTDIR\Resources\lyxrc.dist" w
159   # set the format to the latest LyXRC format
160   FileWrite $R1 'Format 19$\r$\n'
161   # set some general things
162   FileWrite $R1 '\screen_zoom 120$\r$\n'
163   ${if} "$PathPrefix" != ""
164    FileWrite $R1 '\path_prefix "$PathPrefix"$\r$\n'
165   ${endif}
166   
167   # use pdfview for all types of PDF files
168   FileWrite $R1 '\format "pdf5" "pdf" "PDF (LuaTeX)" "u" "pdfview" "" "document,vector,menu=export" "application/pdf"$\r$\n\
169                  \format "pdf4" "pdf" "PDF (XeTeX)" "X" "pdfview" "" "document,vector,menu=export" "application/pdf"$\r$\n\
170                  \format "pdf3" "pdf" "PDF (dvipdfm)" "m" "pdfview" "" "document,vector,menu=export" "application/pdf"$\r$\n\
171                  \format "pdf2" "pdf" "PDF (pdflatex)" "F" "pdfview" "" "document,vector,menu=export" "application/pdf"$\r$\n\
172                  \format "pdf" "pdf" "PDF (ps2pdf)" "P" "pdfview" "" "document,vector,menu=export" "application/pdf"$\r$\n'
173   
174   # use Inkscape to edit PDF and EPS images
175   ${if} $SVGPath != ""
176    FileWrite $R1 '\format "pdf6" "pdf" "PDF (graphics)" "" "auto" "inkscape" "vector" "application/pdf"$\r$\n\
177                                   \format "eps" "eps" "EPS" "" "auto" "inkscape" "vector" "image/x-eps"$\r$\n'
178   ${endif}
179   
180   # set image editors
181   ${if} $ImageEditor == "Gimp"
182    FileWrite $R1 '\format "gif" "gif" "GIF" "" "auto" "gimp-2.8" "" "image/gif"$\r$\n\
183                                   \format "jpg" "jpg, jpeg" "JPEG" "" "auto" "gimp-2.8" "" "image/jpeg"$\r$\n\
184                                   \format "png" "png" "PNG" "" "auto" "gimp-2.8" "" "image/x-png"'
185   ${endif}
186   ${if} $ImageEditor == "Krita"
187    FileWrite $R1 '\format "gif" "gif" "GIF" "" "auto" "krita" "" "image/gif"$\r$\n\
188                                   \format "jpg" "jpg, jpeg" "JPEG" "" "auto" "krita" "" "image/jpeg"$\r$\n\
189                                   \format "png" "png" "PNG" "" "auto" "krita" "" "image/x-png"'
190   ${endif}
191   
192   # if Inkscape is not available Imagemagick will be used to convert WMF/EMF files
193   # We need to specify a resolution for the converter otherwise 1024 dpi are used and
194   # eps2pdf takes ages. 300 dpi are a good compromise for speed and size.
195   ${if} $SVGPath == ""
196    FileWrite $R1 '\converter "wmf" "eps" "convert -density 300 $$$$i $$$$o" ""$\r$\n\
197          \converter "emf" "eps" "convert -density 300 $$$$i $$$$o" ""$\r$\n'
198   ${endif}
199   
200   # if LilyPondPath was found
201   # We need to add these entris because python scripts can only be executed
202   # if the full path is given.
203   ${if} $LilyPondPath != ""
204    FileWrite $R1 '\format "lilypond-book" "lytex" "LilyPond book (LaTeX)" "" "" "auto" "document,menu=export" ""$\r$\n\
205                   \converter "lilypond-book" "pdflatex" "python \"$LilyPondPath\\lilypond-book.py\" --safe --pdf --latex-program=pdflatex --lily-output-dir=ly-pdf $$$$i" ""$\r$\n\
206                   \converter "lilypond-book" "xetex" "python \"$LilyPondPath\\lilypond-book.py\" --safe --pdf --latex-program=xelatex --lily-output-dir=ly-pdf $$$$i" ""$\r$\n\
207                   \converter "lilypond-book" "luatex" "python \"$LilyPondPath\\lilypond-book.py\" --safe --pdf --latex-program=lualatex --lily-output-dir=ly-pdf $$$$i" ""$\r$\n\
208                   \converter "lilypond-book" "latex" "python \"$LilyPondPath\\lilypond-book.py\" --safe --lily-output-dir=ly-eps $$$$i" ""$\r$\n'
209   ${endif}
210   FileClose $R1
211   IfErrors 0 +2
212    MessageBox MB_OK|MB_ICONEXCLAMATION "$(ModifyingConfigureFailed)" /SD IDOK
213   ClearErrors
214   
215   # for texindy the path to the perl.exe must unfortunately be in Windows' PATH variable
216   ${if} $MultiUser.Privileges != "Admin"
217   ${andif} $MultiUser.Privileges != "Power"
218    # call the non-admin version
219    ${EnvVarUpdate} $0 "PATH" "A" "HKCU" "$INSTDIR\Perl\bin"
220   ${else}
221    ${EnvVarUpdate} $0 "PATH" "A" "HKLM" "$INSTDIR\Perl\bin"
222   ${endif}
223
224 SectionEnd
225
226 #--------------------------------
227 # Run the LyX configure.py script, so MiKTeX can download its packages
228
229 Var ConfigureReturn
230
231 Section -ConfigureScript
232
233   SetOutPath "$INSTDIR\Resources"
234   
235   # ask to update MiKTeX
236   ${if} $LaTeXInstalled == "MiKTeX"
237    Call UpdateMiKTeX # function from latex.nsh
238    # install all necessary packages at once because this is much faster then to install the packages one by one
239    DetailPrint $(TEXT_CONFIGURE_LYX)
240    ${if} $MultiUser.Privileges != "Admin"
241    ${andif} $MultiUser.Privileges != "Power"
242     # call the non-admin version
243     # at first we need to synchronize the package database
244     nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--verbose" "--update-db"'
245     nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--verbose" "--install-some=$INSTDIR\Resources\Packages.txt"'
246    ${else}
247     ${if} $MiKTeXUser != "HKCU" # call the admin version
248      nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--admin" "--verbose" "--update-db"'
249      nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--admin" "--verbose" "--install-some=$INSTDIR\Resources\Packages.txt"'
250     ${else}
251      nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--verbose" "--update-db"'
252      nsExec::ExecToLog '"$PathLaTeX\mpm.exe" "--verbose" "--install-some=$INSTDIR\Resources\Packages.txt"'
253     ${endif}
254    ${endif}
255   ${endif}
256   
257   DetailPrint $(TEXT_CONFIGURE_LYX)
258   nsExec::ExecToLog '"$INSTDIR\Python\python.exe" "$INSTDIR\Resources\configure.py"'
259   # $ConfigureReturn is "0" if successful, otherwise "1"
260   Pop $ConfigureReturn # Return value
261
262 SectionEnd
263
264 #--------------------------------
265 # Desktop shortcut
266
267 Function StartLyX
268
269   # run LyX in a command line window to give the users feedback about
270   # the time consuming LaTeX package installation
271   
272   #Exec 'cmd /K " "$INSTDIR\bin\lyx.exe""'
273   Exec "$INSTDIR\${APP_RUN}"
274
275 FunctionEnd
276
277 /*Function CheckDesktopShortcut
278
279   # Enable desktop icon creation when there is an icon already
280   # Old shortcuts need to be updated
281   
282   ${If} ${FileExists} "$DESKTOP\${APP_NAME} ${APP_SERIES_NAME}.lnk"
283     ${NSD_SetState} $mui.FinishPage.ShowReadme ${BST_CHECKED}
284   ${EndIf}
285
286 FunctionEnd
287
288 Function CreateDesktopShortcut
289
290   # Desktop icon creation is an option on the finish page
291   SetOutPath "$INSTDIR\bin"
292   CreateShortCut "$DESKTOP\${APP_NAME} ${APP_SERIES_NAME}.lnk" "$INSTDIR\${APP_RUN}" "" "$INSTDIR\${APP_RUN}" "" "" "" "${APP_INFO}"
293
294 FunctionEnd*/
295