Skip to content

Latest commit

 

History

History
69 lines (61 loc) · 1.85 KB

File metadata and controls

69 lines (61 loc) · 1.85 KB

2.0.1

  • Updated dependencies

2.0.0

This release contains breaking changes

  • Redesigned the project to make it easier to implement custom music sources / players
  • Added support for Spotify #41 @aboullaite

New configuration format in pom.xml:

Old:

<configuration>
    <sources>
        <musicSource>
            <uri>https://incompetech.com/music/royalty-free/mp3-royaltyfree/Corncob.mp3</uri>
        </musicSource>
        <musicSource>
            <file>my_cool_music.mp3</file>
        </musicSource>
        <musicSource>
            <classpath>/default/Andrew_Codeman_-_03_-_Mussels_short_version.ogg</classpath>
        </musicSource>
    </sources>
    <shuffle>true</shuffle>
</configuration>

New:

<configuration>
    <sources>
        <source>
            <uri>
                <uri>https://incompetech.com/music/royalty-free/mp3-royaltyfree/Corncob.mp3</uri>
            </uri>
        </source>
        <source>
            <file>
                <file>my_cool_music.mp3</file>
            </file>
        </source>
        <source>
            <classpath>
                <classpath>/default/Andrew_Codeman_-_03_-_Mussels_short_version.ogg</classpath>
            </classpath>
        </source>
        <source>
            <spotify>
                <uri>spotify:track:4cOdK2wGLETKBW3PvgPWqT</uri>
            </spotify>
        </source>
    </sources>
</configuration>

1.0.3

  • Migrated deployment to Sonatype Maven Central Portal #155
  • Updated dependencies

1.0.2

  • Added a property which allows disabling the plugin #11 @runeflobakk

    enables the troller to subtly disable accidentally blasting the music in the office space while waiting for the trollees to be trolled, while avoiding being self-trolled

1.0.1

  • Updated dependencies

1.0.0

Initial release