Changeset 14201 in osm for applications/editors/josm/nsis/josm.nsi
- Timestamp:
- 2009-03-21T18:32:37+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/nsis/josm.nsi
r14200 r14201 310 310 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "laf" "com.sun.java.swing.plaf.windows.WindowsLookAndFeel" 311 311 312 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "validator.visible" "true"313 314 312 SectionEnd 315 313 … … 323 321 SetOutPath $APPDATA\JOSM\plugins 324 322 File "..\dist\AgPifoJ.jar" 323 SectionEnd 324 325 Section $(JOSM_SEC_OPENSTREETBUGS_PLUGIN) SecOpenStreetBugsPlugin 326 ;------------------------------------------- 327 SectionIn 1 2 328 SetShellVarContext current 329 SetOutPath $APPDATA\JOSM\plugins 330 File "..\dist\openstreetbugs.jar" 331 SectionEnd 332 333 Section $(JOSM_SEC_REMOTECONTROL_PLUGIN) SecRemoteControlPlugin 334 ;------------------------------------------- 335 SectionIn 1 2 336 SetShellVarContext current 337 SetOutPath $APPDATA\JOSM\plugins 338 File "..\dist\remotecontrol.jar" 325 339 SectionEnd 326 340 … … 400 414 SetShellVarContext current 401 415 !include LogicLib.nsh 402 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "AgPifoJ;validator;wmsplugin" 416 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "AgPifoJ;openstreetbugs;remotecontrol;validator;wmsplugin" 403 417 SectionEnd 404 418 … … 461 475 Delete "$APPDATA\JOSM\plugins\agpifoj\*.*" 462 476 RMDir "$APPDATA\JOSM\plugins\agpifoj" 477 Delete "$APPDATA\JOSM\plugins\openstreetbugs\*.*" 478 RMDir "$APPDATA\JOSM\plugins\openstreetbugs" 479 Delete "$APPDATA\JOSM\plugins\remotecontrol\*.*" 480 RMDir "$APPDATA\JOSM\plugins\remotecontrol" 463 481 Delete "$APPDATA\JOSM\plugins\validator\*.*" 464 482 RMDir "$APPDATA\JOSM\plugins\validator" … … 492 510 !insertmacro MUI_DESCRIPTION_TEXT ${SecPluginsGroup} $(JOSM_SECDESC_PLUGINS_GROUP) 493 511 !insertmacro MUI_DESCRIPTION_TEXT ${SecAgPifoJPlugin} $(JOSM_SECDESC_AGPIFOJ_PLUGIN) 512 !insertmacro MUI_DESCRIPTION_TEXT ${SecOpenStreetBugsPlugin} $(JOSM_SECDESC_OPENSTREETBUGS_PLUGIN) 513 !insertmacro MUI_DESCRIPTION_TEXT ${SecRemoteControlPlugin} $(JOSM_SECDESC_REMOTECONTROL_PLUGIN) 494 514 !insertmacro MUI_DESCRIPTION_TEXT ${SecValidatorPlugin} $(JOSM_SECDESC_VALIDATOR_PLUGIN) 495 515 !insertmacro MUI_DESCRIPTION_TEXT ${SecWMSPlugin} $(JOSM_SECDESC_WMS_PLUGIN)
Note:
See TracChangeset
for help on using the changeset viewer.