Changeset 14196 in osm for applications/editors/josm
- Timestamp:
- 2009-03-21T16:40:49+01:00 (16 years ago)
- Location:
- applications/editors/josm/nsis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/nsis/josm.nsi
r14194 r14196 260 260 ; 261 261 SectionIn 1 2 RO 262 SetShellVarContext all262 SetShellVarContext current 263 263 264 264 SetOutPath $INSTDIR … … 319 319 ;------------------------------------------- 320 320 SectionIn 1 2 321 SetShellVarContext all321 SetShellVarContext current 322 322 SetOutPath $APPDATA\JOSM\plugins 323 323 File "..\dist\wmsplugin.jar" … … 336 336 ;------------------------------------------- 337 337 SectionIn 1 2 338 SetShellVarContext all338 SetShellVarContext current 339 339 SetOutPath $APPDATA\JOSM\plugins 340 340 File "..\dist\validator.jar" … … 402 402 ; 403 403 SectionIn 1 2 404 SetShellVarContext all404 SetShellVarContext current 405 405 406 406 Delete "$INSTDIR\josm.exe" … … 418 418 Delete "$INSTDIR\webkit-image.exe" 419 419 Delete "$INSTDIR\uninstall.exe" 420 Delete "$APPDATA\JOSM\plugins\wmsplugin.jar"421 Delete "$APPDATA\JOSM\plugins\namefinder.jar"422 Delete "$APPDATA\JOSM\plugins\validator.jar"423 RMDir "$APPDATA\JOSM\plugins"424 RMDir "$APPDATA\JOSM"425 420 426 421 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" … … 455 450 SectionIn 2 456 451 SetShellVarContext current 452 Delete "$APPDATA\JOSM\plugins\wmsplugin\*.*" 453 RMDir "$APPDATA\JOSM\plugins\wmsplugin" 454 Delete "$APPDATA\JOSM\plugins\validator\*.*" 455 RMDir "$APPDATA\JOSM\plugins\validator" 456 Delete "$APPDATA\JOSM\plugins\*.*" 457 RMDir "$APPDATA\JOSM\plugins" 458 459 Delete "$APPDATA\JOSM\motd.html" 457 460 Delete "$APPDATA\JOSM\preferences" 458 461 Delete "$APPDATA\JOSM\bookmarks" 459 RMDir "$APPDATA\JOSM"460 SectionEnd461 462 Section /o "un.$(un.JOSM_SEC_PLUGINS)"un.SecPlugins463 ;-------------------------------------------464 SectionIn 2465 SetShellVarContext current466 Delete "$APPDATA\JOSM\plugins\wmsplugin.jar"467 Delete "$APPDATA\JOSM\plugins\namefinder.jar"468 Delete "$APPDATA\JOSM\plugins\validator\*.*"469 Delete "$APPDATA\JOSM\plugins\validator.jar"470 RMDir "$APPDATA\JOSM\plugins\validator"471 RMDir "$APPDATA\JOSM\plugins"472 462 RMDir "$APPDATA\JOSM" 473 463 SectionEnd … … 503 493 !insertmacro MUI_DESCRIPTION_TEXT ${un.SecUinstall} $(un.JOSM_SECDESC_UNINSTALL) 504 494 !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPersonalSettings} $(un.JOSM_SECDESC_PERSONAL_SETTINGS) 505 !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPlugins} $(un.JOSM_SECDESC_PLUGINS)506 495 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END 507 496 -
applications/editors/josm/nsis/langmacros.nsh
r6075 r14196 75 75 !insertmacro JOSM_MACRO_LANGSTRING_INSERT un.JOSM_SECDESC_UNINSTALL ${CUR_LANG} 76 76 !insertmacro JOSM_MACRO_LANGSTRING_INSERT un.JOSM_SECDESC_PERSONAL_SETTINGS ${CUR_LANG} 77 !insertmacro JOSM_MACRO_LANGSTRING_INSERT un.JOSM_SECDESC_PLUGINS ${CUR_LANG}78 77 79 78 -
applications/editors/josm/nsis/locale/english.nsh
r6075 r14196 54 54 55 55 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_UNINSTALL "Uninstall JOSM." 56 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PERSONAL_SETTINGS "Uninstall personal settings like your preferences and bookmarks from your profile: $PROFILE." 57 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PLUGINS "Uninstall all plugins." 56 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PERSONAL_SETTINGS "Uninstall personal settings from your profile: $PROFILE." 58 57 -
applications/editors/josm/nsis/locale/german.nsh
r6075 r14196 49 49 50 50 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_UNINSTALL "Deinstalliere JOSM." 51 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PERSONAL_SETTINGS "Deinstalliere persönliche Einstellungen wie die Preferences und Bookmarks von Ihrem Profil: $PROFILE." 52 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PLUGINS "Deinstalliere alle Plugins." 53 51 !insertmacro JOSM_MACRO_DEFAULT_STRING un.JOSM_SECDESC_PERSONAL_SETTINGS "Deinstalliere persönliche Einstellungen von Ihrem Profil: $PROFILE."
Note:
See TracChangeset
for help on using the changeset viewer.