Changeset 25696 in osm for applications


Ignore:
Timestamp:
2011-03-24T21:30:57+01:00 (13 years ago)
Author:
zverik
Message:

Final preparations to releasing beta version of RelToolbox plugin

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 simultaneously
    2 - Draw icons for multipoly settings menu
    3 
    41== BETA ==
    52
     3- Draw icons for multipoly settings menu
    64- Analyze chosen relation and display corresponding symbol next to its name
    75- Make chosen relation name pretty
     
    1210- Option to create separate multipolygon for every outer ring
    1311- Solve multipolygon settings button width problem
     12- Solve width problem for narrows buttons when "fix" and "download" appear simultaneously
    1413
    1514== RELEASE ==
  • applications/editors/josm/plugins/relcontext/build.xml

    r25692 r25696  
    4444    <property name="plugin.src.dir"         value="src"/>
    4545    <!-- 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"/-->
    4748    <property name="ant.build.javac.target" value="1.5"/>
    4849    <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
     
    105106                <attribute name="ru_Plugin-Description" value="Панель создания и редактирования отношений, особенно мультиполигонов."/>
    106107                <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"/>
    108109                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    109110                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
     111                <attribute name="Plugin-Stage" value="10"/>
    110112            </manifest>
    111113        </jar>
  • applications/editors/josm/plugins/relcontext/src/relcontext/actions/DeleteChosenRelationAction.java

    r25695 r25696  
    1515
    1616    public DeleteChosenRelationAction( ChosenRelation rel ) {
    17         super(tr("Delete the chosen relation"));
     17        super(tr("Delete relation"));
    1818        putValue(SMALL_ICON, ImageProvider.get("dialogs", "delete"));
    1919        this.rel = rel;
Note: See TracChangeset for help on using the changeset viewer.