Ignore:
Timestamp:
2013-08-21T03:47:16+02:00 (12 years ago)
Author:
donvip
Message:

[josm_plugins] fix #8987 - bump min JOSM version of nearly all plugins to r6162 + code update/cleanup, fix warnings

Location:
applications/editors/josm/plugins/livegps
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified applications/editors/josm/plugins/livegps/build.xml

    r29771 r29854  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** This is the build file for the livegps plugin
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** see README.template
    8 **
    9 ** Usage
    10 ** =====
    11 ** To build it run
    12 **
    13 **    > ant  dist
    14 **
    15 ** To install the generated plugin locally (in your default plugin directory) run
    16 **
    17 **    > ant  install
    18 **
    19 ** To build against the core in ../../core, create a correct manifest and deploy to
    20 ** SVN,
    21 **    set the properties commit.message and plugin.main.version
    22 ** and run
    23 **    > ant  publish
    24 **
    25 **
    26 -->
    272<project name="livegps" default="dist" basedir=".">
    283    <property name="commit.message" value="Changed the constructor signature of the plugin main class"/>
    29     <property name="plugin.main.version" value="6082"/>
     4    <property name="plugin.main.version" value="6162"/>
    305    <!--
    316      ************************************************
     
    3611    <property name="plugin.build.dir" value="build"/>
    3712    <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
    38     <property name="ant.build.javac.target" value="1.5"/>
     13    <property name="ant.build.javac.target" value="1.6"/>
    3914    <target name="init">
    4015        <mkdir dir="${plugin.build.dir}"/>
  • TabularUnified applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java

    r29778 r29854  
    11package livegps;
    22
    3 import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
    4 import static org.openstreetmap.josm.tools.I18n.marktr;
    53import static org.openstreetmap.josm.tools.I18n.tr;
    64
     
    1311import javax.swing.JCheckBoxMenuItem;
    1412import javax.swing.JMenu;
    15 import javax.swing.JMenuItem;
    1613
    1714import org.openstreetmap.josm.Main;
Note: See TracChangeset for help on using the changeset viewer.