Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Greg Holmes 33b512da3d Fix issue dialog. il y a 7 ans
audio Extend BaseCommand not Command. il y a 7 ans
awaycolours Migrate to new @GlobalConfig annotation. il y a 7 ans
calc Extend BaseCommand not Command. il y a 7 ans
channelwho Migrate to new @GlobalConfig annotation. il y a 7 ans
conditional_execute Extend BaseCommand not Command. il y a 7 ans
contactlist Extend BaseCommand not Command. il y a 7 ans
dcc Extend BaseCommand not Command. il y a 7 ans
debug Extend BaseCommand not Command. il y a 7 ans
dns Extend BaseCommand not Command. il y a 7 ans
etc/pmd Enable PMD for plugins. il y a 9 ans
exec Extend BaseCommand not Command. il y a 7 ans
freedesktop_notifications Extend BaseCommand not Command. il y a 7 ans
gradle Update gradle to 3.1. il y a 7 ans
identd Migrate to new @GlobalConfig annotation. il y a 7 ans
jpq Use EventBus interface. il y a 7 ans
lagdisplay Migrate to new @GlobalConfig annotation. il y a 7 ans
logging Extend BaseCommand not Command. il y a 7 ans
mediasource_dbus Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_linux_title Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_mplayer Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_vlc Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_windows Restructure to standard maven/gradle layout. il y a 8 ans
nickcolours Fix several nick colour plugin issues. il y a 7 ans
nickkeep Use EventBus interface. il y a 7 ans
nma Extend BaseCommand not Command. il y a 7 ans
notifications Extend BaseCommand not Command. il y a 7 ans
nowplaying Extend BaseCommand not Command. il y a 7 ans
osd Make the OSD plugin work again. il y a 7 ans
osx_integration Extend BaseCommand not Command. il y a 7 ans
parser_irc Version bump for parser plugin il y a 7 ans
parser_xmpp Restructure to standard maven/gradle layout. il y a 8 ans
parserdebug Extend BaseCommand not Command. il y a 7 ans
qauth Migrate to new @GlobalConfig annotation. il y a 7 ans
redirect Extend BaseCommand not Command. il y a 7 ans
scriptplugin Extend BaseCommand not Command. il y a 7 ans
sessionlock Restructure to standard maven/gradle layout. il y a 8 ans
systray Extend BaseCommand not Command. il y a 7 ans
tabcompletion_bash Use List<String> not TabCompletionResults il y a 7 ans
tabcompletion_mirc Use List<String> not TabCompletionResults il y a 7 ans
time Extend BaseCommand not Command. il y a 7 ans
ui_swing Fix issue dialog. il y a 7 ans
ui_web2 Migrate to new @GlobalConfig annotation. il y a 7 ans
whoisonquery Use EventBus interface. il y a 7 ans
windowflashing Extend BaseCommand not Command. il y a 7 ans
windowstatus Use new core class for static styliser methods il y a 7 ans
.gitignore Restructure to standard maven/gradle layout. il y a 8 ans
.gitreview Add .gitreview config. il y a 9 ans
AUTHORS Fix LICENCE file name and add AUTHORS file. il y a 10 ans
LICENCE 2015! il y a 9 ans
README.md Add a 'provided' scope. il y a 8 ans
build-configutils.xml Apparently some OSes use different line endings - who knew? il y a 12 ans
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins il y a 13 ans
build.gradle Rename custom jar and test tasks in plugins. il y a 7 ans
build.xml Collect plugin jars in dist folder, like before. il y a 9 ans
circle.yml Rename custom jar and test tasks in plugins. il y a 7 ans
gradlew Update gradle to 3.1. il y a 7 ans
gradlew.bat Update gradle to 3.1. il y a 7 ans
settings.gradle Actually include plugins again. il y a 8 ans

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.