1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ; geany.nsi - this file is part of Geany, a fast and lightweight IDE
4 ; Copyright 2007-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 ; Copyright 2007-2010 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 ; This program is free software; you can redistribute it and/or modify
8 ; it under the terms of the GNU General Public License as published by
9 ; the Free Software Foundation; either version 2 of the License, or
10 ; (at your option) any later version.
12 ; This program is distributed in the hope that it will be useful,
13 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ; GNU General Public License for more details.
17 ; You should have received a copy of the GNU General Public License
18 ; along with this program; if not, write to the Free Software
19 ; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 ; Installer script for Geany (Windows Installer)
24 ; (Script originally generated by the HM NIS Edit Script Wizard)
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28 ; Do a Cyclic Redundancy Check to make sure the installer was not corrupted by the download
30 RequestExecutionLevel user
; set execution level for Windows Vista
35 !define PRODUCT_NAME
"Geany"
36 !define PRODUCT_VERSION
"0.19"
37 !define PRODUCT_VERSION_ID
"0.19.0.0"
38 !define PRODUCT_PUBLISHER
"The Geany developer team"
39 !define PRODUCT_WEB_SITE
"http://www.geany.org/"
40 !define PRODUCT_DIR_REGKEY
"Software\Geany"
41 !define PRODUCT_UNINST_KEY
"Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
42 !define PRODUCT_EXE
"$INSTDIR\bin\Geany.exe"
43 !define PRODUCT_REGNAME
"Geany.ProjectFile"
44 !define PRODUCT_EXT
".geany"
45 !define RESOURCEDIR
"geany-${PRODUCT_VERSION}"
50 VIProductVersion
"${PRODUCT_VERSION_ID}"
51 VIAddVersionKey
"ProductName" "${PRODUCT_NAME}"
52 VIAddVersionKey
"FileVersion" "${PRODUCT_VERSION}"
53 VIAddVersionKey
"ProductVersion" "${PRODUCT_VERSION}"
54 VIAddVersionKey
"LegalCopyright" "Copyright 2005-2010 by the Geany developer team"
55 VIAddVersionKey
"FileDescription" "${PRODUCT_NAME} Installer"
57 BrandingText "$(^NAME) installer (NSIS 2.45)"
58 InstallDir "$PROGRAMFILES\Geany"
59 Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
60 SetCompressor
/SOLID lzma
62 ShowUnInstDetails hide
65 OutFile "geany-${PRODUCT_VERSION}_setup.exe"
67 OutFile "geany-${PRODUCT_VERSION}_nogtk_setup.exe"
80 !define MUI_ABORTWARNING
81 !define MUI_ICON
"icons\geany.ico"
82 !define MUI_UNICON
"${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall-full.ico"
85 !insertmacro MUI_PAGE_WELCOME
87 ;!define MUI_LICENSEPAGE_RADIOBUTTONS
88 !insertmacro MUI_PAGE_LICENSE
"${RESOURCEDIR}\Copying.txt"
90 !insertmacro MUI_PAGE_COMPONENTS
92 !define MUI_PAGE_CUSTOMFUNCTION_LEAVE OnDirLeave
93 !insertmacro MUI_PAGE_DIRECTORY
95 !define MUI_STARTMENUPAGE_DEFAULTFOLDER
"Geany"
96 !define MUI_STARTMENUPAGE_REGISTRY_ROOT
HKLM
97 !define MUI_STARTMENUPAGE_REGISTRY_KEY
"${PRODUCT_UNINST_KEY}"
98 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME
"Start Menu Folder"
99 !insertmacro MUI_PAGE_STARTMENU
${PRODUCT_NAME} "$StartmenuFolder"
101 !insertmacro MUI_PAGE_INSTFILES
103 !define MUI_FINISHPAGE_SHOWREADME
"$INSTDIR\News.txt"
104 !define MUI_FINISHPAGE_SHOWREADME_TEXT
"Show Release Notes"
105 !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
106 !define MUI_FINISHPAGE_RUN
"$INSTDIR\bin\Geany.exe"
107 !define MUI_FINISHPAGE_RUN_NOTCHECKED
108 !insertmacro MUI_PAGE_FINISH
110 !insertmacro MUI_UNPAGE_INSTFILES
; Uninstaller page
111 !insertmacro MUI_LANGUAGE
"English" ; Language file
113 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
114 ; Sections and InstTypes ;
115 ;;;;;;;;;;;;;;;;;;;;;;;;;;;
119 Section "!Program Files" SEC01
123 SetOutPath "$INSTDIR"
124 File "${RESOURCEDIR}\*.txt"
126 SetOutPath "$INSTDIR\bin"
127 File "${RESOURCEDIR}\bin\Geany.exe"
129 SetOutPath "$INSTDIR\data"
130 File "${RESOURCEDIR}\data\GPL-2"
131 File "${RESOURCEDIR}\data\file*"
132 File "${RESOURCEDIR}\data\snippets.conf"
133 File "${RESOURCEDIR}\data\ui_toolbar.xml"
135 SetOutPath "$INSTDIR\share\icons"
136 File /r
"${RESOURCEDIR}\share\icons\*"
138 SetOutPath "$INSTDIR"
140 CreateShortCut "$INSTDIR\Geany.lnk" "$INSTDIR\bin\Geany.exe"
141 !insertmacro MUI_STARTMENU_WRITE_BEGIN
${PRODUCT_NAME}
142 CreateDirectory "$SMPROGRAMS\$StartmenuFolder"
143 CreateShortCut "$SMPROGRAMS\$StartmenuFolder\Geany.lnk" "$INSTDIR\bin\Geany.exe"
144 !insertmacro MUI_STARTMENU_WRITE_END
146 ; register the extension .geany
147 ; write information about file type
148 WriteRegStr SHCTX
"Software\Classes\${PRODUCT_REGNAME}" "" "${PRODUCT_NAME} Project File"
149 WriteRegStr SHCTX
"Software\Classes\${PRODUCT_REGNAME}\DefaultIcon" "" "${PRODUCT_EXE},0"
150 WriteRegStr SHCTX
"Software\Classes\${PRODUCT_REGNAME}\Shell\open\command" "" '"${PRODUCT_EXE}" "%1"'
151 ; write information about file extensions
152 WriteRegStr SHCTX
"Software\Classes\${PRODUCT_EXT}" "" "${PRODUCT_REGNAME}"
154 System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) (0x08000000, 0, 0, 0)'
157 Section "Plugins" SEC02
160 SetOutPath "$INSTDIR\lib"
161 File "${RESOURCEDIR}\lib\*.dll"
164 Section "Language Files" SEC03
166 SetOutPath "$INSTDIR\share\locale"
167 File /r
"${RESOURCEDIR}\share\locale\*"
169 SetOutPath "$INSTDIR\share"
170 File /r
"gtk\share\*"
174 Section "Documentation" SEC04
177 SetOutPath "$INSTDIR"
178 File /r
"${RESOURCEDIR}\doc"
179 WriteIniStr
"$INSTDIR\Documentation.url" "InternetShortcut" "URL" "$INSTDIR\doc\Manual.html"
180 !insertmacro MUI_STARTMENU_WRITE_BEGIN
${PRODUCT_NAME}
181 CreateShortCut "$SMPROGRAMS\$StartmenuFolder\Documentation.lnk" "$INSTDIR\Documentation.url"
182 !insertmacro MUI_STARTMENU_WRITE_END
185 Section "Autocompletion Tags" SEC05
187 SetOutPath "$INSTDIR\data"
189 File "${RESOURCEDIR}\data\php.tags"
190 File "${RESOURCEDIR}\data\pascal.tags"
191 File "${RESOURCEDIR}\data\python.tags"
192 File "${RESOURCEDIR}\data\html_entities.tags"
193 File "${RESOURCEDIR}\data\c99.tags"
196 ; Include GTK runtime library but only if desired from command line
198 Section "GTK 2.16 Runtime Environment" SEC06
201 SetOutPath "$INSTDIR\bin"
203 SetOutPath "$INSTDIR\etc"
205 SetOutPath "$INSTDIR\lib"
210 Section "Context Menus" SEC07
212 WriteRegStr HKCR "*\shell\OpenWithGeany" "" "Open with Geany"
213 WriteRegStr HKCR "*\shell\OpenWithGeany\command" "" '"$INSTDIR\bin\geany.exe" "%1"'
216 Section "Desktop Shortcuts" SEC08
218 CreateShortCut "$DESKTOP\Geany.lnk" "$INSTDIR\bin\Geany.exe"
219 CreateShortCut "$QUICKLAUNCH\Geany.lnk" "$INSTDIR\bin\Geany.exe"
222 Section -AdditionalIcons
224 !insertmacro MUI_STARTMENU_WRITE_BEGIN
${PRODUCT_NAME}
225 WriteIniStr
"$INSTDIR\Website.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
226 CreateShortCut "$SMPROGRAMS\$StartmenuFolder\Website.lnk" "$INSTDIR\Website.url"
227 CreateShortCut "$SMPROGRAMS\$StartmenuFolder\Uninstall.lnk" "$INSTDIR\uninst.exe"
228 !insertmacro MUI_STARTMENU_WRITE_END
232 WriteUninstaller "$INSTDIR\uninst.exe"
233 WriteRegStr SHCTX
"${PRODUCT_DIR_REGKEY}" Path
"$INSTDIR"
234 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "StartMenu" "$SMPROGRAMS\$StartmenuFolder"
235 ${if} $Answer ==
"yes" ; if user is admin
236 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
237 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
238 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\bin\Geany.exe"
239 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
240 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
241 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "URLUpdateInfo" "${PRODUCT_WEB_SITE}"
242 WriteRegStr SHCTX
"${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
243 WriteRegDWORD SHCTX
"${PRODUCT_UNINST_KEY}" "NoModify" 0x00000001
244 WriteRegDWORD SHCTX
"${PRODUCT_UNINST_KEY}" "NoRepair" 0x00000001
249 Delete "$INSTDIR\Website.url"
250 Delete "$INSTDIR\Documentation.url"
251 Delete "$INSTDIR\uninst.exe"
252 Delete "$INSTDIR\News.txt"
253 Delete "$INSTDIR\ReadMe.txt"
254 Delete "$INSTDIR\Thanks.txt"
255 Delete "$INSTDIR\ToDo.txt"
256 Delete "$INSTDIR\Authors.txt"
257 Delete "$INSTDIR\ChangeLog.txt"
258 Delete "$INSTDIR\Copying.txt"
259 Delete "$INSTDIR\Geany.lnk"
261 ; delete start menu entry
262 ReadRegStr $0 SHCTX
"${PRODUCT_UNINST_KEY}" "StartMenu"
265 Delete "$QUICKLAUNCH\Geany.lnk"
266 Delete "$DESKTOP\Geany.lnk"
268 RMDir /r
"$INSTDIR\bin"
269 RMDir /r
"$INSTDIR\doc"
270 RMDir /r
"$INSTDIR\data"
271 RMDir /r
"$INSTDIR\etc"
272 RMDir /r
"$INSTDIR\lib"
273 RMDir /r
"$INSTDIR\share"
276 ; remove .geany file extension
277 ReadRegStr $R0 SHCTX
"Software\Classes\${PRODUCT_EXT}" ""
278 ${if} $R0 ==
"${PRODUCT_REGNAME}"
279 DeleteRegKey SHCTX
"${PRODUCT_EXT}"
280 DeleteRegKey HKCR "${PRODUCT_EXT}"
281 DeleteRegKey SHCTX
"${PRODUCT_REGNAME}"
282 DeleteRegKey HKCR "${PRODUCT_REGNAME}"
285 DeleteRegKey HKCR "*\shell\OpenWithGeany"
287 DeleteRegKey SHCTX
"${PRODUCT_UNINST_KEY}"
288 DeleteRegKey HKCU "${PRODUCT_UNINST_KEY}"
289 DeleteRegKey SHCTX
"${PRODUCT_DIR_REGKEY}"
290 DeleteRegKey HKCU "${PRODUCT_DIR_REGKEY}"
295 ;;;;;;;;;;;;;;;;;;;;;;;;;
296 ; Section descriptions ;
297 ;;;;;;;;;;;;;;;;;;;;;;;;;
298 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
299 !insertmacro MUI_DESCRIPTION_TEXT
${SEC01} "Required program files. You cannot skip these files."
300 !insertmacro MUI_DESCRIPTION_TEXT
${SEC02} "Available plugins like 'Version Diff', 'Class Builder' and 'Insert Special Characters'."
301 !insertmacro MUI_DESCRIPTION_TEXT
${SEC03} "Various translations of Geany's interface."
302 !insertmacro MUI_DESCRIPTION_TEXT
${SEC04} "Manual in Text and HTML format."
303 !insertmacro MUI_DESCRIPTION_TEXT
${SEC05} "Symbol lists necessary for auto completion of symbols."
305 !insertmacro MUI_DESCRIPTION_TEXT
${SEC06} "You need these files to run Geany. If you have already installed a GTK Runtime Environment (2.16 or higher), you can skip it."
307 !insertmacro MUI_DESCRIPTION_TEXT
${SEC07} "Add context menu item 'Open With Geany'"
308 !insertmacro MUI_DESCRIPTION_TEXT
${SEC08} "Create shortcuts for Geany on the desktop and in the Quicklaunch Bar"
309 !insertmacro MUI_FUNCTION_DESCRIPTION_END
311 ;;;;;;;;;;;;;;;;;;;;;
313 ;;;;;;;;;;;;;;;;;;;;;
315 ; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi)
316 !macro IsUserAdmin Result UName
322 UserInfo::GetAccountType
325 StrCpy ${Result} "yes"
327 StrCpy ${Result} "no"
332 StrCpy ${Result} "yes"
337 StrCpy "$StartmenuFolder" "Geany"
339 ; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi)
340 ; If the user does *not* have administrator privileges, abort
343 !insertmacro IsUserAdmin
$Answer $UserName ; macro from LyXUtils.nsh
344 ${if} $Answer ==
"yes"
345 SetShellVarContext all
; set that e.g. shortcuts will be created for all users
347 SetShellVarContext current
348 ; TODO is this really what we want? $PROGRAMFILES is not much better because
349 ; probably the unprivileged user can't write it anyways
350 StrCpy $INSTDIR "$PROFILE\$(^Name)"
353 ; prevent running multiple instances of the installer
354 System::Call 'kernel32::CreateMutexA(i 0, i 0, t "geany_installer") i .r1 ?e'
357 MessageBox MB_OK|
MB_ICONEXCLAMATION "The installer is already running." /SD
IDOK
359 ; warn about a new install over an existing installation
360 ReadRegStr $R0 SHCTX
"${PRODUCT_UNINST_KEY}" "UninstallString"
363 MessageBox MB_YESNO|
MB_ICONEXCLAMATION \
364 "Geany has already been installed. $\nDo you want to remove the previous version before installing $(^Name) ?" \
365 /SD
IDYES IDYES remove
IDNO finish
368 ; run the uninstaller
370 ; we read the installation path of the old installation from the Registry
371 ReadRegStr $UNINSTDIR SHCTX
"${PRODUCT_DIR_REGKEY}" "Path"
372 IfSilent dosilent nonsilent
374 ExecWait '$R0 /S _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file
377 ExecWait '$R0 _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file
381 Function un
.onUninstSuccess
383 MessageBox MB_ICONINFORMATION|
MB_OK "$(^Name) was successfully removed from your computer." \
388 ; If the user does *not* have administrator privileges, abort
390 !insertmacro IsUserAdmin
$Answer $UserName
391 ${if} $Answer ==
"yes"
392 SetShellVarContext all
394 ; check if the Geany has been installed with admin permisions
395 ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY}" "Publisher"
397 MessageBox MB_OK|
MB_ICONSTOP "You need administrator privileges to uninstall Geany!" \
401 SetShellVarContext current
404 MessageBox MB_ICONQUESTION|
MB_YESNO|MB_DEFBUTTON2
"Are you sure you want to completely remove $(^Name) and all of its components?" \
411 SetOutPath "$INSTDIR" ; what about IfError creating $INSTDIR?
412 GetTempFileName $1 "$INSTDIR" ; creates tmp file (or fails)
413 FileOpen $0 "$1" "w" ; error to open?
415 IfErrors notPossible possible
418 RMDir "$INSTDIR" ; removes folder if empty
419 MessageBox MB_OK "The given directory is not writeable. Please choose another one!" /SD
IDOK