Skip to content

Releases: svdgoor/StrInput

v1.2 - Discord example usable

10 Dec 11:38
Compare
Choose a tag to compare

Reworked Discord example to be able to use it externally.
In your main bot class, construct a DiscordCenter and provide a directory for settings (you can also give more parameter and context parsers).
You should not use the DiscordBot class for anything other than an example.

v1.1 - Documentation

09 Dec 19:52
a527d64
Compare
Choose a tag to compare

The javadocs are now available here and will be from here on out.
There is also a setup guide available under the readme.

Full Changelog: v0.2.1...1.1

v1.0

09 Dec 18:13
Compare
Choose a tag to compare

Release with jitpack support

StrInput is now ready to be used. Though lacking some features, its main flow is working.
Examples for both Discord and Spigot are present in the examples module.

Setting up StrInput

Make sure to replace VERSION with the latest version:

For the latest (potentially unstable) available builds replace VERSION with main-SNAPSHOT.

Gradle

repositories {
    maven { url "https://jitpack.io" }
    mavenCentral()
}

dependencies {
    implementation 'com.github.CocoTheOwner:StrInput:VERSION'
}

Maven

<dependency>
    <groupId>com.github.CocoTheOwner</groupId>
    <artifactId>StrInput</artifactId>
    <version>VERSION</version>
</dependency>

To-do list

  • Implement help messages
  • Add prepared Discord category, guild and permission handlers
  • Add suggestions (auto-completions)
  • Add Spigot colours + colour gradients
  • Add Discord & Spigot on-click implementation
  • Add Discord & Spigot on-hover implementation
  • Expand range of testcases for:
    • Individual parameter & context handlers
    • Discord & Spigot user and Center implementations
  • Style and documentation on Discord examples
  • Parameter performance improvements (it's fast enough, but can be faster)

Full Changelog: v0.2.1...1.0

v0.2.1

09 Dec 15:22
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release

Maven package release

v0.1 - JavaDocs and maven

09 Dec 15:02
Compare
Choose a tag to compare
Pre-release

No elements of the to-do list of release v0.1 have been complete.

Full Changelog: v0.1...v0.2

JavaDocs can now be generated and hopefully Jitpack will be able to make my repo accessible externally.

v0.1 - First Release!

09 Dec 11:05
Compare
Choose a tag to compare
v0.1 - First Release! Pre-release
Pre-release

Full Changelog: https://github.com/CocoTheOwner/Strinput/commits/v0.1

To-do list

  • Implement help messages
  • Add prepared Discord category, guild and permission handlers
  • Add suggestions (auto-completions)
  • Add Spigot colours + colour gradients
  • Add Discord & Spigot on-click implementation
  • Add Discord & Spigot on-hover implementation
  • Expand range of testcases for:
    • Individual parameter & context handlers
    • Discord & Spigot user and Center implementations
  • Style and documentation on Discord examples
  • Parameter performance improvements (it's fast enough, but can be faster)