Skip to content

v1.3.0 Update!

Compare
Choose a tag to compare
@vLuckyyy vLuckyyy released this 11 Jun 10:26
· 78 commits to master since this release
c77ef49

Enhancements

  • Added option to send multiple messages via tellraw command. (by tellraw-queue)
  • Updated all dependencies.

Bug Fixes

  • Fixed 1.20.6 support for the GUI's.
  • Fixed incompatibility with LibertyBans (and possibly other plugins)
  • Fixed ChatResrtictEvent synchronization issues.
  • Fixed some other minor issues

👨‍🏭 Developer API

To use EternalCore API, you first need to add EternalCode to your project. To do that follow these steps:
You can check the latest release number here.

  1. Add repository:

For Gradle projects use:

maven("https://repo.eternalcode.pl/releases")

For Maven projects use:

<repository>
    <id>eternalcode-reposilite-releases</id>
    <url>https://repo.eternalcode.pl/releases</url>
</repository>
  1. Add dependency:

For Gradle projects use:

compileOnly("com.eternalcode:eternalcore-api:1.3.0")

For Maven projects use:

<dependency>
    <groupId>com.eternalcode</groupId>
    <artifactId>eternalcore-api</artifactId>
    <version>1.3.0</version>
    <scope>provided</scope>
</dependency>