Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Chris Smith 91af20ba6e Merge pull request #506 from ShaneMcC/master vor 7 Jahren
audio Extend BaseCommand not Command. vor 7 Jahren
awaycolours Migrate to new @GlobalConfig annotation. vor 7 Jahren
calc Extend BaseCommand not Command. vor 7 Jahren
channelwho Migrate to new @GlobalConfig annotation. vor 7 Jahren
conditional_execute Extend BaseCommand not Command. vor 7 Jahren
contactlist Extend BaseCommand not Command. vor 7 Jahren
dcc Extend BaseCommand not Command. vor 7 Jahren
debug Extend BaseCommand not Command. vor 7 Jahren
dns Extend BaseCommand not Command. vor 7 Jahren
etc/pmd Enable PMD for plugins. vor 9 Jahren
exec Extend BaseCommand not Command. vor 7 Jahren
freedesktop_notifications Extend BaseCommand not Command. vor 7 Jahren
gradle Update gradle to 3.1. vor 7 Jahren
identd Migrate to new @GlobalConfig annotation. vor 7 Jahren
jpq Use EventBus interface. vor 7 Jahren
lagdisplay Migrate to new @GlobalConfig annotation. vor 7 Jahren
logging Extend BaseCommand not Command. vor 7 Jahren
mediasource_dbus Restructure to standard maven/gradle layout. vor 8 Jahren
mediasource_linux_title Restructure to standard maven/gradle layout. vor 8 Jahren
mediasource_mplayer Restructure to standard maven/gradle layout. vor 8 Jahren
mediasource_vlc Restructure to standard maven/gradle layout. vor 8 Jahren
mediasource_windows Restructure to standard maven/gradle layout. vor 8 Jahren
nickcolours Minor style fixes vor 7 Jahren
nickkeep Use EventBus interface. vor 7 Jahren
nma Extend BaseCommand not Command. vor 7 Jahren
notifications Extend BaseCommand not Command. vor 7 Jahren
nowplaying Extend BaseCommand not Command. vor 7 Jahren
osd Make the OSD plugin work again. vor 7 Jahren
osx_integration Extend BaseCommand not Command. vor 7 Jahren
parser_irc Version bump for parser plugin vor 7 Jahren
parser_xmpp Restructure to standard maven/gradle layout. vor 8 Jahren
parserdebug Extend BaseCommand not Command. vor 7 Jahren
qauth Migrate to new @GlobalConfig annotation. vor 7 Jahren
redirect Extend BaseCommand not Command. vor 7 Jahren
scriptplugin Extend BaseCommand not Command. vor 7 Jahren
sessionlock Restructure to standard maven/gradle layout. vor 8 Jahren
systray Extend BaseCommand not Command. vor 7 Jahren
tabcompletion_bash Use List<String> not TabCompletionResults vor 7 Jahren
tabcompletion_mirc Use List<String> not TabCompletionResults vor 7 Jahren
time Extend BaseCommand not Command. vor 7 Jahren
ui_swing Use the right default FG colour in the treeview. vor 7 Jahren
ui_web2 Migrate to new @GlobalConfig annotation. vor 7 Jahren
whoisonquery Use EventBus interface. vor 7 Jahren
windowflashing Extend BaseCommand not Command. vor 7 Jahren
windowstatus Use new core class for static styliser methods vor 7 Jahren
.gitignore Restructure to standard maven/gradle layout. vor 8 Jahren
.gitreview Add .gitreview config. vor 9 Jahren
AUTHORS Fix LICENCE file name and add AUTHORS file. vor 10 Jahren
LICENCE 2015! vor 9 Jahren
README.md Add a 'provided' scope. vor 8 Jahren
build-configutils.xml Apparently some OSes use different line endings - who knew? vor 12 Jahren
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins vor 13 Jahren
build.gradle Rename custom jar and test tasks in plugins. vor 7 Jahren
build.xml Collect plugin jars in dist folder, like before. vor 9 Jahren
circle.yml Rename custom jar and test tasks in plugins. vor 7 Jahren
gradlew Update gradle to 3.1. vor 7 Jahren
gradlew.bat Update gradle to 3.1. vor 7 Jahren
settings.gradle Actually include plugins again. vor 8 Jahren

README.md

DMDirc plugins

This repository contains plugins for DMDirc, a Java IRC client.

Development information

Gradle configurations

We have two custom configurations for use when defining plugin dependencies:

The bundle configuration allows dependencies to be bundled together into the plugin’s jar file. This should be used for dependencies required at runtime that are not included in the main DMDirc client, or accessed via other plugins. Most of a plugin’s dependencies should end up in the bundle configuration.

The provided configuration works like the Maven ‘provided’ scope. It defines dependencies required to compile and run the plugin that will be provided to it somehow externally. Anything in the provided configuration (including transitive dependencies) will not be bundled into the plugin jar. The provided configuration is used for the main DMDirc client, and should be used for any intra-plugin dependencies.