Changeset 2952 in osm for applications/nsis


Ignore:
Timestamp:
2007-05-20T15:33:34+02:00 (17 years ago)
Author:
ulf
Message:

update to 0.0.7:

  • API 0.4 ready (latest JOSM and plugins)
  • add namefinder plugin
  • copy plugins from svn where available (instead of using wget)
  • fix some uninstaller bugs
Location:
applications/nsis
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • applications/nsis/openstreetmap-setup.sh

    r2855 r2952  
    33## settings ##
    44
    5 VERSION=0.0.6
     5VERSION=0.0.7
    66
    77PROGRAM_FILES="/cygdrive/c/Program Files"
     
    2020
    2121# get latest plugin (and supporting files) versions
    22 wget -nc http://svn.openstreetmap.org/applications/editors/josm/plugins/mappaint/mappaint.jar
     22cp ../../editors/josm/plugins/mappaint/mappaint.jar .
     23cp ../../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
    2329# wget -nc http://www.free-map.org.uk/downloads/josm/mappaint.jar
    2430# wget -nc http://www.free-map.org.uk/downloads/josm/elemstyles.xml
  • applications/nsis/openstreetmap.nsi

    r2786 r2952  
    389389SectionEnd
    390390
     391Section "namefinder" SecNamefinderPlugin
     392;-------------------------------------------
     393SectionIn 1 2
     394SetShellVarContext current
     395SetOutPath $APPDATA\JOSM\plugins
     396File "downloads\namefinder.jar"
     397SectionEnd
     398
    391399SectionGroupEnd ; "Plugins"
    392400
     
    395403;MessageBox MB_OK "PluginSetting!" IDOK 0
    396404SetShellVarContext current
    397 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin"
     405${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder"
    398406SectionEnd
    399407
     
    415423NoJOSMErrorMsg:
    416424
    417 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\JOSM"
     425DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\OSM"
    418426DeleteRegKey HKEY_LOCAL_MACHINE "Software\josm.exe"
    419427DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\josm.exe"
     
    445453Delete "$APPDATA\JOSM\preferences"
    446454Delete "$APPDATA\JOSM\bookmarks"
     455Delete "$APPDATA\JOSM\de-streets.xml"
    447456RMDir "$APPDATA\JOSM"
    448457SectionEnd
     
    456465Delete "$APPDATA\JOSM\plugins\osmarender\*.*"
    457466Delete "$APPDATA\JOSM\plugins\mappaint.jar"
     467Delete "$APPDATA\JOSM\plugins\namefinder.jar"
    458468;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml"
    459469RMDir "$APPDATA\JOSM\plugins\osmarender"
     
    483493  !insertmacro MUI_DESCRIPTION_TEXT ${SecOsmarenderPlugin} "Displays the current screen as nicely rendered SVG graphics in FireFox."
    484494  !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."
    485496!insertmacro MUI_FUNCTION_DESCRIPTION_END
    486497
Note: See TracChangeset for help on using the changeset viewer.