Changeset 3243 in osm
- Timestamp:
- 2007-06-16T20:54:40+02:00 (18 years ago)
- Location:
- applications/nsis
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/nsis/openstreetmap-setup.sh
r2952 r3243 3 3 ## settings ## 4 4 5 VERSION=0.0. 75 VERSION=0.0.8 6 6 7 7 PROGRAM_FILES="/cygdrive/c/Program Files" … … 32 32 wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar 33 33 wget -nc http://chippy2005.googlepages.com/wmsplugin.jar 34 wget -nc http://personales.ya.com/frsantos/validator.jar 34 35 35 36 cd .. -
applications/nsis/openstreetmap.nsi
r2952 r3243 353 353 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "commandstack.visible" "true" 354 354 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "propertiesdialog.visible" "true" 355 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "validator.visible" "true" 355 356 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "draw.segment.direction" "true" 356 357 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "projection" "org.openstreetmap.josm.data.projection.Epsg4326" … … 397 398 SectionEnd 398 399 400 Section "validator" SecValidatorPlugin 401 ;------------------------------------------- 402 SectionIn 1 2 403 SetShellVarContext current 404 SetOutPath $APPDATA\JOSM\plugins 405 File "downloads\validator.jar" 406 SectionEnd 407 399 408 SectionGroupEnd ; "Plugins" 400 409 … … 403 412 ;MessageBox MB_OK "PluginSetting!" IDOK 0 404 413 SetShellVarContext current 405 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder" 414 ${WriteINIStrNS} $R0 "$APPDATA\JOSM\preferences" "plugins" "mappaint,osmarender,wmsplugin,namefinder,validator" 406 415 SectionEnd 407 416 … … 466 475 Delete "$APPDATA\JOSM\plugins\mappaint.jar" 467 476 Delete "$APPDATA\JOSM\plugins\namefinder.jar" 477 Delete "$APPDATA\JOSM\plugins\validator.jar" 468 478 ;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml" 469 479 RMDir "$APPDATA\JOSM\plugins\osmarender" … … 494 504 !insertmacro MUI_DESCRIPTION_TEXT ${SecWMSPlugin} "Display background images from Web Map Service (WMS) sources." 495 505 !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." 496 507 !insertmacro MUI_FUNCTION_DESCRIPTION_END 497 508
Note:
See TracChangeset
for help on using the changeset viewer.