Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Greg Holmes 73dab2a0c5 Merge pull request #8 from csmith/replace-dependencies před 9 roky
client @ 1934e86d9f Unignore the submodules. před 9 roky
etc/gerrit Update Gerrit commit hook. před 9 roky
gradle/wrapper Add gradle wrapper. před 9 roky
parser @ 830e54a9f7 Unignore the submodules. před 9 roky
plugins @ ee75f5ab8f Unignore the submodules. před 9 roky
util @ 397bc5d06b Unignore the submodules. před 9 roky
.gitignore Unignore the submodules. před 9 roky
.gitmodules Add other repos as submodules. před 9 roky
AUTHORS Initial import před 9 roky
LICENCE Initial import před 9 roky
README.md Start work on a README. před 9 roky
build.gradle Add a script to magically change dependencies. před 9 roky
gradlew Add gradle wrapper. před 9 roky
gradlew.bat Add gradle wrapper. před 9 roky
local-dependency-change.gradle Add a script to magically change dependencies. před 9 roky
settings.gradle Include submodules in gradle. před 9 roky

README.md

DMDirc

DMDirc is an IRC client written in Java. It’s cross-platform, hugely configurable, and is easily extensible with a robust plugins system.

This repository doesn’t actually contain the source for DMDirc. Instead it’s split over four different components, each with their own repository:

  • client: contains the main guts of the client
  • parser: an interface for parsers and a full IRC parser
  • plugins: official plugins, including the main UI
  • util: general purpose utility classes not directly related to IRC

Each of the repositories can be worked on and built independently of all the others (and we’ve paid particular care to make sure the parser and util projects can be dropped in to other applications with the minimum of fuss). If you actually want to develop the client, though, it’s a lot easier if they’re all together — that’s what this repository is for! Each of the components mentioned above is included as a submodule, and there are some handy top-level build scripts for bundling everything together.

Getting Started

First off, clone this repository and init the submodules:

git clone https://github.com/DMDirc/Meta.git
cd Meta
git submodule update --init --remote

You can then use the provided gradle wrapper to start a build, or run all the tests in the project:

./gradlew jar
./gradlew test

[Currently the gradle scripts do not generate a functioning client… we’re working on that still!]