Skip to content

Releases: botblock/JavaBotBlockAPI

Patch 2: Another fix (maybe)

02 Oct 16:50
Compare
Choose a tag to compare

The issue wasn't fixed in patch 1.

Patch 1: Fixed build error

02 Oct 16:47
Compare
Choose a tag to compare

Forgot to update a @link tag in Javadoc which made the build fail.

There are no other changes and the version is still 6.2.0 (Wasn't published to bintray)

v6.2.0: Added checks

02 Oct 16:36
03b5143
Compare
Choose a tag to compare

The different methods of JavaBotBlockAPI may now throw Exceptions depending on conditions.
Please refer to the Javadocs for info on that.

  • Updated Dependencies:
    • JDA: 4.2.0_204 to 4.2.0_207
    • Javacord: 3.0.7 to 3.1.1

v6.1.0: Javacord support

21 Sep 19:36
Compare
Choose a tag to compare

This release adds a Javacord module, allowing easy posting of Guild count using Javacord.

Gradle

repositories{
    maven{ url = 'https://dl.bintray.com/andre601/maven' }
}

dependencies{
    // Core Module. Always needed
    compile group: 'org.botblock', name: 'javabotblockapi-core', version: '{version}'

    // Request Module. Depends on Core
    compile group: 'org.botblock', name: 'javabotblockapi-request', version: '{version}'
    
    // Javacord Module. Depends on Core and Request
    compile group: 'org.botblock', name: 'javabotblockapi-javacord', version: '{version}'
}

Maven

<repositories>
  <repository>
    <id>jcenter</id>
    <url>https://dl.bintray.com/andre601/maven</url>
  </repository>
</repositories>

<dependencies>
  <!-- Core Module. Always needed -->
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>javabotblockapi-core</artifactId>
    <version>{version}</version>
  </dependency>

  <!-- Request Module. Depends on Core -->
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>javabotblockapi-request</artifactId>
    <version>{version}</version>
  </dependency>

  <!-- Javacord Module. Depends on Core on Request -->
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>javabotblockapi-javacord</artifactId>
    <version>{version}</version>
  </dependency>
</dependencies>

v6.0.2 (Re-release 2)

15 Aug 19:28
Compare
Choose a tag to compare

Still not fixed... Hopefully now!

6.0.4 (Re-release)

15 Aug 19:25
Compare
Choose a tag to compare

Re-release to fix GitHub Actions failing

v6.0.4: Added BLIST_XYZ

15 Aug 19:20
Compare
Choose a tag to compare
  • Site updated:

v6.0.3: Fixed GitHub Actions

13 Aug 21:49
45f5fcd
Compare
Choose a tag to compare

Fixed GitHub Actions... hopefully.

v6.0.2: Renamed BOTS_DISCORDBOTLABS_ORG

13 Aug 21:39
Compare
Choose a tag to compare
  • Site updated
    • BOTS_DISCORDBOTLABS_ORG -> BOTS_DISCORDLABS_ORG

v6.0.1: Added TOPCORD_XYZ and BOTS_DISCORDLABS_ORG

13 Aug 21:25
Compare
Choose a tag to compare