- Updated dependencies
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>- Migrated deployment to Sonatype Maven Central Portal #155
- Updated dependencies
- 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
- Updated dependencies
Initial release