Skip to content

Release v1.3.0

Choose a tag to compare

@sya-ri sya-ri released this 17 Dec 02:55
· 8 commits to master since this release
a103e8e

Full Changelog: 1.2.0...1.3.0


Compatible with CommandAPI v11.1.0

Changes

  • Support CommandAPI v11.1.0 features and add multi-platform support.
  • Bump dependencies.
  • Add multi-platform supports.

Multi-Platform Support

Added support for additional platforms:

  • Paper - Paper-specific arguments
  • Spigot - Spigot-specific arguments
  • Velocity - Velocity proxy support

You can now use platform-specific implementations by changing the dependency artifact:

  • commandapi-bukkit-kotlin-improved - Bukkit platform
  • commandapi-spigot-kotlin-improved - Spigot platform
  • commandapi-paper-kotlin-improved - Paper platform
  • commandapi-velocity-kotlin-improved - Velocity platform

Installation

repositories {
    mavenCentral()
}

dependencies {
    // Choose your platform
    implementation("dev.jorel:commandapi-{platform}-core:11.1.0")
    implementation("dev.s7a:commandapi-{platform}-kotlin-improved:1.3.0")
}

Supported platforms: bukkit, spigot, paper, velocity