Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Chris Smith 1809a172e3 Start work on a README. 9 лет назад
client @ 1934e86d9f Unignore the submodules. 9 лет назад
etc/gerrit Update Gerrit commit hook. 9 лет назад
gradle/wrapper Add gradle wrapper. 9 лет назад
parser @ 830e54a9f7 Unignore the submodules. 9 лет назад
plugins @ ee75f5ab8f Unignore the submodules. 9 лет назад
util @ 397bc5d06b Unignore the submodules. 9 лет назад
.gitignore Unignore the submodules. 9 лет назад
.gitmodules Add other repos as submodules. 9 лет назад
AUTHORS Initial import 9 лет назад
LICENCE Initial import 9 лет назад
README.md Start work on a README. 9 лет назад
build.gradle Add task to install gerrit commit-msg hook. 9 лет назад
gradlew Add gradle wrapper. 9 лет назад
gradlew.bat Add gradle wrapper. 9 лет назад

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!]