Releases: 2008Choco/Networking
Releases · 2008Choco/Networking
0.0.2
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
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 intonetworking-fabric
instead of listed as a transitive dependency