Changeset 25696 in osm for applications/editors/josm
- Timestamp:
- 2011-03-24T21:30:57+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/relcontext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/relcontext/TODO
r25695 r25696 1 - Solve width problem for narrows buttons when "fix" and "download" appear simultaneously2 - Draw icons for multipoly settings menu3 4 1 == BETA == 5 2 3 - Draw icons for multipoly settings menu 6 4 - Analyze chosen relation and display corresponding symbol next to its name 7 5 - Make chosen relation name pretty … … 12 10 - Option to create separate multipolygon for every outer ring 13 11 - Solve multipolygon settings button width problem 12 - Solve width problem for narrows buttons when "fix" and "download" appear simultaneously 14 13 15 14 == RELEASE == -
applications/editors/josm/plugins/relcontext/build.xml
r25692 r25696 44 44 <property name="plugin.src.dir" value="src"/> 45 45 <!-- this is the directory where the plugin jar is copied to --> 46 <property name="plugin.dist.dir" value="/Users/Zverik/AppData/Roaming/JOSM/plugins"/> 46 <property name="plugin.dist.dir" value="../../dist"/> 47 <!--property name="plugin.dist.dir" value="/Users/Zverik/AppData/Roaming/JOSM/plugins"/--> 47 48 <property name="ant.build.javac.target" value="1.5"/> 48 49 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> … … 105 106 <attribute name="ru_Plugin-Description" value="Панель создания и редактирования отношений, особенно мультиполигонов."/> 106 107 <attribute name="Plugin-Icon" value="images/reltoolbox.png"/> 107 < !--attribute name="Plugin-Link" value="http://josm.openstreetmap.de/"/-->108 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Relation_Toolbox"/> 108 109 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 109 110 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 111 <attribute name="Plugin-Stage" value="10"/> 110 112 </manifest> 111 113 </jar> -
applications/editors/josm/plugins/relcontext/src/relcontext/actions/DeleteChosenRelationAction.java
r25695 r25696 15 15 16 16 public DeleteChosenRelationAction( ChosenRelation rel ) { 17 super(tr("Delete the chosenrelation"));17 super(tr("Delete relation")); 18 18 putValue(SMALL_ICON, ImageProvider.get("dialogs", "delete")); 19 19 this.rel = rel;
Note:
See TracChangeset
for help on using the changeset viewer.