Releases: botblock/JavaBotBlockAPI
Releases · botblock/JavaBotBlockAPI
Patch 2: Another fix (maybe)
The issue wasn't fixed in patch 1.
Patch 1: Fixed build error
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
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_204to4.2.0_207
- Javacord: 3.0.7to3.1.1
 
- JDA: 
v6.1.0: Javacord support
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)
Still not fixed... Hopefully now!
6.0.4 (Re-release)
Re-release to fix GitHub Actions failing
v6.0.4: Added BLIST_XYZ
- Site updated:
- Added BLIST_XYZ
- Removed SPACE_BOT_LIST_ORG
 
v6.0.3: Fixed GitHub Actions
Fixed GitHub Actions... hopefully.
v6.0.2: Renamed BOTS_DISCORDBOTLABS_ORG
- Site updated
- BOTS_DISCORDBOTLABS_ORG -> BOTS_DISCORDLABS_ORG
 
v6.0.1: Added TOPCORD_XYZ and BOTS_DISCORDLABS_ORG
- Site updated:
- Added TOPCORD_XYZ
- Added BOTS_DISCORDBOTLABS_ORG
 
- Dependencies updated:
- JDA: 4.2.0_187to4.2.0_189
 
- JDA: