Changeset 2952 in osm for applications
- Timestamp:
- 2007-05-20T15:33:34+02:00 (17 years ago)
- Location:
- applications/nsis
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/nsis/openstreetmap-setup.sh
r2855 r2952 3 3 ## settings ## 4 4 5 VERSION=0.0. 65 VERSION=0.0.7 6 6 7 7 PROGRAM_FILES="/cygdrive/c/Program Files" … … 20 20 21 21 # get latest plugin (and supporting files) versions 22 wget -nc http://svn.openstreetmap.org/applications/editors/josm/plugins/mappaint/mappaint.jar 22 cp ../../editors/josm/plugins/mappaint/mappaint.jar . 23 cp ../../editors/josm/plugins/namefinder/namefinder.jar . 24 #cp ../../editors/josm/plugins/osmarender/osmarender.jar . 25 #cp ../../editors/josm/plugins/annotation-tester/annotation-tester.jar . 26 #cp ../../editors/josm/plugins/wmsplugin/wmsplugin.jar . 27 28 # wget -nc http://svn.openstreetmap.org/applications/editors/josm/plugins/mappaint/mappaint.jar 23 29 # wget -nc http://www.free-map.org.uk/downloads/josm/mappaint.jar 24 30 # wget -nc http://www.free-map.org.uk/downloads/josm/elemstyles.xml -
applications/nsis/openstreetmap.nsi
r2786 r2952 389 389 SectionEnd 390 390 391 Section "namefinder" SecNamefinderPlugin 392 ;------------------------------------------- 393 SectionIn 1 2 394 SetShellVarContext current 395 SetOutPath $APPDATA\JOSM\plugins 396 File "downloads\namefinder.jar" 397 SectionEnd 398 391 399 SectionGroupEnd ; "Plugins" 392 400 … … 395 403 ;MessageBox MB_OK "PluginSetting!" IDOK 0 396 404 SetShellVarContext current 397 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin "405 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder" 398 406 SectionEnd 399 407 … … 415 423 NoJOSMErrorMsg: 416 424 417 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\ JOSM"425 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM" 418 426 DeleteRegKey HKEY_LOCAL_MACHINE "Software\josm.exe" 419 427 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\josm.exe" … … 445 453 Delete "$APPDATA\JOSM\preferences" 446 454 Delete "$APPDATA\JOSM\bookmarks" 455 Delete "$APPDATA\JOSM\de-streets.xml" 447 456 RMDir "$APPDATA\JOSM" 448 457 SectionEnd … … 456 465 Delete "$APPDATA\JOSM\plugins\osmarender\*.*" 457 466 Delete "$APPDATA\JOSM\plugins\mappaint.jar" 467 Delete "$APPDATA\JOSM\plugins\namefinder.jar" 458 468 ;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml" 459 469 RMDir "$APPDATA\JOSM\plugins\osmarender" … … 483 493 !insertmacro MUI_DESCRIPTION_TEXT ${SecOsmarenderPlugin} "Displays the current screen as nicely rendered SVG graphics in FireFox." 484 494 !insertmacro MUI_DESCRIPTION_TEXT ${SecWMSPlugin} "Display background images from Web Map Service (WMS) sources." 495 !insertmacro MUI_DESCRIPTION_TEXT ${SecNamefinderPlugin} "Add a 'Find places by their name' tab to the download dialog." 485 496 !insertmacro MUI_FUNCTION_DESCRIPTION_END 486 497
Note:
See TracChangeset
for help on using the changeset viewer.