Changeset 34603 in osm for applications


Ignore:
Timestamp:
2018-08-27T13:22:36+02:00 (6 years ago)
Author:
donvip
Message:

see #josm16682 - include JavaFX media player

Location:
applications/editors/josm/plugins/openjfx
Files:
4 added
2 edited

Legend:

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

    r34602 r34603  
    44    <property name="commit.message" value="Commit message"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="14153"/>
     6    <property name="plugin.main.version" value="14183"/>
    77
    88        <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/openjfx/src/org/openstreetmap/josm/plugins/openjfx/OpenJfxPlugin.java

    r34602 r34603  
    22package org.openstreetmap.josm.plugins.openjfx;
    33
     4import org.openstreetmap.josm.io.audio.AudioPlayer;
    45import org.openstreetmap.josm.plugins.Plugin;
    56import org.openstreetmap.josm.plugins.PluginInformation;
     7import org.openstreetmap.josm.plugins.openjfx.io.audio.JavaFxMediaPlayer;
    68
    79/**
     
    1618    public OpenJfxPlugin(PluginInformation info) {
    1719        super(info);
     20        AudioPlayer.setSoundPlayerClass(JavaFxMediaPlayer.class);
    1821    }
    1922}
Note: See TracChangeset for help on using the changeset viewer.