Skip to content

plugin-utilities v1.0.0-beta.2

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 06 Jan 16:39
· 7 commits to main since this release

A new version of plugin-utilities is ready. Grab your own via JitPack:

Maven

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.github.CosimoTiger</groupId>
  <artifactId>plugin-utilities</artifactId>
  <version>1.0.0-beta.2</version>
</dependency>

Gradle

dependencyResolutionManagement {
  repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
  }
}

dependencies {
  implementation 'com.github.CosimoTiger:plugin-utilities:1.0.0-beta.2'
}

Changelog

What's Changed

🛠 Breaking changes

  • New menu utilities, simplified and generalized menu API by @CosimoTiger in #26

🎉 New features

  • feat(menus): MenuManager singleton for new AbstractMenu open methods by @CosimoTiger in #21
  • Cooldowns: add missing docs, implement min-zero time difference, improve tests by @CosimoTiger in #30

✨ Miscellaneous

Full Changelog: 1.0.0-alpha.2...1.0.0-beta.2