Skip to content

Releases: 2008Choco/Networking

0.0.2

18 Feb 15:04
a28affa
Compare
Choose a tag to compare

Changes

  • Lazily fetch Class and Registry constants from BukkitProtocolConfiguration, better supporting legacy versions

Dependency Information

Maven

<repositories>
    <repository>
        <id>choco-repo</id>
        <url>http://repo.choco.wtf/releases</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>wtf.choco</groupId>
        <artifactId>networking-{PLATFORM}</artifactId>
        <version>0.0.2</version>
    </dependency>
</dependencies>

Gradle (Groovy):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation 'wtf.choco:networking-{PLATFORM}:0.0.2'
}

Gradle (Kotlin DSL):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation("wtf.choco:networking-{PLATFORM}:0.0.2")
}

v0.0.1

11 Feb 17:43
55d5499
Compare
Choose a tag to compare

This is the initial release of the Networking library! See the wiki for information on how to use it!

Dependency Information

Maven

<repositories>
    <repository>
        <id>choco-repo</id>
        <url>http://repo.choco.wtf/releases</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>wtf.choco</groupId>
        <artifactId>networking-{PLATFORM}</artifactId>
        <version>0.0.1</version>
    </dependency>
</dependencies>

Gradle (Groovy):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation 'wtf.choco:networking-{PLATFORM}:0.0.1'
}

Gradle (Kotlin DSL):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation("wtf.choco:networking-{PLATFORM}:0.0.1")
}

Hotfixes

  • Minimum version of Fabric is now Minecraft 1.18
  • networking-common is now directly shaded into networking-fabric instead of listed as a transitive dependency