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 e6174a131e Codacy badge vor 5 Jahren
gradle/wrapper Upgrade to Gradle 5.1.1, fix new deprecations vor 5 Jahren
src Fix bad import in tests vor 5 Jahren
.gitignore Make gradlew executable vor 5 Jahren
.travis.yml Add travis config vor 5 Jahren
CHANGELOG 0.2.0 vor 5 Jahren
LICENCE Licence vor 5 Jahren
README.md Codacy badge vor 5 Jahren
build.gradle.kts 0.2.0 vor 5 Jahren
gradlew Make gradlew executable vor 5 Jahren
gradlew.bat Initial import, various supporting classes. vor 5 Jahren

README.md

KtIrc

Build Status Codacy Badge Download

KtIrc is a Kotlin JVM library for connecting to and interacting with IRC servers. It is still in an early stage of development.

Setup

KtIrc is published to JCenter, so adding it to a gradle build is as simple as:

repositories {
    jcenter()
}

dependencies {
    implementation("com.dmdirc:ktirc:<VERSION>")
}

Usage

The main interface for interacting with KtIrc is the IrcClientImpl class. A simple bot might look like:

val client = IrcClientImpl(Server("my.server.com", 6667), Profile("nick", "realName", "userName"))
client.onEvent { event ->
    when (event) {
        is ServerWelcome ->
            client.send(joinMessage("#ktirc"))
        is MessageReceived ->
            if (event.message == "!test")
                client.send(privmsgMessage(event.target, "Test successful!"))
    }
}
client.connect()

Contributing

Contributing is welcomed and encouraged! Please try to add unit tests for new features, and maintain a code style consistent with the existing code.

Licence

The code in this repository is released under the MIT licence. See the LICENCE file for more info.