Changeset 3756 in osm for applications/editors
- Timestamp:
- 2007-07-26T17:28:26+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/colorscheme/build.xml
r3409 r3756 9 9 10 10 <!-- plugin meta data (enter new version number if anything changed!) --> 11 <property name="plugin.version" value="0.5. 1"/>12 <property name="plugin.description" value=" Manage multiple colorschemes(V${plugin.version})."/>11 <property name="plugin.version" value="0.5.2"/> 12 <property name="plugin.description" value="Allows the user to create different color schemes and to switch between them. Just change the colors and create a new scheme. Used to switch to a white background with matching colors for better visibility in bright sunlight. See dialog in JOSM's preferences and 'Map Settings' (strange but true :-) (V${plugin.version})."/> 13 13 <property name="plugin.class" value="at.dallermassl.josm.plugin.colorscheme.ColorSchemePlugin"/> 14 14 … … 70 70 </target> 71 71 72 <!-- write site description for the given plugin -->72 <!-- write site description for the given plugin so josm will accept it --> 73 73 <target name="site"> 74 <echo message="creating site description in ${plugin.site.file}"/> 75 <echo file="${plugin.site.file}"><!-- plugins available on this site --> 76 <plugins> 77 <plugin id="${ant.project.name}" version="${plugin.version}"> 78 <name>${ant.project.name}</name> 79 <description>${plugin.description}</description> 80 <resource>${plugin.site.url}${plugin.jar}</resource> 81 </plugin> 82 </plugins> 83 </echo> 84 </target> 85 86 <!-- write site description for the given plugin (not implemented in JOSM as full version yet!) --> 87 <target name="site-full-donotuse"> 74 88 <echo message="creating site description in ${plugin.site.file}"/> 75 89 <echo file="${plugin.site.file}"><?xml version="1.0"?> … … 87 101 <description>${plugin.description}</description> 88 102 <resources> 89 <resource src="${plugin.site.url} /${plugin.jar}"90 target="$ ${josm.user.dir}/plugins/${plugin.jar}"/>103 <resource src="${plugin.site.url}${plugin.jar}" 104 target="${josm.home.dir}/plugins/${plugin.jar}"/> 91 105 </resources> 92 106 </plugin>
Note:
See TracChangeset
for help on using the changeset viewer.