Changeset 3243 in osm


Ignore:
Timestamp:
2007-06-16T20:54:40+02:00 (18 years ago)
Author:
ulf
Message:

add the validator plugin, raise version to 0.0.8

Location:
applications/nsis
Files:
1 added
1 deleted
2 edited

Legend:

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

    r2952 r3243  
    33## settings ##
    44
    5 VERSION=0.0.7
     5VERSION=0.0.8
    66
    77PROGRAM_FILES="/cygdrive/c/Program Files"
     
    3232wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar
    3333wget -nc http://chippy2005.googlepages.com/wmsplugin.jar
     34wget -nc http://personales.ya.com/frsantos/validator.jar
    3435
    3536cd ..
  • applications/nsis/openstreetmap.nsi

    r2952 r3243  
    353353${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "commandstack.visible" "true"
    354354${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "propertiesdialog.visible" "true"
     355${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "validator.visible" "true"
    355356${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "draw.segment.direction" "true"
    356357${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "projection" "org.openstreetmap.josm.data.projection.Epsg4326"
     
    397398SectionEnd
    398399
     400Section "validator" SecValidatorPlugin
     401;-------------------------------------------
     402SectionIn 1 2
     403SetShellVarContext current
     404SetOutPath $APPDATA\JOSM\plugins
     405File "downloads\validator.jar"
     406SectionEnd
     407
    399408SectionGroupEnd ; "Plugins"
    400409
     
    403412;MessageBox MB_OK "PluginSetting!" IDOK 0
    404413SetShellVarContext current
    405 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder"
     414${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder,validator"
    406415SectionEnd
    407416
     
    466475Delete "$APPDATA\JOSM\plugins\mappaint.jar"
    467476Delete "$APPDATA\JOSM\plugins\namefinder.jar"
     477Delete "$APPDATA\JOSM\plugins\validator.jar"
    468478;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml"
    469479RMDir "$APPDATA\JOSM\plugins\osmarender"
     
    494504  !insertmacro MUI_DESCRIPTION_TEXT ${SecWMSPlugin} "Display background images from Web Map Service (WMS) sources."
    495505  !insertmacro MUI_DESCRIPTION_TEXT ${SecNamefinderPlugin} "Add a 'Find places by their name' tab to the download dialog."
     506  !insertmacro MUI_DESCRIPTION_TEXT ${SecValidatorPlugin} "Validates edited data if it conforms to common suggestions."
    496507!insertmacro MUI_FUNCTION_DESCRIPTION_END
    497508
Note: See TracChangeset for help on using the changeset viewer.