source: osm/applications/editors/josm/nsis/josm.nsi@ 24460

Last change on this file since 24460 was 23118, checked in by stoecker, 14 years ago

fix wrong plugin separation

File size: 17.3 KB
Line 
1;
2; josm.nsi
3;
4
5; Set the compression mechanism first.
6; If you get an error here, please update to at least NSIS 2.07!
7SetCompressor /SOLID lzma
8
9; work with JAVA ini strings
10!include "INIStrNS.nsh"
11
12!define DEST "josm"
13
14; Used to refresh the display of file association
15!define SHCNE_ASSOCCHANGED 0x08000000
16!define SHCNF_IDLIST 0
17
18; Used to add associations between file extensions and JOSM
19!define OSM_ASSOC "josm-file"
20
21; ============================================================================
22; Header configuration
23; ============================================================================
24; The name of the installer
25!define PROGRAM_NAME "JOSM"
26
27Name "${PROGRAM_NAME} ${VERSION}"
28
29; The file to write
30OutFile "${DEST}-setup-${VERSION}.exe"
31
32XPStyle on
33
34
35
36; ============================================================================
37; Modern UI
38; ============================================================================
39
40!include "MUI.nsh"
41
42; Icon of installer and uninstaller
43!define MUI_ICON "logo.ico"
44!define MUI_UNICON "logo.ico"
45
46!define MUI_COMPONENTSPAGE_SMALLDESC
47!define MUI_FINISHPAGE_NOAUTOCLOSE
48!define MUI_UNFINISHPAGE_NOAUTOCLOSE
49!define MUI_WELCOMEFINISHPAGE_BITMAP "josm-nsis-brand.bmp"
50!define MUI_WELCOMEPAGE_TEXT $(JOSM_WELCOME_TEXT)
51
52!define MUI_FINISHPAGE_RUN "$INSTDIR\josm.exe"
53
54
55; ============================================================================
56; MUI Pages
57; ============================================================================
58
59!insertmacro MUI_PAGE_WELCOME
60!insertmacro MUI_PAGE_LICENSE "..\core\LICENSE"
61!insertmacro MUI_PAGE_COMPONENTS
62;Page custom DisplayAdditionalTasksPage
63!insertmacro MUI_PAGE_DIRECTORY
64!insertmacro MUI_PAGE_INSTFILES
65!insertmacro MUI_PAGE_FINISH
66
67!insertmacro MUI_UNPAGE_WELCOME
68!insertmacro MUI_UNPAGE_CONFIRM
69!insertmacro MUI_UNPAGE_COMPONENTS
70!insertmacro MUI_UNPAGE_INSTFILES
71!insertmacro MUI_UNPAGE_FINISH
72
73; ============================================================================
74; MUI Languages
75; ============================================================================
76
77 ;Remember the installer language
78 !define MUI_LANGDLL_REGISTRY_ROOT "HKLM"
79 !define MUI_LANGDLL_REGISTRY_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM"
80 !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
81
82 ;; English goes first because its the default. The rest are
83 ;; in alphabetical order (at least the strings actually displayed
84 ;; will be).
85
86 !insertmacro MUI_LANGUAGE "English"
87 !insertmacro MUI_LANGUAGE "German"
88
89;--------------------------------
90;Translations
91
92 !define JOSM_DEFAULT_LANGFILE "locale\english.nsh"
93
94 !include "langmacros.nsh"
95
96 !insertmacro JOSM_MACRO_INCLUDE_LANGFILE "ENGLISH" "locale\english.nsh"
97 !insertmacro JOSM_MACRO_INCLUDE_LANGFILE "GERMAN" "locale\german.nsh"
98
99; Uninstall stuff
100!define MUI_UNCONFIRMPAGE_TEXT_TOP ${un.JOSM_UNCONFIRMPAGE_TEXT_TOP}
101
102; ============================================================================
103; Installation types
104; ============================================================================
105
106InstType "$(JOSM_FULL_INSTALL)"
107
108InstType "un.$(un.JOSM_DEFAULT_UNINSTALL)"
109InstType "un.$(un.JOSM_FULL_UNINSTALL)"
110
111; ============================================================================
112; Reserve Files
113; ============================================================================
114
115 ;Things that need to be extracted on first (keep these lines before any File command!)
116 ;Only useful for BZIP2 compression
117
118!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
119
120; ============================================================================
121; Section macros
122; ============================================================================
123!include "Sections.nsh"
124
125; ========= Macro to unselect and disable a section =========
126
127!macro DisableSection SECTION
128
129 Push $0
130 SectionGetFlags "${SECTION}" $0
131 IntOp $0 $0 & ${SECTION_OFF}
132 IntOp $0 $0 | ${SF_RO}
133 SectionSetFlags "${SECTION}" $0
134 Pop $0
135
136!macroend
137
138; ========= Macro to enable (unreadonly) a section =========
139!define SECTION_ENABLE 0xFFFFFFEF
140!macro EnableSection SECTION
141
142 Push $0
143 SectionGetFlags "${SECTION}" $0
144 IntOp $0 $0 & ${SECTION_ENABLE}
145 SectionSetFlags "${SECTION}" $0
146 Pop $0
147
148!macroend
149
150; ============================================================================
151; Command Line
152; ============================================================================
153!include "FileFunc.nsh"
154
155; ============================================================================
156; Directory selection page configuration
157; ============================================================================
158; The text to prompt the user to enter a directory
159DirText $(JOSM_DIR_TEXT)
160
161; The default installation directory
162InstallDir $PROGRAMFILES\JOSM\
163
164; See if this is an upgrade; if so, use the old InstallDir as default
165InstallDirRegKey HKEY_LOCAL_MACHINE SOFTWARE\JOSM "InstallDir"
166
167
168; ============================================================================
169; Install page configuration
170; ============================================================================
171ShowInstDetails show
172ShowUninstDetails show
173
174; ============================================================================
175; Functions and macros
176; ============================================================================
177
178; update file extension icons
179!macro UpdateIcons
180 Push $R0
181 Push $R1
182 Push $R2
183
184 !define UPDATEICONS_UNIQUE ${__LINE__}
185
186 IfFileExists "$SYSDIR\shell32.dll" UpdateIcons.next1_${UPDATEICONS_UNIQUE} UpdateIcons.error1_${UPDATEICONS_UNIQUE}
187UpdateIcons.next1_${UPDATEICONS_UNIQUE}:
188 GetDllVersion "$SYSDIR\shell32.dll" $R0 $R1
189 IntOp $R2 $R0 / 0x00010000
190 IntCmp $R2 4 UpdateIcons.next2_${UPDATEICONS_UNIQUE} UpdateIcons.error2_${UPDATEICONS_UNIQUE}
191UpdateIcons.next2_${UPDATEICONS_UNIQUE}:
192 System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v (${SHCNE_ASSOCCHANGED}, ${SHCNF_IDLIST}, 0, 0)'
193 Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
194
195UpdateIcons.error1_${UPDATEICONS_UNIQUE}:
196 MessageBox MB_OK|MB_ICONSTOP $(JOSM_UPDATEICONS_ERROR1)
197 Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
198UpdateIcons.error2_${UPDATEICONS_UNIQUE}:
199 MessageBox MB_OK|MB_ICONINFORMATION $(JOSM_UPDATEICONS_ERROR2)
200 Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
201UpdateIcons.quit_${UPDATEICONS_UNIQUE}:
202 !undef UPDATEICONS_UNIQUE
203 Pop $R2
204 Pop $R1
205 Pop $R0
206
207!macroend
208
209; associate a file extension to an icon
210Function Associate
211 ; $R0 should contain the prefix to associate to JOSM
212 Push $R1
213
214 ReadRegStr $R1 HKCR $R0 ""
215 StrCmp $R1 "" Associate.doRegister
216 Goto Associate.end
217Associate.doRegister:
218 ;The extension is not associated to any program, we can do the link
219 WriteRegStr HKCR $R0 "" ${OSM_ASSOC}
220Associate.end:
221 pop $R1
222FunctionEnd
223
224; disassociate a file extension from an icon
225Function un.unlink
226 ; $R0 should contain the prefix to unlink
227 Push $R1
228
229 ReadRegStr $R1 HKCR $R0 ""
230 StrCmp $R1 ${OSM_ASSOC} un.unlink.doUnlink
231 Goto un.unlink.end
232un.unlink.doUnlink:
233 ; The extension is associated with JOSM so, we must destroy this!
234 DeleteRegKey HKCR $R0
235un.unlink.end:
236 pop $R1
237FunctionEnd
238
239Function .onInit
240 ;Extract InstallOptions INI files
241; !insertmacro MUI_INSTALLOPTIONS_EXTRACT "AdditionalTasksPage.ini"
242 !insertmacro MUI_LANGDLL_DISPLAY
243FunctionEnd
244
245Function un.onInit
246
247 !insertmacro MUI_UNGETLANGUAGE
248
249FunctionEnd
250
251; ============================================================================
252; Installation execution commands
253; ============================================================================
254
255Section "-Required"
256;-------------------------------------------
257
258;
259; Install for every user
260;
261SectionIn 1 2 RO
262SetShellVarContext current
263
264SetOutPath $INSTDIR
265
266; Write the uninstall keys for Windows
267WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "DisplayVersion" "${VERSION}"
268WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "DisplayName" "JOSM ${VERSION}"
269WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "UninstallString" '"$INSTDIR\uninstall.exe"'
270WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "Publisher" "The OpenStreetMap developer community, http://www.openstreetmap.org/"
271WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "HelpLink" "mailto:newbies@openstreetmap.org."
272WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "URLInfoAbout" "http://www.openstreetmap.org/"
273WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "URLUpdateInfo" "http://wiki.openstreetmap.org/index.php/JOSM"
274WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "NoModify" 1
275WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" "NoRepair" 1
276WriteUninstaller "uninstall.exe"
277
278; Write an entry for ShellExecute
279WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\josm.exe" "" '$INSTDIR\josm.exe'
280WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\josm.exe" "Path" '$INSTDIR'
281
282SectionEnd ; "Required"
283
284
285Section $(JOSM_SEC_JOSM) SecJosm
286;-------------------------------------------
287SectionIn 1
288SetOutPath $INSTDIR
289File "josm.exe"
290File "josm-tested.jar"
291
292; XXX - should be provided/done by josm.jar itself and not here!
293SetShellVarContext current
294SetOutPath "$APPDATA\JOSM"
295
296; don't overwrite existing bookmarks
297IfFileExists preferences dont_overwrite_bookmarks
298File "bookmarks"
299dont_overwrite_bookmarks:
300
301; write reasonable defaults for some preferences
302${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "laf" "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"
303
304SectionEnd
305
306
307SectionGroup $(JOSM_SEC_PLUGINS_GROUP) SecPluginsGroup
308
309Section $(JOSM_SEC_OPENSTREETBUGS_PLUGIN) SecOpenStreetBugsPlugin
310;-------------------------------------------
311SectionIn 1 2
312SetShellVarContext current
313SetOutPath $APPDATA\JOSM\plugins
314File "..\dist\openstreetbugs.jar"
315SectionEnd
316
317Section $(JOSM_SEC_REMOTECONTROL_PLUGIN) SecRemoteControlPlugin
318;-------------------------------------------
319SectionIn 1 2
320SetShellVarContext current
321SetOutPath $APPDATA\JOSM\plugins
322File "..\dist\remotecontrol.jar"
323SectionEnd
324
325Section $(JOSM_SEC_VALIDATOR_PLUGIN) SecValidatorPlugin
326;-------------------------------------------
327SectionIn 1 2
328SetShellVarContext current
329SetOutPath $APPDATA\JOSM\plugins
330File "..\dist\validator.jar"
331SectionEnd
332
333Section $(JOSM_SEC_WMS_PLUGIN) SecWMSPlugin
334;-------------------------------------------
335SectionIn 1 2
336SetShellVarContext current
337SetOutPath $APPDATA\JOSM\plugins
338File "..\dist\wmsplugin.jar"
339SetOutPath $INSTDIR\imageformats
340File "webkit-image\imageformats\qjpeg4.dll"
341SetOutPath $INSTDIR
342File "webkit-image\mingwm10.dll"
343File "webkit-image\QtCore4.dll"
344File "webkit-image\QtGui4.dll"
345File "webkit-image\QtNetwork4.dll"
346File "webkit-image\QtWebKit4.dll"
347File "webkit-image\webkit-image.exe"
348SectionEnd
349
350SectionGroupEnd ; "Plugins"
351
352Section $(JOSM_SEC_STARTMENU) SecStartMenu
353;-------------------------------------------
354SectionIn 1 2
355; To qoute "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwue/html/ch11d.asp":
356; "Do not include Readme, Help, or Uninstall entries on the Programs menu."
357CreateShortCut "$SMPROGRAMS\JOSM.lnk" "$INSTDIR\josm.exe" "" "$INSTDIR\josm.exe" 0 "" "" $(JOSM_LINK_TEXT)
358SectionEnd
359
360Section $(JOSM_SEC_DESKTOP_ICON) SecDesktopIcon
361;-------------------------------------------
362; SectionIn 1 2
363; Create desktop icon
364; Desktop icon for a program should not be installed as default!
365CreateShortCut "$DESKTOP\JOSM.lnk" "$INSTDIR\josm.exe" "" "$INSTDIR\josm.exe" 0 "" "" $(JOSM_LINK_TEXT)
366SectionEnd
367
368Section $(JOSM_SEC_QUICKLAUNCH_ICON) SecQuickLaunchIcon
369;-------------------------------------------
370SectionIn 1 2
371; Create quick launch icon
372CreateShortCut "$QUICKLAUNCH\JOSM.lnk" "$INSTDIR\josm.exe" "" "$INSTDIR\josm.exe" 0 "" "" $(JOSM_LINK_TEXT)
373SectionEnd
374
375Section $(JOSM_SEC_FILE_EXTENSIONS) SecFileExtensions
376;-------------------------------------------
377SectionIn 1 2
378; Create File Extensions
379WriteRegStr HKCR ${OSM_ASSOC} "" "OpenStreetMap data"
380WriteRegStr HKCR "${OSM_ASSOC}\Shell\open\command" "" '"$INSTDIR\josm.exe" "%1"'
381WriteRegStr HKCR "${OSM_ASSOC}\DefaultIcon" "" '"$INSTDIR\josm.exe",0'
382push $R0
383 StrCpy $R0 ".osm"
384 Call Associate
385 StrCpy $R0 ".gpx"
386 Call Associate
387; if somethings added here, add it also to the uninstall section
388pop $R0
389!insertmacro UpdateIcons
390SectionEnd
391
392
393Section "-PluginSetting"
394;-------------------------------------------
395SectionIn 1 2
396;MessageBox MB_OK "PluginSetting!" IDOK 0
397; XXX - should better be handled inside JOSM (recent plugin manager is going in the right direction)
398SetShellVarContext current
399!include LogicLib.nsh
400${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "openstreetbugs
401remotecontrol
402validator
403wmsplugin"
404SectionEnd
405
406
407Section "un.$(un.JOSM_SEC_UNINSTALL)" un.SecUinstall
408;-------------------------------------------
409
410;
411; UnInstall for every user
412;
413SectionIn 1 2
414SetShellVarContext current
415
416Delete "$INSTDIR\josm-tested.jar"
417IfErrors 0 NoJOSMErrorMsg
418 MessageBox MB_OK $(un.JOSM_IN_USE_ERROR) IDOK 0 ;skipped if josm.jar removed
419 Abort $(un.JOSM_IN_USE_ERROR)
420NoJOSMErrorMsg:
421Delete "$INSTDIR\josm.exe"
422Delete "$INSTDIR\imageformats\qjpeg4.dll"
423RMDir "$INSTDIR\imageformats"
424Delete "$INSTDIR\mingwm10.dll"
425Delete "$INSTDIR\QtCore4.dll"
426Delete "$INSTDIR\QtGui4.dll"
427Delete "$INSTDIR\QtNetwork4.dll"
428Delete "$INSTDIR\QtWebKit4.dll"
429Delete "$INSTDIR\webkit-image.exe"
430Delete "$INSTDIR\uninstall.exe"
431
432DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM"
433DeleteRegKey HKEY_LOCAL_MACHINE "Software\josm.exe"
434DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\josm.exe"
435
436; Remove Language preference info
437DeleteRegKey HKCU "Software/JOSM" ;${MUI_LANGDLL_REGISTRY_ROOT} ${MUI_LANGDLL_REGISTRY_KEY}
438
439push $R0
440 StrCpy $R0 ".osm"
441 Call un.unlink
442 StrCpy $R0 ".gpx"
443 Call un.unlink
444pop $R0
445
446DeleteRegKey HKCR ${OSM_ASSOC}
447DeleteRegKey HKCR "${OSM_ASSOC}\Shell\open\command"
448DeleteRegKey HKCR "${OSM_ASSOC}\DefaultIcon"
449!insertmacro UpdateIcons
450
451Delete "$SMPROGRAMS\josm.lnk"
452Delete "$DESKTOP\josm.lnk"
453Delete "$QUICKLAUNCH\josm.lnk"
454
455RMDir "$INSTDIR"
456
457SectionEnd ; "Uinstall"
458
459Section /o "un.$(un.JOSM_SEC_PERSONAL_SETTINGS)" un.SecPersonalSettings
460;-------------------------------------------
461SectionIn 2
462SetShellVarContext current
463Delete "$APPDATA\JOSM\plugins\agpifoj\*.*"
464RMDir "$APPDATA\JOSM\plugins\agpifoj"
465Delete "$APPDATA\JOSM\plugins\openstreetbugs\*.*"
466RMDir "$APPDATA\JOSM\plugins\openstreetbugs"
467Delete "$APPDATA\JOSM\plugins\remotecontrol\*.*"
468RMDir "$APPDATA\JOSM\plugins\remotecontrol"
469Delete "$APPDATA\JOSM\plugins\validator\*.*"
470RMDir "$APPDATA\JOSM\plugins\validator"
471Delete "$APPDATA\JOSM\plugins\wmsplugin\*.*"
472RMDir "$APPDATA\JOSM\plugins\wmsplugin"
473Delete "$APPDATA\JOSM\plugins\*.*"
474RMDir "$APPDATA\JOSM\plugins"
475
476Delete "$APPDATA\JOSM\motd.html"
477Delete "$APPDATA\JOSM\preferences"
478Delete "$APPDATA\JOSM\bookmarks"
479RMDir "$APPDATA\JOSM"
480SectionEnd
481
482
483Section "-Un.Finally"
484;-------------------------------------------
485SectionIn 1 2
486; this test must be done after all other things uninstalled (e.g. Global Settings)
487IfFileExists "$INSTDIR" 0 NoFinalErrorMsg
488 MessageBox MB_OK $(un.JOSM_INSTDIR_ERROR) IDOK 0 ; skipped if dir doesn't exist
489NoFinalErrorMsg:
490SectionEnd
491
492
493; ============================================================================
494; PLEASE MAKE SURE, THAT THE DESCRIPTIVE TEXT FITS INTO THE DESCRIPTION FIELD!
495; ============================================================================
496!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
497 !insertmacro MUI_DESCRIPTION_TEXT ${SecJosm} $(JOSM_SECDESC_JOSM)
498 !insertmacro MUI_DESCRIPTION_TEXT ${SecPluginsGroup} $(JOSM_SECDESC_PLUGINS_GROUP)
499 !insertmacro MUI_DESCRIPTION_TEXT ${SecOpenStreetBugsPlugin} $(JOSM_SECDESC_OPENSTREETBUGS_PLUGIN)
500 !insertmacro MUI_DESCRIPTION_TEXT ${SecRemoteControlPlugin} $(JOSM_SECDESC_REMOTECONTROL_PLUGIN)
501 !insertmacro MUI_DESCRIPTION_TEXT ${SecValidatorPlugin} $(JOSM_SECDESC_VALIDATOR_PLUGIN)
502 !insertmacro MUI_DESCRIPTION_TEXT ${SecWMSPlugin} $(JOSM_SECDESC_WMS_PLUGIN)
503 !insertmacro MUI_DESCRIPTION_TEXT ${SecStartMenu} $(JOSM_SECDESC_STARTMENU)
504 !insertmacro MUI_DESCRIPTION_TEXT ${SecDesktopIcon} $(JOSM_SECDESC_DESKTOP_ICON)
505 !insertmacro MUI_DESCRIPTION_TEXT ${SecQuickLaunchIcon} $(JOSM_SECDESC_QUICKLAUNCH_ICON)
506 !insertmacro MUI_DESCRIPTION_TEXT ${SecFileExtensions} $(JOSM_SECDESC_FILE_EXTENSIONS)
507
508
509!insertmacro MUI_FUNCTION_DESCRIPTION_END
510
511!insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
512 !insertmacro MUI_DESCRIPTION_TEXT ${un.SecUinstall} $(un.JOSM_SECDESC_UNINSTALL)
513 !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPersonalSettings} $(un.JOSM_SECDESC_PERSONAL_SETTINGS)
514!insertmacro MUI_UNFUNCTION_DESCRIPTION_END
515
516; ============================================================================
517; Callback functions
518; ============================================================================
519
Note: See TracBrowser for help on using the repository browser.