Releases: Greazi-Times/Discord_Bot_Foundation
v0.20.0
v0.19.1
v0.19.0
This release brings 2 small updates.
As well as an updated JDA version to the latest stable version see JDA documentation for changes.
SimpleSettings allows you to retrieve a List with getStringList(path)
this will return a list of string.
Common will now have a method called dm(User, String)
and dm(User, SimpleEmbedBuilder)
to send a dm to a sepcific user
Features
v0.18.0
This release brings MAJOR changes on how to execute commands, buttons, and modals in its code. previous it would be execute(...)
it has now been renamed to either onCommand(...)
, onButtonInteract(...)
, or onMadelInteract(...)
depending on the thing you are trying to build.
There have been also added default getMember()
and getUser()
methods to have a more universal way of getting the member and user from the event. We suggest using this.getMember()
or this.getUser()
to make sure you retrieve the right member/user.
Bug Fixes
- defaultCommands: Fixed these commands with new system (2623e26)
Features
- Renamed execute(...) (93a6923)